body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'Raleway', sans-serif;
  font-size: 3.8rem;
}
.display-1 > .mbr-iconfont {
  font-size: 6.08rem;
}
.display-2 {
  font-family: 'Raleway', sans-serif;
  font-size: 3rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
  font-weight: 400;
}
.display-5 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.9rem;
}
.display-5 > .mbr-iconfont {
  font-size: 3.04rem;
}
.display-7 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.4rem;
}
.display-7 > .mbr-iconfont {
  font-size: 2.24rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ff8a73 !important;
}
.bg-success {
  background-color: #5580ff !important;
}
.bg-info {
  background-color: #ffbe9d !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff8a73 !important;
  border-color: #ff8a73 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #ff4a26 !important;
  border-color: #ff4a26 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ff4a26 !important;
  border-color: #ff4a26 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff8a73 !important;
  border-color: #ff8a73 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff4a26 !important;
  border-color: #ff4a26 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff4a26 !important;
  border-color: #ff4a26 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffbe9d !important;
  border-color: #ffbe9d !important;
  color: #9d3500 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #9d3500 !important;
  background-color: #ff8b51 !important;
  border-color: #ff8b51 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #9d3500 !important;
  background-color: #ff8b51 !important;
  border-color: #ff8b51 !important;
}
.btn-success,
.btn-success:active {
  background-color: #5580ff !important;
  border-color: #5580ff !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0847ff !important;
  border-color: #0847ff !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0847ff !important;
  border-color: #0847ff !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #ff350d;
  color: #ff350d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #ff8a73;
  border-color: #ff8a73;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff8a73 !important;
  border-color: #ff8a73 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #ff350d;
  color: #ff350d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff8a73;
  border-color: #ff8a73;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff8a73 !important;
  border-color: #ff8a73 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #ff7a37;
  color: #ff7a37;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #9d3500;
  background-color: #ffbe9d;
  border-color: #ffbe9d;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #9d3500 !important;
  background-color: #ffbe9d !important;
  border-color: #ffbe9d !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #003cee;
  color: #003cee;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #5580ff;
  border-color: #5580ff;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #5580ff !important;
  border-color: #5580ff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ff8a73 !important;
}
.text-secondary {
  color: #ff8a73 !important;
}
.text-success {
  color: #5580ff !important;
}
.text-info {
  color: #ffbe9d !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ff350d !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ff350d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #003cee !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #ff7a37 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffbe9d;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff8a73;
  border-color: #ff8a73;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff8a73;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
  font-weight: 400;
}
blockquote {
  border-color: #ff8a73;
}
.btn-primary {
  margin: 1rem 0.5rem !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 6px 16px 0 #ff8a73 !important;
  -webkit-box-shadow: 0 6px 16px 0 #ff8a73 !important;
  background-color: #ff8a73 !important;
  border-color: #ff8a73 !important;
}
.btn-secondary {
  margin: 1rem 0.5rem !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 6px 15px 0 #ff8a73 !important;
  -webkit-box-shadow: 0 6px 16px 0 #ff8a73 !important;
  background-color: #ff8a73 !important;
  border-color: #ff8a73 !important;
}
.btn-success {
  color: white !important;
  margin: 1rem 0.5rem !important;
}
.btn-success:active {
  color: white !important;
}
.btn-success:hover,
.btn-success:focus {
  color: white !important;
  box-shadow: 0 6px 15px 0 #5580ff !important;
  -webkit-box-shadow: 0 6px 16px 0 #5580ff !important;
  background-color: #5580ff !important;
  border-color: #5580ff !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff8a73;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  background-color: #f5f6ff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff8a73;
  border-bottom-color: #ff8a73;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ff8a73 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff8a73 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ff8a73' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-sqlEjWVvZw {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-image: url("https://lesponne.fr/assets/images/page-accueil/vallee-lesponne.jpg");
}
.cid-sqlEjWVvZw .title_block {
  margin-bottom: 80px;
}
.cid-sqlEjWVvZw .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
@media (max-width: 767px) {
  .cid-sqlEjWVvZw .mbr-section-subtitle {
    font-size: 18px;
  }
}
.cid-sqlEjWVvZw .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sqlEjWVvZw .mbr-section-title {
    margin-top: -11px !important;
  }
}
.cid-sqlEjWVvZw .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-sqlEjWVvZw .image img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sqlEjWVvZw .image img {
    width: 80%;
    height: 80%;
    margin: auto;
  }
}
.cid-sqlEjWVvZw .mbr-text {
  margin-top: 30px;
}
.cid-sqlEjWVvZw .nav-tabs {
  flex-wrap: wrap;
  justify-content: center;
  border: none;
  margin-bottom: 50px;
}
.cid-sqlEjWVvZw .nav-item {
  width: 170px;
  min-height: 20px;
}
.cid-sqlEjWVvZw .nav-item .mbr-iconfont {
  margin: 0;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 34px;
  line-height: 70px;
  text-align: center;
  margin-bottom: 5px;
}
.cid-sqlEjWVvZw .tab1 {
  background-color: #879a9f;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.cid-sqlEjWVvZw .tab2 {
  background-color: #ff8a73;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.cid-sqlEjWVvZw .tab3 {
  background-color: #635a51;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.cid-sqlEjWVvZw .tab4 {
  background-color: #5580ff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.cid-sqlEjWVvZw .tab5 {
  background-color: #6f9e71;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.cid-sqlEjWVvZw .nav-tabs .nav-link {
  padding: 8px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px !important;
  border: none;
  color: #879a9f !important;
}
.cid-sqlEjWVvZw .nav-tabs .nav-item {
  margin: 5px;
}
@media (max-width: 991px) {
  .cid-sqlEjWVvZw .title_block {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .cid-sqlEjWVvZw .nav-item {
    width: 46%;
    min-height: 150px;
  }
  .cid-sqlEjWVvZw .nav-item .mbr-iconfont {
    width: 50px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
    margin-bottom: 20px;
  }
  .cid-sqlEjWVvZw .mbr-text {
    margin-top: 20px;
  }
  .cid-sqlEjWVvZw .nav-tabs .nav-link {
    padding: 25px 10px;
  }
  .cid-sqlEjWVvZw .nav-tabs .nav-item {
    margin: 0 10px 10px 0;
  }
  .cid-sqlEjWVvZw .nav-tabs {
    margin-bottom: 30px;
  }
}
.cid-sqlEjWVvZw P {
  color: #ffffff;
  text-align: center;
}
.cid-sqlEjWVvZw h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 2px;
}
.cid-sqlEjWVvZw h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sqlEjWVvZw h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sqlEjWVvZw .mbr-text,
.cid-sqlEjWVvZw .mbr-section-btn {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sqlEjWVvZw p {
    font-size: 18px;
  }
}
.cid-ucFX68zTIJ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #635a51;
}
.cid-ucFX68zTIJ h3 {
  text-align: center;
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 4px;
  letter-spacing: 2px;
}
.cid-ucFX68zTIJ h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-ucFX68zTIJ h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-ucFX68zTIJ .mbr-section-subtitle {
  color: #ffffff;
  font-weight: 300;
  text-align: center;
}
.cid-ucFX68zTIJ .mbr-content-text {
  color: #ffffff;
}
.cid-ucFX68zTIJ .card {
  word-wrap: break-word;
}
.cid-ucFX68zTIJ .mbr-iconfont {
  font-size: 80px;
  color: #149dcc;
}
.cid-ucFX68zTIJ H3 {
  color: #ffffff;
}
.cid-ucFX68zTIJ H4 {
  color: #b2ccd2;
  font-weight: 500;
}
.cid-ucFX68zTIJ .mbr-section-title {
  color: #ffffff;
}
.cid-ucFX68zTIJ .card-img {
  width: auto;
}
.cid-ucFX68zTIJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucFX68zTIJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucFX68zTIJ H5 {
  color: #b2ccd2;
}
.cid-ssBRt9ehpV {
  padding-top: 100px;
  padding-bottom: 60px;
  background-image: url("https://lesponne.fr/assets/images/page-accueil/carte-lesponne.jpg");
}
.cid-ssBRt9ehpV h2 {
  margin-bottom: 10px;
  color: #ff8a73;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.cid-ssBRt9ehpV .nav-tabs .nav-item.open .nav-link:focus,
.cid-ssBRt9ehpV .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-ssBRt9ehpV .nav-link.active {
  background: #879a9f;
}
.cid-ssBRt9ehpV .nav-link {
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 16px 25px;
  line-height: 1.5;
  border-radius: 0;
  text-align: left;
  margin: 0px;
  font-weight: 700 !important;
  position: relative;
}
.cid-ssBRt9ehpV .nav-link:hover {
  background: #879a9f;
}
.cid-ssBRt9ehpV .nav-link .mbr-iconfont {
  font-weight: 400;
  position: absolute;
  top: 13px;
  right: 20px;
  width: 30px;
  height: 30px;
  background-color: #f2f3f7;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  color: #000000;
  font-size: 18px;
}
.cid-ssBRt9ehpV .nav-link.display-4 {
  font-size: 15px;
}
.cid-ssBRt9ehpV .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #e5e8ef;
  -webkit-box-pack: center;
  justify-content: center;
  border: 0px solid #e5e8ef;
}
.cid-ssBRt9ehpV .nav-tabs .nav-item {
  padding: 0;
  -webkit-box-flex: 1;
  flex: 1 1 100%;
}
.cid-ssBRt9ehpV .nav-tabs .nav-link {
  color: #cccccc;
  font-style: normal;
  font-weight: 500;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border: none;
}
.cid-ssBRt9ehpV .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #ffffff;
}
.cid-ssBRt9ehpV .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
}
.cid-ssBRt9ehpV .widget {
  margin-top: 30px;
  background-color: #4f87fb;
  border-radius: 4px;
}
.cid-ssBRt9ehpV .widget .textwidget .single-service-contact {
  position: relative;
  overflow: hidden;
  line-height: 24px;
  color: #fff;
}
.cid-ssBRt9ehpV .widget .textwidget .single-service-contact .img-wrap {
  margin: 0 0 25px;
}
.cid-ssBRt9ehpV .widget .textwidget .single-service-contact .img-wrap img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 4px;
}
.cid-ssBRt9ehpV .widget .textwidget .single-service-contact-inner {
  text-align: center;
  color: #fff;
  padding: 0 30px 15px;
  position: relative;
}
.cid-ssBRt9ehpV .widget .textwidget .single-service-contact-inner::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-left: 344px solid white;
  border-bottom: 0 solid transparent;
  left: -10px;
  top: -57px;
  -webkit-transform: rotate(-7deg);
  transform: rotate(-7deg);
}
.cid-ssBRt9ehpV .widget .textwidget .single-service-contact-inner::after {
  border-right-color: #4f87fb;
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 73px solid transparent;
  border-right: 382px solid #4f87fb;
  border-bottom: 0 solid transparent;
  left: -9px;
  top: -83px;
  -webkit-transform: rotate(4deg);
  transform: rotate(4deg);
}
.cid-ssBRt9ehpV .widget .textwidget .single-service-contact-inner .iconbox {
  margin-bottom: 30px;
}
.cid-ssBRt9ehpV .widget .textwidget .single-service-contact-inner .iconbox span {
  font-size: 60px;
  line-height: 60px;
}
.cid-ssBRt9ehpV .widget .textwidget .single-service-contact-inner h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
.cid-ssBRt9ehpV .widget .textwidget .single-service-contact-inner h2.display-2 {
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.5px;
}
.cid-ssBRt9ehpV .widget .textwidget .single-service-contact-inner .mbr-text.display-7 {
  font-size: 16px;
  line-height: 24px;
}
.cid-ssBRt9ehpV .widget .textwidget .single-service-contact-inner .mbr-text {
  font-weight: 400;
}
.cid-ssBRt9ehpV .widget .textwidget .single-service-contact-inner .mbr-section-btn {
  margin-bottom: 25px;
}
.cid-ssBRt9ehpV .widget .textwidget .single-service-contact-inner .mbr-section-btn .btn {
  line-height: 24px;
  letter-spacing: 1px;
  font-weight: 700;
  font-style: normal;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 20px;
  border-radius: 2em;
  display: inline-block;
}
.cid-ssBRt9ehpV .widget .textwidget .single-service-contact-inner .mbr-section-btn .btn.display-4 {
  font-size: 12px;
}
.cid-ssBRt9ehpV .widget .textwidget .single-service-contact-inner .mbr-section-btn .btn-white {
  background-color: #fff !important;
  color: #ff8a73 !important;
}
.cid-ssBRt9ehpV .widget .textwidget .single-service-contact-inner .mbr-section-btn .btn-white:hover {
  background-color: #ff8a73 !important;
  color: #fff !important;
  border-color: #ff8a73 !important;
}
.cid-ssBRt9ehpV .tab-pane img {
  display: block;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
  border-radius: 0px;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  margin-bottom: 50px;
}
.cid-ssBRt9ehpV .tab-pane .mbr-section-title {
  color: #ff8a73;
  font-weight: 700;
}
.cid-ssBRt9ehpV .tab-pane .mbr-section-title.display-5 {
  line-height: 36px;
  letter-spacing: -0.5px;
}
.cid-ssBRt9ehpV .tab-pane .mbr-text {
  color: #ffbe9d;
}
.cid-ssBRt9ehpV .tab-pane .mbr-text.display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-ssBRt9ehpV .tab-pane .mbr-text.display-5 {
  line-height: 28px;
}
.cid-ssBRt9ehpV .tab-pane .wrapper {
  border-radius: 0.25rem;
  padding: 1rem;
  background: #007fa4;
}
.cid-ssBRt9ehpV .tab-pane .wrapper .img {
  margin-bottom: 20px;
}
.cid-ssBRt9ehpV .tab-pane .wrapper .img .mbr-iconfont {
  font-size: 50px;
  top: 0;
  color: #ff8a73;
  border-radius: 50%;
}
.cid-ssBRt9ehpV .tab-pane .wrapper .mbr-card-title {
  font-weight: 700;
  padding-bottom: 14px;
  margin-bottom: 10px;
  color: #ff8a73;
}
.cid-ssBRt9ehpV .tab-pane .wrapper .mbr-card-title.display-7 {
  line-height: 28px;
  letter-spacing: -0.5px;
  font-size: 20px;
}
.cid-ssBRt9ehpV .tab-pane .wrapper .mbr-text {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #ffbe9d;
  font-weight: 400;
}
.cid-ssBRt9ehpV .tab-pane .wrapper .mbr-text.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 992px) {
  .cid-ssBRt9ehpV .nav-tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
    border-right: 0px;
    padding-right: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-ssBRt9ehpV .mbr-text,
  .cid-ssBRt9ehpV .nav-link,
  .cid-ssBRt9ehpV .mbr-card-title,
  .cid-ssBRt9ehpV .mbr-section-title {
    text-align: left;
  }
  .cid-ssBRt9ehpV .nav-tabs {
    border-right: 0px;
    padding-right: 0rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-ssBRt9ehpV .single-service-contact-inner .mbr-text {
    text-align: center;
  }
}
.cid-ssBRt9ehpV H2 {
  color: #ffffff;
}
.cid-ssBRt9ehpV .tab-content .tab-pane .mbr-section-title {
  color: #ffffff;
}
.cid-ssBRt9ehpV .tab-content .tab-pane .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-ssBRt9ehpV .tab-pane .wrapper .mbr-card-title,
.cid-ssBRt9ehpV .img {
  color: #ffffff;
}
.cid-ssBRt9ehpV mark {
  border-radius: 6px;
  background-color: #193656;
  color: #fff;
}
.cid-ssBRu4dWMT {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #635a51;
}
.cid-ssBRu4dWMT img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-ssBRu4dWMT H1 {
  color: #ffffff;
}
.cid-ssBRu4dWMT .mbr-text,
.cid-ssBRu4dWMT .mbr-section-btn {
  color: #716c80;
}
.cid-ssBRu4dWMT H3 {
  color: #ffffff;
}
.cid-ssBRu4dWMT .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-ssBRu4dWMT .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-ssBRu4dWMT .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-ssBRu4dWMT .link:hover {
  color: #ff8a73 !important;
}
.cid-ssBRu4dWMT .link:hover .link-ico {
  color: #ff8a73 !important;
  padding-left: 10px;
}
.cid-ssBRu4dWMT DIV {
  color: #57468b;
}
.cid-ssBRu4dWMT .mbr-text,
.cid-ssBRu4dWMT .media-content {
  color: #ffffff;
  text-align: justify;
}
.cid-suSrP66VlV {
  padding-top: 75px;
  padding-bottom: 15px;
  background-image: url("https://www.lesponne.fr/assets/images/page-404/lac-bleu-lesponne.jpg");
}
@media (max-width: 576px) {
  .cid-suSrP66VlV img {
    width: 90%!important;
  }
}
.cid-suSrP66VlV H3 {
  color: #ffffff;
}
.cid-suSrP66VlV .mbr-text,
.cid-suSrP66VlV .mbr-section-btn {
  text-align: center;
}
.cid-suSrP66VlV H2 {
  color: #ffffff;
}
.cid-suSx6ODapm {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #697477;
}
.cid-suSx6ODapm H1 {
  color: #ffffff;
}
.cid-suSx6ODapm .mbr-text,
.cid-suSx6ODapm .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-suSx6ODapm H3 {
  color: #ffffff;
}
.cid-suSx6ODapm .mbr-section-title {
  color: #ffffff;
}
.cid-ssBRuBML03 {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("https://lesponne.fr/assets/images/page-construction/la-lit-lesponne.jpg");
  position: relative;
  overflow: hidden;
}
.cid-ssBRuBML03 svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-ssBRuBML03 #e2_shape {
  fill: #697477 !important;
}
.cid-ssBRuBML03 img {
  width: 80%;
  border-radius: 10px;
  margin: auto;
}
@media (max-width: 576px) {
  .cid-ssBRuBML03 img {
    width: 90%!important;
  }
}
.cid-ssBRuBML03 H3 {
  color: #ffffff;
}
.cid-ssBRuBML03 .mbr-text,
.cid-ssBRuBML03 .mbr-section-btn {
  text-align: center;
}
.cid-ssBRvgEYFN {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #635a51;
}
.cid-ssBRvgEYFN section {
  position: relative;
}
.cid-ssBRvgEYFN .container {
  max-width: 1400px;
}
.cid-ssBRvgEYFN .card-img2 span {
  padding-top: 6px;
}
.cid-ssBRvgEYFN .soc-item a {
  padding-top: 5px;
}
.cid-ssBRvgEYFN .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-ssBRvgEYFN .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-ssBRvgEYFN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ssBRvgEYFN svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-ssBRvgEYFN #e2_shape {
  fill: #697477 !important;
}
.cid-ssBRvgEYFN .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-ssBRvgEYFN .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-ssBRvgEYFN .card-img2 {
  width: 45px;
  height: 45px;
  background: #635a51;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-ssBRvgEYFN .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-ssBRvgEYFN .soc-item span {
  font-size: 1.4rem;
}
.cid-ssBRvgEYFN .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-ssBRvgEYFN .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-ssBRvgEYFN .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-ssBRvgEYFN .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-ssBRvgEYFN .media-wrap {
  margin-bottom: 1rem;
}
.cid-ssBRvgEYFN .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-ssBRvgEYFN img {
  height: 7rem;
}
@media (max-width: 576px) {
  .cid-ssBRvgEYFN .item {
    justify-content: center;
  }
  .cid-ssBRvgEYFN .quote::after {
    left: 60px;
  }
}
.cid-ssBRvgEYFN .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-ssBRvgEYFN .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ssBRvgEYFN .text1 {
  color: #ffffff;
}
.cid-ssBRvgEYFN .item-title {
  color: #ffffff;
}
.cid-ssBRvgEYFN H5 {
  color: #ffffff;
}
.cid-ssBRvgEYFN .theme {
  color: #ffffff;
}
.cid-ssBRvgEYFN .copyright > p {
  color: #ffffff;
}
.cid-ssBRvgEYFN .text2 {
  color: #ffffff;
}
.cid-ssBRvgEYFN hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .5;
}
.cid-snkgvdoGd0 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-snkgvdoGd0 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-snkgvdoGd0 .nav-item:focus,
.cid-snkgvdoGd0 .nav-link:focus {
  outline: none;
}
.cid-snkgvdoGd0 .text-white:hover,
.cid-snkgvdoGd0 .text-white:active,
.cid-snkgvdoGd0 .text-white:focus {
  color: white!important;
}
.cid-snkgvdoGd0 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #879a9f;
  background: none;
}
.cid-snkgvdoGd0 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-snkgvdoGd0 .navbar.opened {
  transition: all .3s;
  background: #879a9f !important;
}
.cid-snkgvdoGd0 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-snkgvdoGd0 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-snkgvdoGd0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snkgvdoGd0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-snkgvdoGd0 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-snkgvdoGd0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snkgvdoGd0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snkgvdoGd0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-snkgvdoGd0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snkgvdoGd0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-snkgvdoGd0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-snkgvdoGd0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snkgvdoGd0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snkgvdoGd0 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-snkgvdoGd0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snkgvdoGd0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snkgvdoGd0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-snkgvdoGd0 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-snkgvdoGd0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snkgvdoGd0 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snkgvdoGd0 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-snkgvdoGd0 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-snkgvdoGd0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-snkgvdoGd0 .navbar.navbar-short {
  background: #879a9f !important;
  min-height: 60px;
}
.cid-snkgvdoGd0 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-snkgvdoGd0 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-snkgvdoGd0 .section {
  position: relative;
  overflow: visible!important;
}
.cid-snkgvdoGd0 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-snkgvdoGd0 .dropdown-item:hover {
  color: black!important;
}
.cid-snkgvdoGd0 .dropdown-menu {
  background-color: white!important;
}
.cid-snkgvdoGd0 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-snkgvdoGd0 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-snkgvdoGd0 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-snkgvdoGd0 .nav-item .nav-link {
    position: relative;
  }
}
.cid-snkgvdoGd0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-snkgvdoGd0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snkgvdoGd0 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-snkgvdoGd0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-snkgvdoGd0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-snkgvdoGd0 .collapsed {
  flex-direction: row!important;
}
.cid-snkgvdoGd0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snkgvdoGd0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snkgvdoGd0 .navbar-caption {
  font-weight: 600!important;
}
.cid-snkgvdoGd0 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snkgvdoGd0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snkgvdoGd0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snkgvdoGd0 .dropdown-item.active,
.cid-snkgvdoGd0 .dropdown-item:active {
  background-color: transparent;
}
.cid-snkgvdoGd0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snkgvdoGd0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snkgvdoGd0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snkgvdoGd0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #879a9f;
}
.cid-snkgvdoGd0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snkgvdoGd0 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-snkgvdoGd0 .navbar-buttons {
  text-align: center;
}
.cid-snkgvdoGd0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-snkgvdoGd0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #879a9f;
}
.cid-snkgvdoGd0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-snkgvdoGd0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-snkgvdoGd0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-snkgvdoGd0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-snkgvdoGd0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-snkgvdoGd0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-snkgvdoGd0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-snkgvdoGd0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-snkgvdoGd0 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-snkgvdoGd0 .nav-link {
  font-weight: 600!important;
}
.cid-snkgvdoGd0 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-snkgvdoGd0 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-snkgvdoGd0 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-snkgvdoGd0 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-snkgvdoGd0 .navbar {
    height: 77px;
  }
  .cid-snkgvdoGd0 .navbar.opened {
    height: auto;
  }
  .cid-snkgvdoGd0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-snkgvek73A {
  padding-top: 9rem;
  padding-bottom: 7rem;
}
.cid-snkgvek73A .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-snkgvek73A .mbr-text,
.cid-snkgvek73A .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-snkgvek73A .mbr-section-title,
  .cid-snkgvek73A .mbr-section-btn,
  .cid-snkgvek73A .mbr-text {
    text-align: center;
  }
}
.cid-snkgvek73A h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-snkgvek73A h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snkgvek73A h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snkgvfRdCv {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #5b686b;
}
.cid-snkgvfRdCv .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-snkgvfRdCv .mbr-text,
.cid-snkgvfRdCv .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-snkgvfRdCv .mbr-section-title,
  .cid-snkgvfRdCv .mbr-section-btn,
  .cid-snkgvfRdCv .mbr-text {
    text-align: center;
  }
}
.cid-snkgvfRdCv h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-snkgvfRdCv h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snkgvfRdCv h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snkgvg9rwp {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #5b686b;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-snkgvg9rwp .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snkgvg9rwp .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-snkgvg9rwp .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-snkgvg9rwp .btn-primary-outline:active {
  color: gray;
}
.cid-snkgvg9rwp .btn-primary-outline:hover {
  color: white;
}
.cid-snkgvg9rwp .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-snkgvg9rwp div {
  overflow: hidden;
}
.cid-snkgvg9rwp li.active .btn-primary-outline {
  color: white;
}
.cid-snkgvg9rwp .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snkgvg9rwp .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snkgvg9rwp .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snkgvg9rwp .mbr-gallery-item {
  overflow: hidden;
}
.cid-snkgvg9rwp .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-snkgvg9rwp .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-snkgvg9rwp .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snkgvg9rwp .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snkgvg9rwp .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-snkgvg9rwp .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snkgvg9rwp .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sQhwEvvkBx {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #5b686b;
}
.cid-sQhwEvvkBx .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sQhwEvvkBx .mbr-text,
.cid-sQhwEvvkBx .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sQhwEvvkBx .mbr-section-title,
  .cid-sQhwEvvkBx .mbr-section-btn,
  .cid-sQhwEvvkBx .mbr-text {
    text-align: center;
  }
}
.cid-sQhwEvvkBx h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sQhwEvvkBx h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sQhwEvvkBx h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snkgvhiXr6 {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #635a51;
}
.cid-snkgvhiXr6 section {
  position: relative;
}
.cid-snkgvhiXr6 .container {
  max-width: 1400px;
}
.cid-snkgvhiXr6 .card-img2 span {
  padding-top: 6px;
}
.cid-snkgvhiXr6 .soc-item a {
  padding-top: 5px;
}
.cid-snkgvhiXr6 .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-snkgvhiXr6 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-snkgvhiXr6 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-snkgvhiXr6 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-snkgvhiXr6 #e2_shape {
  fill: #5b686b !important;
}
.cid-snkgvhiXr6 .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-snkgvhiXr6 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-snkgvhiXr6 .card-img2 {
  width: 45px;
  height: 45px;
  background: #635a51;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-snkgvhiXr6 .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-snkgvhiXr6 .soc-item span {
  font-size: 1.4rem;
}
.cid-snkgvhiXr6 .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-snkgvhiXr6 .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-snkgvhiXr6 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-snkgvhiXr6 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-snkgvhiXr6 .media-wrap {
  margin-bottom: 1rem;
}
.cid-snkgvhiXr6 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-snkgvhiXr6 img {
  height: 7rem;
}
@media (max-width: 576px) {
  .cid-snkgvhiXr6 .item {
    justify-content: center;
  }
  .cid-snkgvhiXr6 .quote::after {
    left: 60px;
  }
}
.cid-snkgvhiXr6 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-snkgvhiXr6 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-snkgvhiXr6 .text1 {
  color: #ffffff;
}
.cid-snkgvhiXr6 .item-title {
  color: #ffffff;
}
.cid-snkgvhiXr6 H5 {
  color: #ffffff;
}
.cid-snkgvhiXr6 .theme {
  color: #ffffff;
}
.cid-snkgvhiXr6 .copyright > p {
  color: #ffffff;
}
.cid-snkgvhiXr6 .text2 {
  color: #ffffff;
}
.cid-snkgvhiXr6 hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .5;
}
.cid-snpURsVq5o .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-snpURsVq5o .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-snpURsVq5o .nav-item:focus,
.cid-snpURsVq5o .nav-link:focus {
  outline: none;
}
.cid-snpURsVq5o .text-white:hover,
.cid-snpURsVq5o .text-white:active,
.cid-snpURsVq5o .text-white:focus {
  color: white!important;
}
.cid-snpURsVq5o .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #879a9f;
  background: none;
}
.cid-snpURsVq5o .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-snpURsVq5o .navbar.opened {
  transition: all .3s;
  background: #879a9f !important;
}
.cid-snpURsVq5o .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-snpURsVq5o .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-snpURsVq5o .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snpURsVq5o .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-snpURsVq5o .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-snpURsVq5o .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snpURsVq5o .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snpURsVq5o .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-snpURsVq5o .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snpURsVq5o .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-snpURsVq5o .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-snpURsVq5o .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snpURsVq5o .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snpURsVq5o .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-snpURsVq5o .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snpURsVq5o .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snpURsVq5o .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-snpURsVq5o .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-snpURsVq5o .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snpURsVq5o .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snpURsVq5o .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-snpURsVq5o .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-snpURsVq5o .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-snpURsVq5o .navbar.navbar-short {
  background: #879a9f !important;
  min-height: 60px;
}
.cid-snpURsVq5o .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-snpURsVq5o .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-snpURsVq5o .section {
  position: relative;
  overflow: visible!important;
}
.cid-snpURsVq5o .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-snpURsVq5o .dropdown-item:hover {
  color: black!important;
}
.cid-snpURsVq5o .dropdown-menu {
  background-color: white!important;
}
.cid-snpURsVq5o .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-snpURsVq5o .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-snpURsVq5o .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-snpURsVq5o .nav-item .nav-link {
    position: relative;
  }
}
.cid-snpURsVq5o .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-snpURsVq5o .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snpURsVq5o .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-snpURsVq5o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-snpURsVq5o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-snpURsVq5o .collapsed {
  flex-direction: row!important;
}
.cid-snpURsVq5o .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snpURsVq5o .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snpURsVq5o .navbar-caption {
  font-weight: 600!important;
}
.cid-snpURsVq5o .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snpURsVq5o .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snpURsVq5o .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snpURsVq5o .dropdown-item.active,
.cid-snpURsVq5o .dropdown-item:active {
  background-color: transparent;
}
.cid-snpURsVq5o .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snpURsVq5o .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snpURsVq5o .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snpURsVq5o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #879a9f;
}
.cid-snpURsVq5o .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snpURsVq5o ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-snpURsVq5o .navbar-buttons {
  text-align: center;
}
.cid-snpURsVq5o button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-snpURsVq5o button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #879a9f;
}
.cid-snpURsVq5o button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-snpURsVq5o button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-snpURsVq5o button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-snpURsVq5o button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-snpURsVq5o nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-snpURsVq5o nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-snpURsVq5o nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-snpURsVq5o nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-snpURsVq5o .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-snpURsVq5o .nav-link {
  font-weight: 600!important;
}
.cid-snpURsVq5o a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-snpURsVq5o .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-snpURsVq5o .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-snpURsVq5o .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-snpURsVq5o .navbar {
    height: 77px;
  }
  .cid-snpURsVq5o .navbar.opened {
    height: auto;
  }
  .cid-snpURsVq5o .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-snpURtLy6V {
  padding-top: 9rem;
  padding-bottom: 7rem;
}
.cid-snpURtLy6V .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-snpURtLy6V .mbr-text,
.cid-snpURtLy6V .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-snpURtLy6V .mbr-section-title,
  .cid-snpURtLy6V .mbr-section-btn,
  .cid-snpURtLy6V .mbr-text {
    text-align: center;
  }
}
.cid-snpURtLy6V h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-snpURtLy6V h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snpURtLy6V h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snpURu9hsF {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #5b686b;
}
.cid-snpURu9hsF .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-snpURu9hsF .mbr-text,
.cid-snpURu9hsF .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-snpURu9hsF .mbr-section-title,
  .cid-snpURu9hsF .mbr-section-btn,
  .cid-snpURu9hsF .mbr-text {
    text-align: center;
  }
}
.cid-snpURu9hsF h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-snpURu9hsF h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snpURu9hsF h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snpURuqmkx {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #5b686b;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-snpURuqmkx .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snpURuqmkx .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-snpURuqmkx .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-snpURuqmkx .btn-primary-outline:active {
  color: gray;
}
.cid-snpURuqmkx .btn-primary-outline:hover {
  color: white;
}
.cid-snpURuqmkx .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-snpURuqmkx div {
  overflow: hidden;
}
.cid-snpURuqmkx li.active .btn-primary-outline {
  color: white;
}
.cid-snpURuqmkx .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snpURuqmkx .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snpURuqmkx .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snpURuqmkx .mbr-gallery-item {
  overflow: hidden;
}
.cid-snpURuqmkx .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-snpURuqmkx .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-snpURuqmkx .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snpURuqmkx .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snpURuqmkx .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-snpURuqmkx .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snpURuqmkx .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sQhtxqczPl {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #5b686b;
}
.cid-sQhtxqczPl .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sQhtxqczPl .mbr-text,
.cid-sQhtxqczPl .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sQhtxqczPl .mbr-section-title,
  .cid-sQhtxqczPl .mbr-section-btn,
  .cid-sQhtxqczPl .mbr-text {
    text-align: center;
  }
}
.cid-sQhtxqczPl h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sQhtxqczPl h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sQhtxqczPl h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snpURuUSg5 {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #635a51;
}
.cid-snpURuUSg5 section {
  position: relative;
}
.cid-snpURuUSg5 .container {
  max-width: 1400px;
}
.cid-snpURuUSg5 .card-img2 span {
  padding-top: 6px;
}
.cid-snpURuUSg5 .soc-item a {
  padding-top: 5px;
}
.cid-snpURuUSg5 .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-snpURuUSg5 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-snpURuUSg5 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-snpURuUSg5 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-snpURuUSg5 #e2_shape {
  fill: #5b686b !important;
}
.cid-snpURuUSg5 .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-snpURuUSg5 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-snpURuUSg5 .card-img2 {
  width: 45px;
  height: 45px;
  background: #635a51;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-snpURuUSg5 .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-snpURuUSg5 .soc-item span {
  font-size: 1.4rem;
}
.cid-snpURuUSg5 .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-snpURuUSg5 .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-snpURuUSg5 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-snpURuUSg5 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-snpURuUSg5 .media-wrap {
  margin-bottom: 1rem;
}
.cid-snpURuUSg5 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-snpURuUSg5 img {
  height: 7rem;
}
@media (max-width: 576px) {
  .cid-snpURuUSg5 .item {
    justify-content: center;
  }
  .cid-snpURuUSg5 .quote::after {
    left: 60px;
  }
}
.cid-snpURuUSg5 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-snpURuUSg5 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-snpURuUSg5 .text1 {
  color: #ffffff;
}
.cid-snpURuUSg5 .item-title {
  color: #ffffff;
}
.cid-snpURuUSg5 H5 {
  color: #ffffff;
}
.cid-snpURuUSg5 .theme {
  color: #ffffff;
}
.cid-snpURuUSg5 .copyright > p {
  color: #ffffff;
}
.cid-snpURuUSg5 .text2 {
  color: #ffffff;
}
.cid-snpURuUSg5 hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .5;
}
.cid-snqfH3awXd .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-snqfH3awXd .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-snqfH3awXd .nav-item:focus,
.cid-snqfH3awXd .nav-link:focus {
  outline: none;
}
.cid-snqfH3awXd .text-white:hover,
.cid-snqfH3awXd .text-white:active,
.cid-snqfH3awXd .text-white:focus {
  color: white!important;
}
.cid-snqfH3awXd .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #879a9f;
  background: none;
}
.cid-snqfH3awXd .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-snqfH3awXd .navbar.opened {
  transition: all .3s;
  background: #879a9f !important;
}
.cid-snqfH3awXd .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-snqfH3awXd .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-snqfH3awXd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snqfH3awXd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-snqfH3awXd .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-snqfH3awXd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snqfH3awXd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snqfH3awXd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-snqfH3awXd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snqfH3awXd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-snqfH3awXd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-snqfH3awXd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snqfH3awXd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snqfH3awXd .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-snqfH3awXd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snqfH3awXd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snqfH3awXd .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-snqfH3awXd .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-snqfH3awXd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snqfH3awXd .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snqfH3awXd .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-snqfH3awXd .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-snqfH3awXd .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-snqfH3awXd .navbar.navbar-short {
  background: #879a9f !important;
  min-height: 60px;
}
.cid-snqfH3awXd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-snqfH3awXd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-snqfH3awXd .section {
  position: relative;
  overflow: visible!important;
}
.cid-snqfH3awXd .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-snqfH3awXd .dropdown-item:hover {
  color: black!important;
}
.cid-snqfH3awXd .dropdown-menu {
  background-color: white!important;
}
.cid-snqfH3awXd .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-snqfH3awXd .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-snqfH3awXd .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-snqfH3awXd .nav-item .nav-link {
    position: relative;
  }
}
.cid-snqfH3awXd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-snqfH3awXd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snqfH3awXd .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-snqfH3awXd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-snqfH3awXd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-snqfH3awXd .collapsed {
  flex-direction: row!important;
}
.cid-snqfH3awXd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snqfH3awXd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snqfH3awXd .navbar-caption {
  font-weight: 600!important;
}
.cid-snqfH3awXd .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snqfH3awXd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snqfH3awXd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snqfH3awXd .dropdown-item.active,
.cid-snqfH3awXd .dropdown-item:active {
  background-color: transparent;
}
.cid-snqfH3awXd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snqfH3awXd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snqfH3awXd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snqfH3awXd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #879a9f;
}
.cid-snqfH3awXd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snqfH3awXd ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-snqfH3awXd .navbar-buttons {
  text-align: center;
}
.cid-snqfH3awXd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-snqfH3awXd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #879a9f;
}
.cid-snqfH3awXd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-snqfH3awXd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-snqfH3awXd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-snqfH3awXd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-snqfH3awXd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-snqfH3awXd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-snqfH3awXd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-snqfH3awXd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-snqfH3awXd .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-snqfH3awXd .nav-link {
  font-weight: 600!important;
}
.cid-snqfH3awXd a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-snqfH3awXd .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-snqfH3awXd .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-snqfH3awXd .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-snqfH3awXd .navbar {
    height: 77px;
  }
  .cid-snqfH3awXd .navbar.opened {
    height: auto;
  }
  .cid-snqfH3awXd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-snqfH3TNQk {
  padding-top: 9rem;
  padding-bottom: 7rem;
}
.cid-snqfH3TNQk .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-snqfH3TNQk .mbr-text,
.cid-snqfH3TNQk .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-snqfH3TNQk .mbr-section-title,
  .cid-snqfH3TNQk .mbr-section-btn,
  .cid-snqfH3TNQk .mbr-text {
    text-align: center;
  }
}
.cid-snqfH3TNQk h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-snqfH3TNQk h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snqfH3TNQk h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snqfH4iuqL {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #5b686b;
}
.cid-snqfH4iuqL .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-snqfH4iuqL .mbr-text,
.cid-snqfH4iuqL .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-snqfH4iuqL .mbr-section-title,
  .cid-snqfH4iuqL .mbr-section-btn,
  .cid-snqfH4iuqL .mbr-text {
    text-align: center;
  }
}
.cid-snqfH4iuqL h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-snqfH4iuqL h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snqfH4iuqL h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snqfH4C0Eq {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #5b686b;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-snqfH4C0Eq .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snqfH4C0Eq .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-snqfH4C0Eq .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-snqfH4C0Eq .btn-primary-outline:active {
  color: gray;
}
.cid-snqfH4C0Eq .btn-primary-outline:hover {
  color: white;
}
.cid-snqfH4C0Eq .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-snqfH4C0Eq div {
  overflow: hidden;
}
.cid-snqfH4C0Eq li.active .btn-primary-outline {
  color: white;
}
.cid-snqfH4C0Eq .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snqfH4C0Eq .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snqfH4C0Eq .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snqfH4C0Eq .mbr-gallery-item {
  overflow: hidden;
}
.cid-snqfH4C0Eq .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-snqfH4C0Eq .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-snqfH4C0Eq .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snqfH4C0Eq .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snqfH4C0Eq .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-snqfH4C0Eq .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snqfH4C0Eq .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sQhwnHwQGC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #5b686b;
}
.cid-sQhwnHwQGC .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sQhwnHwQGC .mbr-text,
.cid-sQhwnHwQGC .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sQhwnHwQGC .mbr-section-title,
  .cid-sQhwnHwQGC .mbr-section-btn,
  .cid-sQhwnHwQGC .mbr-text {
    text-align: center;
  }
}
.cid-sQhwnHwQGC h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sQhwnHwQGC h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sQhwnHwQGC h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snqfH5pNHd {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #635a51;
}
.cid-snqfH5pNHd section {
  position: relative;
}
.cid-snqfH5pNHd .container {
  max-width: 1400px;
}
.cid-snqfH5pNHd .card-img2 span {
  padding-top: 6px;
}
.cid-snqfH5pNHd .soc-item a {
  padding-top: 5px;
}
.cid-snqfH5pNHd .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-snqfH5pNHd .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-snqfH5pNHd .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-snqfH5pNHd svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-snqfH5pNHd #e2_shape {
  fill: #5b686b !important;
}
.cid-snqfH5pNHd .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-snqfH5pNHd .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-snqfH5pNHd .card-img2 {
  width: 45px;
  height: 45px;
  background: #635a51;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-snqfH5pNHd .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-snqfH5pNHd .soc-item span {
  font-size: 1.4rem;
}
.cid-snqfH5pNHd .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-snqfH5pNHd .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-snqfH5pNHd .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-snqfH5pNHd .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-snqfH5pNHd .media-wrap {
  margin-bottom: 1rem;
}
.cid-snqfH5pNHd .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-snqfH5pNHd img {
  height: 7rem;
}
@media (max-width: 576px) {
  .cid-snqfH5pNHd .item {
    justify-content: center;
  }
  .cid-snqfH5pNHd .quote::after {
    left: 60px;
  }
}
.cid-snqfH5pNHd .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-snqfH5pNHd .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-snqfH5pNHd .text1 {
  color: #ffffff;
}
.cid-snqfH5pNHd .item-title {
  color: #ffffff;
}
.cid-snqfH5pNHd H5 {
  color: #ffffff;
}
.cid-snqfH5pNHd .theme {
  color: #ffffff;
}
.cid-snqfH5pNHd .copyright > p {
  color: #ffffff;
}
.cid-snqfH5pNHd .text2 {
  color: #ffffff;
}
.cid-snqfH5pNHd hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .5;
}
.cid-snqmvLP2Tn .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-snqmvLP2Tn .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-snqmvLP2Tn .nav-item:focus,
.cid-snqmvLP2Tn .nav-link:focus {
  outline: none;
}
.cid-snqmvLP2Tn .text-white:hover,
.cid-snqmvLP2Tn .text-white:active,
.cid-snqmvLP2Tn .text-white:focus {
  color: white!important;
}
.cid-snqmvLP2Tn .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #879a9f;
  background: none;
}
.cid-snqmvLP2Tn .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-snqmvLP2Tn .navbar.opened {
  transition: all .3s;
  background: #879a9f !important;
}
.cid-snqmvLP2Tn .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-snqmvLP2Tn .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-snqmvLP2Tn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snqmvLP2Tn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-snqmvLP2Tn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-snqmvLP2Tn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snqmvLP2Tn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snqmvLP2Tn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-snqmvLP2Tn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snqmvLP2Tn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-snqmvLP2Tn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-snqmvLP2Tn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snqmvLP2Tn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snqmvLP2Tn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-snqmvLP2Tn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snqmvLP2Tn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snqmvLP2Tn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-snqmvLP2Tn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-snqmvLP2Tn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snqmvLP2Tn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snqmvLP2Tn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-snqmvLP2Tn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-snqmvLP2Tn .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-snqmvLP2Tn .navbar.navbar-short {
  background: #879a9f !important;
  min-height: 60px;
}
.cid-snqmvLP2Tn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-snqmvLP2Tn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-snqmvLP2Tn .section {
  position: relative;
  overflow: visible!important;
}
.cid-snqmvLP2Tn .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-snqmvLP2Tn .dropdown-item:hover {
  color: black!important;
}
.cid-snqmvLP2Tn .dropdown-menu {
  background-color: white!important;
}
.cid-snqmvLP2Tn .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-snqmvLP2Tn .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-snqmvLP2Tn .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-snqmvLP2Tn .nav-item .nav-link {
    position: relative;
  }
}
.cid-snqmvLP2Tn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-snqmvLP2Tn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snqmvLP2Tn .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-snqmvLP2Tn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-snqmvLP2Tn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-snqmvLP2Tn .collapsed {
  flex-direction: row!important;
}
.cid-snqmvLP2Tn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snqmvLP2Tn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snqmvLP2Tn .navbar-caption {
  font-weight: 600!important;
}
.cid-snqmvLP2Tn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snqmvLP2Tn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snqmvLP2Tn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snqmvLP2Tn .dropdown-item.active,
.cid-snqmvLP2Tn .dropdown-item:active {
  background-color: transparent;
}
.cid-snqmvLP2Tn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snqmvLP2Tn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snqmvLP2Tn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snqmvLP2Tn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #879a9f;
}
.cid-snqmvLP2Tn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snqmvLP2Tn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-snqmvLP2Tn .navbar-buttons {
  text-align: center;
}
.cid-snqmvLP2Tn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-snqmvLP2Tn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #879a9f;
}
.cid-snqmvLP2Tn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-snqmvLP2Tn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-snqmvLP2Tn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-snqmvLP2Tn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-snqmvLP2Tn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-snqmvLP2Tn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-snqmvLP2Tn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-snqmvLP2Tn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-snqmvLP2Tn .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-snqmvLP2Tn .nav-link {
  font-weight: 600!important;
}
.cid-snqmvLP2Tn a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-snqmvLP2Tn .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-snqmvLP2Tn .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-snqmvLP2Tn .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-snqmvLP2Tn .navbar {
    height: 77px;
  }
  .cid-snqmvLP2Tn .navbar.opened {
    height: auto;
  }
  .cid-snqmvLP2Tn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-snqmvMFj8M {
  padding-top: 9rem;
  padding-bottom: 7rem;
}
.cid-snqmvMFj8M .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-snqmvMFj8M .mbr-text,
.cid-snqmvMFj8M .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-snqmvMFj8M .mbr-section-title,
  .cid-snqmvMFj8M .mbr-section-btn,
  .cid-snqmvMFj8M .mbr-text {
    text-align: center;
  }
}
.cid-snqmvMFj8M h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-snqmvMFj8M h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snqmvMFj8M h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snqmvN5MZ7 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #5b686b;
}
.cid-snqmvN5MZ7 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-snqmvN5MZ7 .mbr-text,
.cid-snqmvN5MZ7 .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-snqmvN5MZ7 .mbr-section-title,
  .cid-snqmvN5MZ7 .mbr-section-btn,
  .cid-snqmvN5MZ7 .mbr-text {
    text-align: center;
  }
}
.cid-snqmvN5MZ7 h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-snqmvN5MZ7 h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snqmvN5MZ7 h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snqmvNoY9X {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #5b686b;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-snqmvNoY9X .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snqmvNoY9X .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-snqmvNoY9X .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-snqmvNoY9X .btn-primary-outline:active {
  color: gray;
}
.cid-snqmvNoY9X .btn-primary-outline:hover {
  color: white;
}
.cid-snqmvNoY9X .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-snqmvNoY9X div {
  overflow: hidden;
}
.cid-snqmvNoY9X li.active .btn-primary-outline {
  color: white;
}
.cid-snqmvNoY9X .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snqmvNoY9X .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snqmvNoY9X .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snqmvNoY9X .mbr-gallery-item {
  overflow: hidden;
}
.cid-snqmvNoY9X .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-snqmvNoY9X .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-snqmvNoY9X .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snqmvNoY9X .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snqmvNoY9X .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-snqmvNoY9X .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snqmvNoY9X .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sQhw7BnXIG {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #5b686b;
}
.cid-sQhw7BnXIG .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sQhw7BnXIG .mbr-text,
.cid-sQhw7BnXIG .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sQhw7BnXIG .mbr-section-title,
  .cid-sQhw7BnXIG .mbr-section-btn,
  .cid-sQhw7BnXIG .mbr-text {
    text-align: center;
  }
}
.cid-sQhw7BnXIG h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sQhw7BnXIG h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sQhw7BnXIG h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snqmvOdCPD {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #635a51;
}
.cid-snqmvOdCPD section {
  position: relative;
}
.cid-snqmvOdCPD .container {
  max-width: 1400px;
}
.cid-snqmvOdCPD .card-img2 span {
  padding-top: 6px;
}
.cid-snqmvOdCPD .soc-item a {
  padding-top: 5px;
}
.cid-snqmvOdCPD .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-snqmvOdCPD .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-snqmvOdCPD .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-snqmvOdCPD svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-snqmvOdCPD #e2_shape {
  fill: #5b686b !important;
}
.cid-snqmvOdCPD .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-snqmvOdCPD .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-snqmvOdCPD .card-img2 {
  width: 45px;
  height: 45px;
  background: #635a51;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-snqmvOdCPD .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-snqmvOdCPD .soc-item span {
  font-size: 1.4rem;
}
.cid-snqmvOdCPD .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-snqmvOdCPD .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-snqmvOdCPD .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-snqmvOdCPD .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-snqmvOdCPD .media-wrap {
  margin-bottom: 1rem;
}
.cid-snqmvOdCPD .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-snqmvOdCPD img {
  height: 7rem;
}
@media (max-width: 576px) {
  .cid-snqmvOdCPD .item {
    justify-content: center;
  }
  .cid-snqmvOdCPD .quote::after {
    left: 60px;
  }
}
.cid-snqmvOdCPD .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-snqmvOdCPD .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-snqmvOdCPD .text1 {
  color: #ffffff;
}
.cid-snqmvOdCPD .item-title {
  color: #ffffff;
}
.cid-snqmvOdCPD H5 {
  color: #ffffff;
}
.cid-snqmvOdCPD .theme {
  color: #ffffff;
}
.cid-snqmvOdCPD .copyright > p {
  color: #ffffff;
}
.cid-snqmvOdCPD .text2 {
  color: #ffffff;
}
.cid-snqmvOdCPD hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .5;
}
.cid-snC9l6m7kr .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-snC9l6m7kr .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-snC9l6m7kr .nav-item:focus,
.cid-snC9l6m7kr .nav-link:focus {
  outline: none;
}
.cid-snC9l6m7kr .text-white:hover,
.cid-snC9l6m7kr .text-white:active,
.cid-snC9l6m7kr .text-white:focus {
  color: white!important;
}
.cid-snC9l6m7kr .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #879a9f;
  background: none;
}
.cid-snC9l6m7kr .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-snC9l6m7kr .navbar.opened {
  transition: all .3s;
  background: #879a9f !important;
}
.cid-snC9l6m7kr .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-snC9l6m7kr .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-snC9l6m7kr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-snC9l6m7kr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-snC9l6m7kr .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-snC9l6m7kr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-snC9l6m7kr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-snC9l6m7kr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-snC9l6m7kr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-snC9l6m7kr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-snC9l6m7kr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-snC9l6m7kr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-snC9l6m7kr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-snC9l6m7kr .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-snC9l6m7kr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-snC9l6m7kr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-snC9l6m7kr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-snC9l6m7kr .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-snC9l6m7kr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-snC9l6m7kr .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-snC9l6m7kr .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-snC9l6m7kr .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-snC9l6m7kr .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-snC9l6m7kr .navbar.navbar-short {
  background: #879a9f !important;
  min-height: 60px;
}
.cid-snC9l6m7kr .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-snC9l6m7kr .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-snC9l6m7kr .section {
  position: relative;
  overflow: visible!important;
}
.cid-snC9l6m7kr .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-snC9l6m7kr .dropdown-item:hover {
  color: black!important;
}
.cid-snC9l6m7kr .dropdown-menu {
  background-color: white!important;
}
.cid-snC9l6m7kr .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-snC9l6m7kr .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-snC9l6m7kr .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-snC9l6m7kr .nav-item .nav-link {
    position: relative;
  }
}
.cid-snC9l6m7kr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-snC9l6m7kr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-snC9l6m7kr .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-snC9l6m7kr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-snC9l6m7kr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-snC9l6m7kr .collapsed {
  flex-direction: row!important;
}
.cid-snC9l6m7kr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-snC9l6m7kr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-snC9l6m7kr .navbar-caption {
  font-weight: 600!important;
}
.cid-snC9l6m7kr .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-snC9l6m7kr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-snC9l6m7kr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-snC9l6m7kr .dropdown-item.active,
.cid-snC9l6m7kr .dropdown-item:active {
  background-color: transparent;
}
.cid-snC9l6m7kr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-snC9l6m7kr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-snC9l6m7kr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-snC9l6m7kr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #879a9f;
}
.cid-snC9l6m7kr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-snC9l6m7kr ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-snC9l6m7kr .navbar-buttons {
  text-align: center;
}
.cid-snC9l6m7kr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-snC9l6m7kr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #879a9f;
}
.cid-snC9l6m7kr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-snC9l6m7kr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-snC9l6m7kr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-snC9l6m7kr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-snC9l6m7kr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-snC9l6m7kr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-snC9l6m7kr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-snC9l6m7kr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-snC9l6m7kr .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-snC9l6m7kr .nav-link {
  font-weight: 600!important;
}
.cid-snC9l6m7kr a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-snC9l6m7kr .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-snC9l6m7kr .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-snC9l6m7kr .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-snC9l6m7kr .navbar {
    height: 77px;
  }
  .cid-snC9l6m7kr .navbar.opened {
    height: auto;
  }
  .cid-snC9l6m7kr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-snC9l72bOC {
  padding-top: 9rem;
  padding-bottom: 7rem;
}
.cid-snC9l72bOC .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-snC9l72bOC .mbr-text,
.cid-snC9l72bOC .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-snC9l72bOC .mbr-section-title,
  .cid-snC9l72bOC .mbr-section-btn,
  .cid-snC9l72bOC .mbr-text {
    text-align: center;
  }
}
.cid-snC9l72bOC h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-snC9l72bOC h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snC9l72bOC h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snC9l7q5IV {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #5b686b;
}
.cid-snC9l7q5IV .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-snC9l7q5IV .mbr-text,
.cid-snC9l7q5IV .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-snC9l7q5IV .mbr-section-title,
  .cid-snC9l7q5IV .mbr-section-btn,
  .cid-snC9l7q5IV .mbr-text {
    text-align: center;
  }
}
.cid-snC9l7q5IV h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-snC9l7q5IV h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snC9l7q5IV h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snC9l7FfIA {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #5b686b;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-snC9l7FfIA .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-snC9l7FfIA .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-snC9l7FfIA .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-snC9l7FfIA .btn-primary-outline:active {
  color: gray;
}
.cid-snC9l7FfIA .btn-primary-outline:hover {
  color: white;
}
.cid-snC9l7FfIA .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-snC9l7FfIA div {
  overflow: hidden;
}
.cid-snC9l7FfIA li.active .btn-primary-outline {
  color: white;
}
.cid-snC9l7FfIA .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-snC9l7FfIA .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-snC9l7FfIA .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-snC9l7FfIA .mbr-gallery-item {
  overflow: hidden;
}
.cid-snC9l7FfIA .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-snC9l7FfIA .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-snC9l7FfIA .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-snC9l7FfIA .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-snC9l7FfIA .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-snC9l7FfIA .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-snC9l7FfIA .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-sQhvw218tv {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #5b686b;
}
.cid-sQhvw218tv .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-sQhvw218tv .mbr-text,
.cid-sQhvw218tv .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-sQhvw218tv .mbr-section-title,
  .cid-sQhvw218tv .mbr-section-btn,
  .cid-sQhvw218tv .mbr-text {
    text-align: center;
  }
}
.cid-sQhvw218tv h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 6px;
}
.cid-sQhvw218tv h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sQhvw218tv h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-snC9l8qBaT {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #635a51;
}
.cid-snC9l8qBaT section {
  position: relative;
}
.cid-snC9l8qBaT .container {
  max-width: 1400px;
}
.cid-snC9l8qBaT .card-img2 span {
  padding-top: 6px;
}
.cid-snC9l8qBaT .soc-item a {
  padding-top: 5px;
}
.cid-snC9l8qBaT .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-snC9l8qBaT .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-snC9l8qBaT .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-snC9l8qBaT svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-snC9l8qBaT #e2_shape {
  fill: #5b686b !important;
}
.cid-snC9l8qBaT .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-snC9l8qBaT .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-snC9l8qBaT .card-img2 {
  width: 45px;
  height: 45px;
  background: #635a51;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-snC9l8qBaT .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-snC9l8qBaT .soc-item span {
  font-size: 1.4rem;
}
.cid-snC9l8qBaT .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-snC9l8qBaT .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-snC9l8qBaT .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-snC9l8qBaT .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-snC9l8qBaT .media-wrap {
  margin-bottom: 1rem;
}
.cid-snC9l8qBaT .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-snC9l8qBaT img {
  height: 7rem;
}
@media (max-width: 576px) {
  .cid-snC9l8qBaT .item {
    justify-content: center;
  }
  .cid-snC9l8qBaT .quote::after {
    left: 60px;
  }
}
.cid-snC9l8qBaT .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-snC9l8qBaT .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-snC9l8qBaT .text1 {
  color: #ffffff;
}
.cid-snC9l8qBaT .item-title {
  color: #ffffff;
}
.cid-snC9l8qBaT H5 {
  color: #ffffff;
}
.cid-snC9l8qBaT .theme {
  color: #ffffff;
}
.cid-snC9l8qBaT .copyright > p {
  color: #ffffff;
}
.cid-snC9l8qBaT .text2 {
  color: #ffffff;
}
.cid-snC9l8qBaT hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .5;
}
.cid-spGS80LdqV .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-spGS80LdqV .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-spGS80LdqV .nav-item:focus,
.cid-spGS80LdqV .nav-link:focus {
  outline: none;
}
.cid-spGS80LdqV .text-white:hover,
.cid-spGS80LdqV .text-white:active,
.cid-spGS80LdqV .text-white:focus {
  color: white!important;
}
.cid-spGS80LdqV .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #879a9f;
  background: none;
}
.cid-spGS80LdqV .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-spGS80LdqV .navbar.opened {
  transition: all .3s;
  background: #879a9f !important;
}
.cid-spGS80LdqV .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-spGS80LdqV .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-spGS80LdqV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-spGS80LdqV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-spGS80LdqV .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-spGS80LdqV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-spGS80LdqV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-spGS80LdqV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-spGS80LdqV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-spGS80LdqV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-spGS80LdqV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-spGS80LdqV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-spGS80LdqV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-spGS80LdqV .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-spGS80LdqV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-spGS80LdqV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-spGS80LdqV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-spGS80LdqV .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-spGS80LdqV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-spGS80LdqV .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-spGS80LdqV .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-spGS80LdqV .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-spGS80LdqV .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-spGS80LdqV .navbar.navbar-short {
  background: #879a9f !important;
  min-height: 60px;
}
.cid-spGS80LdqV .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-spGS80LdqV .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-spGS80LdqV .section {
  position: relative;
  overflow: visible!important;
}
.cid-spGS80LdqV .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-spGS80LdqV .dropdown-item:hover {
  color: black!important;
}
.cid-spGS80LdqV .dropdown-menu {
  background-color: white!important;
}
.cid-spGS80LdqV .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-spGS80LdqV .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-spGS80LdqV .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-spGS80LdqV .nav-item .nav-link {
    position: relative;
  }
}
.cid-spGS80LdqV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spGS80LdqV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-spGS80LdqV .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-spGS80LdqV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-spGS80LdqV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-spGS80LdqV .collapsed {
  flex-direction: row!important;
}
.cid-spGS80LdqV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-spGS80LdqV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-spGS80LdqV .navbar-caption {
  font-weight: 600!important;
}
.cid-spGS80LdqV .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-spGS80LdqV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-spGS80LdqV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-spGS80LdqV .dropdown-item.active,
.cid-spGS80LdqV .dropdown-item:active {
  background-color: transparent;
}
.cid-spGS80LdqV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-spGS80LdqV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-spGS80LdqV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-spGS80LdqV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #879a9f;
}
.cid-spGS80LdqV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-spGS80LdqV ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spGS80LdqV .navbar-buttons {
  text-align: center;
}
.cid-spGS80LdqV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-spGS80LdqV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #879a9f;
}
.cid-spGS80LdqV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-spGS80LdqV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-spGS80LdqV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-spGS80LdqV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-spGS80LdqV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spGS80LdqV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-spGS80LdqV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-spGS80LdqV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-spGS80LdqV .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-spGS80LdqV .nav-link {
  font-weight: 600!important;
}
.cid-spGS80LdqV a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-spGS80LdqV .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-spGS80LdqV .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-spGS80LdqV .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spGS80LdqV .navbar {
    height: 77px;
  }
  .cid-spGS80LdqV .navbar.opened {
    height: auto;
  }
  .cid-spGS80LdqV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-spGS82cbVv {
  overflow: hidden !important;
  padding-top: 180px;
  padding-bottom: 90px;
  background-image: url("https://www.lesponne.fr/assets/images/page-404/lac-bleu-lesponne.jpg");
}
.cid-spGS82cbVv .container-fluid {
  padding: 0 5rem;
}
.cid-spGS82cbVv .img-block {
  align-self: center;
  -webkit-align-self: center;
}
.cid-spGS82cbVv .img-responsive {
  align-self: center;
}
.cid-spGS82cbVv .mbr-section-title {
  padding-bottom: 2rem;
  color: #f4f8fa;
}
.cid-spGS82cbVv .mbr-section-subtitle {
  color: #3e4555;
  font-weight: 400;
}
.cid-spGS82cbVv .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-spGS82cbVv .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .cid-spGS82cbVv .container-fluid {
    padding: 0 1rem;
  }
  .cid-spGS82cbVv .mbr-figure {
    margin-top: 1rem;
  }
  .cid-spGS82cbVv .mbr-section-title {
    text-align: center !important;
  }
  .cid-spGS82cbVv .mbr-section-subtitle {
    text-align: center !important;
  }
  .cid-spGS82cbVv .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-spGS82cbVv .mbr-section-subtitle,
.cid-spGS82cbVv .mbr-section-btn {
  color: #f4f8fa;
}
.cid-swhIQQZQON {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #635a51;
}
.cid-swhIQQZQON section {
  position: relative;
}
.cid-swhIQQZQON .container {
  max-width: 1400px;
}
.cid-swhIQQZQON .card-img2 span {
  padding-top: 6px;
}
.cid-swhIQQZQON .soc-item a {
  padding-top: 5px;
}
.cid-swhIQQZQON .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-swhIQQZQON .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-swhIQQZQON .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-swhIQQZQON svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-swhIQQZQON #e2_shape {
  fill: #697477 !important;
}
.cid-swhIQQZQON .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-swhIQQZQON .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-swhIQQZQON .card-img2 {
  width: 45px;
  height: 45px;
  background: #635a51;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-swhIQQZQON .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-swhIQQZQON .soc-item span {
  font-size: 1.4rem;
}
.cid-swhIQQZQON .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-swhIQQZQON .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-swhIQQZQON .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-swhIQQZQON .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-swhIQQZQON .media-wrap {
  margin-bottom: 1rem;
}
.cid-swhIQQZQON .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-swhIQQZQON img {
  height: 7rem;
}
@media (max-width: 576px) {
  .cid-swhIQQZQON .item {
    justify-content: center;
  }
  .cid-swhIQQZQON .quote::after {
    left: 60px;
  }
}
.cid-swhIQQZQON .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-swhIQQZQON .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-swhIQQZQON .text1 {
  color: #ffffff;
}
.cid-swhIQQZQON .item-title {
  color: #ffffff;
}
.cid-swhIQQZQON H5 {
  color: #ffffff;
}
.cid-swhIQQZQON .theme {
  color: #ffffff;
}
.cid-swhIQQZQON .copyright > p {
  color: #ffffff;
}
.cid-swhIQQZQON .text2 {
  color: #ffffff;
}
.cid-swhIQQZQON hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .5;
}
.cid-spScSCC7HY {
  background-image: url("https://www.lesponne.fr/assets/images/page-404/lac-bleu-lesponne.jpg");
}
.cid-spScSCC7HY .row {
  margin-left: -5rem;
}
.cid-spScSCC7HY .slider-text-two {
  background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
  display: inline-block;
  outline: 1px solid rgba(255, 255, 255, 0.5);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
}
.cid-spScSCC7HY .mbr-section-title,
.cid-spScSCC7HY .mbr-section-subtitle {
  color: #232323;
}
.cid-spScSCC7HY .mbr-section-subtitle span {
  font-weight: bold;
}
.cid-spScSCC7HY .mbr-text {
  color: #ffffff;
  font-weight: 100;
}
.cid-spScSCC7HY .mbr-section-btn {
  color: white;
}
@media (max-width: 767px) {
  .cid-spScSCC7HY .row {
    margin-left: -15px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-spScSCC7HY .slider-text-two {
    outline: 15px solid rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.9);
  }
}
.cid-spScSCC7HY .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-spScSCC7HY .mbr-section-subtitle {
  color: #efefef;
}
.cid-spScSCC7HY .extra-font {
  font-size: 120px;
}
.cid-stVIw3fwMF .google-map {
  height: 34rem;
  position: relative;
}
.cid-stVIw3fwMF .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-stVIw3fwMF .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-stVIw3fwMF .google-map[data-state] {
  background: #5b686b;
}
.cid-stVIw3fwMF .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sujioirQKw {
  padding-top: 60px;
  padding-bottom: 120px;
  background-image: url("https://lesponne.fr/assets/images/page-cabanes/la-vallee-de-lesponne.jpg");
  position: relative;
  overflow: hidden;
}
.cid-sujioirQKw .mbr-text {
  color: #ffffff;
}
.cid-sujioirQKw .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #72685e;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(0, 0, 0, 0.9);
}
.cid-sujioirQKw .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-sujioirQKw .card-wrapper:hover .ico2 {
  color: #ff8a73 !important;
}
.cid-sujioirQKw .text-info:hover {
  color: inherit!important;
}
.cid-sujioirQKw .ico2 {
  color: #ffbe9d !important;
  transition: all 0.6s;
}
.cid-sujioirQKw .card-box {
  padding: 0rem 1rem;
}
.cid-sujioirQKw .ico1 {
  font-size: 4rem !important;
}
.cid-sujioirQKw h3,
.cid-sujioirQKw h4 {
  padding: 0;
  margin: 0;
}
.cid-sujioirQKw .card-title,
.cid-sujioirQKw .card-img {
  color: #57468b;
}
.cid-sujioirQKw .card-title {
  color: #ffffff;
}
.cid-sujioirQKw H3 {
  color: #ffffff;
}
.cid-sujioirQKw H1 {
  color: #ffffff;
}
.cid-sujioirQKw h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 2px;
}
.cid-sujioirQKw h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sujioirQKw h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sujioirQKw .mbr-text,
.cid-sujioirQKw .mbr-section-btn {
  color: #ffffff;
}
.cid-sujioirQKw H2 {
  color: #ffffff;
}
.cid-sujioirQKw svg {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-sujioirQKw #e2_shape {
  fill: #697477 !important;
}
.cid-sujioirQKw img {
  width: 80%;
  border-radius: 10px;
  margin: auto;
}
@media (max-width: 576px) {
  .cid-sujioirQKw img {
    width: 90%!important;
  }
}
.cid-stVIw3V6dk {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #635a51;
}
.cid-stVIw3V6dk section {
  position: relative;
}
.cid-stVIw3V6dk .container {
  max-width: 1400px;
}
.cid-stVIw3V6dk .card-img2 span {
  padding-top: 6px;
}
.cid-stVIw3V6dk .soc-item a {
  padding-top: 5px;
}
.cid-stVIw3V6dk .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-stVIw3V6dk .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-stVIw3V6dk .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-stVIw3V6dk svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-stVIw3V6dk #e2_shape {
  fill: #697477 !important;
}
.cid-stVIw3V6dk .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-stVIw3V6dk .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-stVIw3V6dk .card-img2 {
  width: 45px;
  height: 45px;
  background: #635a51;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-stVIw3V6dk .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-stVIw3V6dk .soc-item span {
  font-size: 1.4rem;
}
.cid-stVIw3V6dk .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-stVIw3V6dk .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-stVIw3V6dk .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-stVIw3V6dk .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-stVIw3V6dk .media-wrap {
  margin-bottom: 1rem;
}
.cid-stVIw3V6dk .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-stVIw3V6dk img {
  height: 12rem;
}
@media (max-width: 576px) {
  .cid-stVIw3V6dk .item {
    justify-content: center;
  }
  .cid-stVIw3V6dk .quote::after {
    left: 60px;
  }
}
.cid-stVIw3V6dk .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-stVIw3V6dk .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-stVIw3V6dk .text1 {
  color: #ffffff;
}
.cid-stVIw3V6dk .item-title {
  color: #ffffff;
}
.cid-stVIw3V6dk H5 {
  color: #ffffff;
}
.cid-stVIw3V6dk .theme {
  color: #ffffff;
}
.cid-stVIw3V6dk .copyright > p {
  color: #ffffff;
}
.cid-stVIw3V6dk .text2 {
  color: #ffffff;
}
.cid-stVIw3V6dk hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .5;
}
.cid-stVIw3V6dk .boutonfixe {
  background-color: transparent;
  color: white;
  padding: 0px 0px;
  border-raduis: 0px;
  border-color: transparent;
  z-index: 99999;
}
.cid-stVIw3V6dk #covid {
  position: fixed;
  top: 235px;
  right: 15px;
  bottom: 0px;
}
.cid-su77MkiV1L .google-map {
  height: 34rem;
  position: relative;
}
.cid-su77MkiV1L .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-su77MkiV1L .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-su77MkiV1L .google-map[data-state] {
  background: #5b686b;
}
.cid-su77MkiV1L .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sujdsJN7hZ {
  padding-top: 45px;
  padding-bottom: 135px;
  background-image: url("https://lesponne.fr/assets/images/page-cabanes/la-vallee-de-lesponne.jpg");
  position: relative;
  overflow: hidden;
}
.cid-sujdsJN7hZ .mbr-text {
  color: #ffffff;
}
.cid-sujdsJN7hZ .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #72685e;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(0, 0, 0, 0.7);
}
.cid-sujdsJN7hZ .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-sujdsJN7hZ .card-wrapper:hover .ico2 {
  color: #ff8a73 !important;
}
.cid-sujdsJN7hZ .text-info:hover {
  color: inherit!important;
}
.cid-sujdsJN7hZ .ico2 {
  color: #ffbe9d !important;
  transition: all 0.6s;
}
.cid-sujdsJN7hZ .card-box {
  padding: 0rem 1rem;
}
.cid-sujdsJN7hZ .ico1 {
  font-size: 4rem !important;
}
.cid-sujdsJN7hZ h3,
.cid-sujdsJN7hZ h4 {
  padding: 0;
  margin: 0;
}
.cid-sujdsJN7hZ .card-title,
.cid-sujdsJN7hZ .card-img {
  color: #57468b;
}
.cid-sujdsJN7hZ .card-title {
  color: #ffffff;
}
.cid-sujdsJN7hZ H3 {
  color: #ffffff;
}
.cid-sujdsJN7hZ H1 {
  color: #ffffff;
}
.cid-sujdsJN7hZ h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 1.4rem;
  letter-spacing: 2px;
}
.cid-sujdsJN7hZ h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sujdsJN7hZ h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sujdsJN7hZ .mbr-text,
.cid-sujdsJN7hZ .mbr-section-btn {
  color: #ffffff;
}
.cid-sujdsJN7hZ H2 {
  color: #ffffff;
}
.cid-sujdsJN7hZ svg {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-sujdsJN7hZ #e2_shape {
  fill: #697477 !important;
}
.cid-sujdsJN7hZ img {
  width: 80%;
  border-radius: 10px;
  margin: auto;
}
@media (max-width: 576px) {
  .cid-sujdsJN7hZ img {
    width: 90%!important;
  }
}
.cid-swhJbnBn3E {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #635a51;
}
.cid-swhJbnBn3E section {
  position: relative;
}
.cid-swhJbnBn3E .container {
  max-width: 1400px;
}
.cid-swhJbnBn3E .card-img2 span {
  padding-top: 6px;
}
.cid-swhJbnBn3E .soc-item a {
  padding-top: 5px;
}
.cid-swhJbnBn3E .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-swhJbnBn3E .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-swhJbnBn3E .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-swhJbnBn3E svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-swhJbnBn3E #e2_shape {
  fill: #697477 !important;
}
.cid-swhJbnBn3E .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-swhJbnBn3E .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-swhJbnBn3E .card-img2 {
  width: 45px;
  height: 45px;
  background: #635a51;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-swhJbnBn3E .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-swhJbnBn3E .soc-item span {
  font-size: 1.4rem;
}
.cid-swhJbnBn3E .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-swhJbnBn3E .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-swhJbnBn3E .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-swhJbnBn3E .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-swhJbnBn3E .media-wrap {
  margin-bottom: 1rem;
}
.cid-swhJbnBn3E .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-swhJbnBn3E img {
  height: 12rem;
}
@media (max-width: 576px) {
  .cid-swhJbnBn3E .item {
    justify-content: center;
  }
  .cid-swhJbnBn3E .quote::after {
    left: 60px;
  }
}
.cid-swhJbnBn3E .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-swhJbnBn3E .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-swhJbnBn3E .text1 {
  color: #ffffff;
}
.cid-swhJbnBn3E .item-title {
  color: #ffffff;
}
.cid-swhJbnBn3E H5 {
  color: #ffffff;
}
.cid-swhJbnBn3E .theme {
  color: #ffffff;
}
.cid-swhJbnBn3E .copyright > p {
  color: #ffffff;
}
.cid-swhJbnBn3E .text2 {
  color: #ffffff;
}
.cid-swhJbnBn3E hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .5;
}
.cid-swhJbnBn3E .boutonfixe {
  background-color: transparent;
  color: white;
  padding: 0px 0px;
  border-raduis: 0px;
  border-color: transparent;
  z-index: 99999;
}
.cid-swhJbnBn3E #covid {
  position: fixed;
  top: 235px;
  right: 15px;
  bottom: 0px;
}
.cid-su7eptC5VS {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("https://lesponne.fr/assets/images/page-cabanes/la-vallee-de-lesponne.jpg");
  position: relative;
  overflow: hidden;
}
.cid-su7eptC5VS .mbr-text {
  color: #ffffff;
}
.cid-su7eptC5VS .card-wrapper {
  display: flex;
  flex-direction: row;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background-color: #72685e;
  transition: all 0.3s;
  padding: 1rem 1rem !important;
  box-shadow: 0 10px 55px 5px rgba(0, 0, 0, 0.7);
}
.cid-su7eptC5VS .card-wrapper:hover {
  transform: translateY(-1rem);
}
.cid-su7eptC5VS .card-wrapper:hover .ico2 {
  color: #ff8a73 !important;
}
.cid-su7eptC5VS .text-info:hover {
  color: inherit!important;
}
.cid-su7eptC5VS .ico2 {
  color: #ffbe9d !important;
  transition: all 0.6s;
}
.cid-su7eptC5VS .card-box {
  padding: 0rem 1rem;
}
.cid-su7eptC5VS .ico1 {
  font-size: 4rem !important;
}
.cid-su7eptC5VS h3,
.cid-su7eptC5VS h4 {
  padding: 0;
  margin: 0;
}
.cid-su7eptC5VS .card-title,
.cid-su7eptC5VS .card-img {
  color: #57468b;
}
.cid-su7eptC5VS .card-title {
  color: #ffffff;
}
.cid-su7eptC5VS H3 {
  color: #ffffff;
}
.cid-su7eptC5VS H1 {
  color: #ffffff;
}
.cid-su7eptC5VS h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 0.4rem;
  letter-spacing: 2px;
}
.cid-su7eptC5VS h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-su7eptC5VS h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-su7eptC5VS .mbr-text,
.cid-su7eptC5VS .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-su7eptC5VS H2 {
  color: #ffffff;
}
.cid-su7eptC5VS svg {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-su7eptC5VS #e2_shape {
  fill: #697477 !important;
}
.cid-su7eptC5VS img {
  width: 80%;
  border-radius: 10px;
  margin: auto;
}
@media (max-width: 576px) {
  .cid-su7eptC5VS img {
    width: 90%!important;
  }
}
.cid-su7dP81QOG {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #635a51;
}
.cid-su7dP81QOG section {
  position: relative;
}
.cid-su7dP81QOG .container {
  max-width: 1400px;
}
.cid-su7dP81QOG .card-img2 span {
  padding-top: 6px;
}
.cid-su7dP81QOG .soc-item a {
  padding-top: 5px;
}
.cid-su7dP81QOG .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-su7dP81QOG .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-su7dP81QOG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-su7dP81QOG svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-su7dP81QOG #e2_shape {
  fill: #697477 !important;
}
.cid-su7dP81QOG .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-su7dP81QOG .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-su7dP81QOG .card-img2 {
  width: 45px;
  height: 45px;
  background: #635a51;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-su7dP81QOG .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-su7dP81QOG .soc-item span {
  font-size: 1.4rem;
}
.cid-su7dP81QOG .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-su7dP81QOG .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-su7dP81QOG .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-su7dP81QOG .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-su7dP81QOG .media-wrap {
  margin-bottom: 1rem;
}
.cid-su7dP81QOG .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-su7dP81QOG img {
  height: 7rem;
}
@media (max-width: 576px) {
  .cid-su7dP81QOG .item {
    justify-content: center;
  }
  .cid-su7dP81QOG .quote::after {
    left: 60px;
  }
}
.cid-su7dP81QOG .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-su7dP81QOG .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-su7dP81QOG .text1 {
  color: #ffffff;
}
.cid-su7dP81QOG .item-title {
  color: #ffffff;
}
.cid-su7dP81QOG H5 {
  color: #ffffff;
}
.cid-su7dP81QOG .theme {
  color: #ffffff;
}
.cid-su7dP81QOG .copyright > p {
  color: #ffffff;
}
.cid-su7dP81QOG .text2 {
  color: #ffffff;
}
.cid-su7dP81QOG hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .5;
}
.cid-swcoeDnkW4 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-swcoeDnkW4 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-swcoeDnkW4 .nav-item:focus,
.cid-swcoeDnkW4 .nav-link:focus {
  outline: none;
}
.cid-swcoeDnkW4 .text-white:hover,
.cid-swcoeDnkW4 .text-white:active,
.cid-swcoeDnkW4 .text-white:focus {
  color: white!important;
}
.cid-swcoeDnkW4 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #879a9f;
  background: none;
}
.cid-swcoeDnkW4 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-swcoeDnkW4 .navbar.opened {
  transition: all .3s;
  background: #879a9f !important;
}
.cid-swcoeDnkW4 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-swcoeDnkW4 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-swcoeDnkW4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swcoeDnkW4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swcoeDnkW4 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-swcoeDnkW4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swcoeDnkW4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swcoeDnkW4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-swcoeDnkW4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swcoeDnkW4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-swcoeDnkW4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-swcoeDnkW4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swcoeDnkW4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swcoeDnkW4 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-swcoeDnkW4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swcoeDnkW4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swcoeDnkW4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-swcoeDnkW4 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-swcoeDnkW4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swcoeDnkW4 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swcoeDnkW4 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-swcoeDnkW4 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-swcoeDnkW4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-swcoeDnkW4 .navbar.navbar-short {
  background: #879a9f !important;
  min-height: 60px;
}
.cid-swcoeDnkW4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-swcoeDnkW4 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-swcoeDnkW4 .section {
  position: relative;
  overflow: visible!important;
}
.cid-swcoeDnkW4 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-swcoeDnkW4 .dropdown-item:hover {
  color: black!important;
}
.cid-swcoeDnkW4 .dropdown-menu {
  background-color: white!important;
}
.cid-swcoeDnkW4 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-swcoeDnkW4 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-swcoeDnkW4 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-swcoeDnkW4 .nav-item .nav-link {
    position: relative;
  }
}
.cid-swcoeDnkW4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-swcoeDnkW4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swcoeDnkW4 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-swcoeDnkW4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-swcoeDnkW4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-swcoeDnkW4 .collapsed {
  flex-direction: row!important;
}
.cid-swcoeDnkW4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swcoeDnkW4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swcoeDnkW4 .navbar-caption {
  font-weight: 600!important;
}
.cid-swcoeDnkW4 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swcoeDnkW4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swcoeDnkW4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swcoeDnkW4 .dropdown-item.active,
.cid-swcoeDnkW4 .dropdown-item:active {
  background-color: transparent;
}
.cid-swcoeDnkW4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swcoeDnkW4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swcoeDnkW4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swcoeDnkW4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #879a9f;
}
.cid-swcoeDnkW4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swcoeDnkW4 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-swcoeDnkW4 .navbar-buttons {
  text-align: center;
}
.cid-swcoeDnkW4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-swcoeDnkW4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #879a9f;
}
.cid-swcoeDnkW4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-swcoeDnkW4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-swcoeDnkW4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-swcoeDnkW4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-swcoeDnkW4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swcoeDnkW4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-swcoeDnkW4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-swcoeDnkW4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swcoeDnkW4 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-swcoeDnkW4 .nav-link {
  font-weight: 600!important;
}
.cid-swcoeDnkW4 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-swcoeDnkW4 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-swcoeDnkW4 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-swcoeDnkW4 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-swcoeDnkW4 .navbar {
    height: 77px;
  }
  .cid-swcoeDnkW4 .navbar.opened {
    height: auto;
  }
  .cid-swcoeDnkW4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-swcoAYmoRy {
  padding-top: 120px;
  padding-bottom: 45px;
  background: #635a51;
  background: linear-gradient(90deg, #635a51, #697477);
}
.cid-swcoAYmoRy .container-fluid {
  padding: 0 3rem;
}
.cid-swcoAYmoRy .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-swcoAYmoRy .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ff8a73, #ff8a73);
  display: inline-block;
}
.cid-swcoAYmoRy .title-wrap {
  padding-left: 0;
  padding-right: 0;
}
.cid-swcoAYmoRy .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-swcoAYmoRy .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-swcoAYmoRy .image-wrap img:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
.cid-swcoAYmoRy .content-section {
  padding: 3rem;
}
.cid-swcoAYmoRy .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-swcoAYmoRy .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #ffffff;
  padding: 0rem;
  z-index: 10;
  border-radius: 15px;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  .cid-swcoAYmoRy .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-swcoAYmoRy .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-swcoAYmoRy .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-swcoAYmoRy .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-swcoAYmoRy .underline,
.cid-swcoAYmoRy .mbr-title {
  color: #ffffff;
}
.cid-swcoAYmoRy .mbr-text DIV {
  text-align: justify;
}
.cid-swcoeFfuPr {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #635a51;
}
.cid-swcoeFfuPr section {
  position: relative;
}
.cid-swcoeFfuPr .container {
  max-width: 1400px;
}
.cid-swcoeFfuPr .card-img2 span {
  padding-top: 6px;
}
.cid-swcoeFfuPr .soc-item a {
  padding-top: 5px;
}
.cid-swcoeFfuPr .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-swcoeFfuPr .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-swcoeFfuPr .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-swcoeFfuPr svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-swcoeFfuPr #e2_shape {
  fill: #697477 !important;
}
.cid-swcoeFfuPr .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-swcoeFfuPr .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-swcoeFfuPr .card-img2 {
  width: 45px;
  height: 45px;
  background: #635a51;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-swcoeFfuPr .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-swcoeFfuPr .soc-item span {
  font-size: 1.4rem;
}
.cid-swcoeFfuPr .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-swcoeFfuPr .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-swcoeFfuPr .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-swcoeFfuPr .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-swcoeFfuPr .media-wrap {
  margin-bottom: 1rem;
}
.cid-swcoeFfuPr .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-swcoeFfuPr img {
  height: 7rem;
}
@media (max-width: 576px) {
  .cid-swcoeFfuPr .item {
    justify-content: center;
  }
  .cid-swcoeFfuPr .quote::after {
    left: 60px;
  }
}
.cid-swcoeFfuPr .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-swcoeFfuPr .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-swcoeFfuPr .text1 {
  color: #ffffff;
}
.cid-swcoeFfuPr .item-title {
  color: #ffffff;
}
.cid-swcoeFfuPr H5 {
  color: #ffffff;
}
.cid-swcoeFfuPr .theme {
  color: #ffffff;
}
.cid-swcoeFfuPr .copyright > p {
  color: #ffffff;
}
.cid-swcoeFfuPr .text2 {
  color: #ffffff;
}
.cid-swcoeFfuPr hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .5;
}
.cid-swhuxu5Afb .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-swhuxu5Afb .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-swhuxu5Afb .nav-item:focus,
.cid-swhuxu5Afb .nav-link:focus {
  outline: none;
}
.cid-swhuxu5Afb .text-white:hover,
.cid-swhuxu5Afb .text-white:active,
.cid-swhuxu5Afb .text-white:focus {
  color: white!important;
}
.cid-swhuxu5Afb .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #879a9f;
  background: none;
}
.cid-swhuxu5Afb .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-swhuxu5Afb .navbar.opened {
  transition: all .3s;
  background: #879a9f !important;
}
.cid-swhuxu5Afb .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-swhuxu5Afb .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-swhuxu5Afb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swhuxu5Afb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swhuxu5Afb .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-swhuxu5Afb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swhuxu5Afb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swhuxu5Afb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-swhuxu5Afb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swhuxu5Afb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-swhuxu5Afb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-swhuxu5Afb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swhuxu5Afb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swhuxu5Afb .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-swhuxu5Afb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swhuxu5Afb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swhuxu5Afb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-swhuxu5Afb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-swhuxu5Afb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swhuxu5Afb .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swhuxu5Afb .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-swhuxu5Afb .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-swhuxu5Afb .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-swhuxu5Afb .navbar.navbar-short {
  background: #879a9f !important;
  min-height: 60px;
}
.cid-swhuxu5Afb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-swhuxu5Afb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-swhuxu5Afb .section {
  position: relative;
  overflow: visible!important;
}
.cid-swhuxu5Afb .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-swhuxu5Afb .dropdown-item:hover {
  color: black!important;
}
.cid-swhuxu5Afb .dropdown-menu {
  background-color: white!important;
}
.cid-swhuxu5Afb .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-swhuxu5Afb .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-swhuxu5Afb .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-swhuxu5Afb .nav-item .nav-link {
    position: relative;
  }
}
.cid-swhuxu5Afb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-swhuxu5Afb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swhuxu5Afb .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-swhuxu5Afb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-swhuxu5Afb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-swhuxu5Afb .collapsed {
  flex-direction: row!important;
}
.cid-swhuxu5Afb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swhuxu5Afb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swhuxu5Afb .navbar-caption {
  font-weight: 600!important;
}
.cid-swhuxu5Afb .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swhuxu5Afb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swhuxu5Afb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swhuxu5Afb .dropdown-item.active,
.cid-swhuxu5Afb .dropdown-item:active {
  background-color: transparent;
}
.cid-swhuxu5Afb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swhuxu5Afb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swhuxu5Afb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swhuxu5Afb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #879a9f;
}
.cid-swhuxu5Afb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swhuxu5Afb ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-swhuxu5Afb .navbar-buttons {
  text-align: center;
}
.cid-swhuxu5Afb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-swhuxu5Afb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #879a9f;
}
.cid-swhuxu5Afb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-swhuxu5Afb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-swhuxu5Afb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-swhuxu5Afb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-swhuxu5Afb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swhuxu5Afb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-swhuxu5Afb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-swhuxu5Afb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swhuxu5Afb .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-swhuxu5Afb .nav-link {
  font-weight: 600!important;
}
.cid-swhuxu5Afb a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-swhuxu5Afb .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-swhuxu5Afb .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-swhuxu5Afb .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-swhuxu5Afb .navbar {
    height: 77px;
  }
  .cid-swhuxu5Afb .navbar.opened {
    height: auto;
  }
  .cid-swhuxu5Afb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-swhuxuJn3z {
  padding-top: 120px;
  padding-bottom: 45px;
  background: #635a51;
  background: linear-gradient(90deg, #635a51, #697477);
}
.cid-swhuxuJn3z .container-fluid {
  padding: 0 3rem;
}
.cid-swhuxuJn3z .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-swhuxuJn3z .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ff8a73, #ff8a73);
  display: inline-block;
}
.cid-swhuxuJn3z .title-wrap {
  padding-left: 0;
  padding-right: 0;
}
.cid-swhuxuJn3z .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-swhuxuJn3z .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-swhuxuJn3z .image-wrap img:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
.cid-swhuxuJn3z .content-section {
  padding: 3rem;
}
.cid-swhuxuJn3z .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-swhuxuJn3z .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #ffffff;
  padding: 0rem;
  z-index: 10;
  border-radius: 15px;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  .cid-swhuxuJn3z .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-swhuxuJn3z .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-swhuxuJn3z .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-swhuxuJn3z .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-swhuxuJn3z .underline,
.cid-swhuxuJn3z .mbr-title {
  color: #ffffff;
}
.cid-swhuxuJn3z .mbr-text {
  text-align: justify;
}
.cid-swhuxuJn3z .mbr-section-subtitle,
.cid-swhuxuJn3z .mbr-section-btn {
  text-align: center;
}
.cid-swhuxvj6oY {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #635a51;
}
.cid-swhuxvj6oY section {
  position: relative;
}
.cid-swhuxvj6oY .container {
  max-width: 1400px;
}
.cid-swhuxvj6oY .card-img2 span {
  padding-top: 6px;
}
.cid-swhuxvj6oY .soc-item a {
  padding-top: 5px;
}
.cid-swhuxvj6oY .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-swhuxvj6oY .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-swhuxvj6oY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-swhuxvj6oY svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-swhuxvj6oY #e2_shape {
  fill: #697477 !important;
}
.cid-swhuxvj6oY .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-swhuxvj6oY .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-swhuxvj6oY .card-img2 {
  width: 45px;
  height: 45px;
  background: #635a51;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-swhuxvj6oY .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-swhuxvj6oY .soc-item span {
  font-size: 1.4rem;
}
.cid-swhuxvj6oY .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-swhuxvj6oY .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-swhuxvj6oY .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-swhuxvj6oY .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-swhuxvj6oY .media-wrap {
  margin-bottom: 1rem;
}
.cid-swhuxvj6oY .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-swhuxvj6oY img {
  height: 7rem;
}
@media (max-width: 576px) {
  .cid-swhuxvj6oY .item {
    justify-content: center;
  }
  .cid-swhuxvj6oY .quote::after {
    left: 60px;
  }
}
.cid-swhuxvj6oY .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-swhuxvj6oY .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-swhuxvj6oY .text1 {
  color: #ffffff;
}
.cid-swhuxvj6oY .item-title {
  color: #ffffff;
}
.cid-swhuxvj6oY H5 {
  color: #ffffff;
}
.cid-swhuxvj6oY .theme {
  color: #ffffff;
}
.cid-swhuxvj6oY .copyright > p {
  color: #ffffff;
}
.cid-swhuxvj6oY .text2 {
  color: #ffffff;
}
.cid-swhuxvj6oY hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .5;
}
.cid-swhyYvnqlQ .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-swhyYvnqlQ .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-swhyYvnqlQ .nav-item:focus,
.cid-swhyYvnqlQ .nav-link:focus {
  outline: none;
}
.cid-swhyYvnqlQ .text-white:hover,
.cid-swhyYvnqlQ .text-white:active,
.cid-swhyYvnqlQ .text-white:focus {
  color: white!important;
}
.cid-swhyYvnqlQ .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #879a9f;
  background: none;
}
.cid-swhyYvnqlQ .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-swhyYvnqlQ .navbar.opened {
  transition: all .3s;
  background: #879a9f !important;
}
.cid-swhyYvnqlQ .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-swhyYvnqlQ .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-swhyYvnqlQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-swhyYvnqlQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-swhyYvnqlQ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-swhyYvnqlQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-swhyYvnqlQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-swhyYvnqlQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-swhyYvnqlQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-swhyYvnqlQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-swhyYvnqlQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-swhyYvnqlQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-swhyYvnqlQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-swhyYvnqlQ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-swhyYvnqlQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-swhyYvnqlQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-swhyYvnqlQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-swhyYvnqlQ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-swhyYvnqlQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-swhyYvnqlQ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-swhyYvnqlQ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-swhyYvnqlQ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-swhyYvnqlQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-swhyYvnqlQ .navbar.navbar-short {
  background: #879a9f !important;
  min-height: 60px;
}
.cid-swhyYvnqlQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-swhyYvnqlQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-swhyYvnqlQ .section {
  position: relative;
  overflow: visible!important;
}
.cid-swhyYvnqlQ .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-swhyYvnqlQ .dropdown-item:hover {
  color: black!important;
}
.cid-swhyYvnqlQ .dropdown-menu {
  background-color: white!important;
}
.cid-swhyYvnqlQ .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-swhyYvnqlQ .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-swhyYvnqlQ .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-swhyYvnqlQ .nav-item .nav-link {
    position: relative;
  }
}
.cid-swhyYvnqlQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-swhyYvnqlQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-swhyYvnqlQ .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-swhyYvnqlQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-swhyYvnqlQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-swhyYvnqlQ .collapsed {
  flex-direction: row!important;
}
.cid-swhyYvnqlQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-swhyYvnqlQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-swhyYvnqlQ .navbar-caption {
  font-weight: 600!important;
}
.cid-swhyYvnqlQ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-swhyYvnqlQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-swhyYvnqlQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-swhyYvnqlQ .dropdown-item.active,
.cid-swhyYvnqlQ .dropdown-item:active {
  background-color: transparent;
}
.cid-swhyYvnqlQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-swhyYvnqlQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-swhyYvnqlQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-swhyYvnqlQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #879a9f;
}
.cid-swhyYvnqlQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-swhyYvnqlQ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-swhyYvnqlQ .navbar-buttons {
  text-align: center;
}
.cid-swhyYvnqlQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-swhyYvnqlQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #879a9f;
}
.cid-swhyYvnqlQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-swhyYvnqlQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-swhyYvnqlQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-swhyYvnqlQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-swhyYvnqlQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swhyYvnqlQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-swhyYvnqlQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-swhyYvnqlQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-swhyYvnqlQ .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-swhyYvnqlQ .nav-link {
  font-weight: 600!important;
}
.cid-swhyYvnqlQ a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-swhyYvnqlQ .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-swhyYvnqlQ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-swhyYvnqlQ .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-swhyYvnqlQ .navbar {
    height: 77px;
  }
  .cid-swhyYvnqlQ .navbar.opened {
    height: auto;
  }
  .cid-swhyYvnqlQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-swhyYw2kIf {
  padding-top: 120px;
  padding-bottom: 45px;
  background: #635a51;
  background: linear-gradient(90deg, #635a51, #697477);
}
.cid-swhyYw2kIf .container-fluid {
  padding: 0 3rem;
}
.cid-swhyYw2kIf .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-swhyYw2kIf .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #ff8a73, #ff8a73);
  display: inline-block;
}
.cid-swhyYw2kIf .title-wrap {
  padding-left: 0;
  padding-right: 0;
}
.cid-swhyYw2kIf .image-wrap {
  overflow: hidden;
  width: 100%;
}
.cid-swhyYw2kIf .image-wrap img {
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.cid-swhyYw2kIf .image-wrap img:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
.cid-swhyYw2kIf .content-section {
  padding: 3rem;
}
.cid-swhyYw2kIf .btn {
  margin-top: 1rem;
  margin-left: 0rem;
  margin-right: 0rem;
}
.cid-swhyYw2kIf .card-wrapper {
  overflow: hidden;
  margin-top: 1.6rem;
  background-color: #ffffff;
  padding: 0rem;
  z-index: 10;
  border-radius: 15px;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  .cid-swhyYw2kIf .container-fluid {
    padding: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-swhyYw2kIf .container-fluid {
    padding: 0rem;
  }
}
@media (max-width: 439px) {
  .cid-swhyYw2kIf .card-wrapper {
    margin-bottom: 0rem;
    border-radius: 0px;
  }
  .cid-swhyYw2kIf .title-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.cid-swhyYw2kIf .underline,
.cid-swhyYw2kIf .mbr-title {
  color: #ffffff;
}
.cid-swhyYw2kIf .mbr-text {
  text-align: justify;
}
.cid-swhyYw2kIf .mbr-section-subtitle,
.cid-swhyYw2kIf .mbr-section-btn {
  text-align: center;
}
.cid-swhyYwuffE {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #635a51;
}
.cid-swhyYwuffE section {
  position: relative;
}
.cid-swhyYwuffE .container {
  max-width: 1400px;
}
.cid-swhyYwuffE .card-img2 span {
  padding-top: 6px;
}
.cid-swhyYwuffE .soc-item a {
  padding-top: 5px;
}
.cid-swhyYwuffE .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-swhyYwuffE .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-swhyYwuffE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-swhyYwuffE svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-swhyYwuffE #e2_shape {
  fill: #697477 !important;
}
.cid-swhyYwuffE .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-swhyYwuffE .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-swhyYwuffE .card-img2 {
  width: 45px;
  height: 45px;
  background: #635a51;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-swhyYwuffE .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-swhyYwuffE .soc-item span {
  font-size: 1.4rem;
}
.cid-swhyYwuffE .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-swhyYwuffE .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-swhyYwuffE .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-swhyYwuffE .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-swhyYwuffE .media-wrap {
  margin-bottom: 1rem;
}
.cid-swhyYwuffE .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-swhyYwuffE img {
  height: 7rem;
}
@media (max-width: 576px) {
  .cid-swhyYwuffE .item {
    justify-content: center;
  }
  .cid-swhyYwuffE .quote::after {
    left: 60px;
  }
}
.cid-swhyYwuffE .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-swhyYwuffE .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-swhyYwuffE .text1 {
  color: #ffffff;
}
.cid-swhyYwuffE .item-title {
  color: #ffffff;
}
.cid-swhyYwuffE H5 {
  color: #ffffff;
}
.cid-swhyYwuffE .theme {
  color: #ffffff;
}
.cid-swhyYwuffE .copyright > p {
  color: #ffffff;
}
.cid-swhyYwuffE .text2 {
  color: #ffffff;
}
.cid-swhyYwuffE hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .5;
}
.cid-sqaa8zBxQ9 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sqaa8zBxQ9 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-sqaa8zBxQ9 .nav-item:focus,
.cid-sqaa8zBxQ9 .nav-link:focus {
  outline: none;
}
.cid-sqaa8zBxQ9 .text-white:hover,
.cid-sqaa8zBxQ9 .text-white:active,
.cid-sqaa8zBxQ9 .text-white:focus {
  color: white!important;
}
.cid-sqaa8zBxQ9 .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #879a9f;
  background: none;
}
.cid-sqaa8zBxQ9 .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-sqaa8zBxQ9 .navbar.opened {
  transition: all .3s;
  background: #879a9f !important;
}
.cid-sqaa8zBxQ9 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sqaa8zBxQ9 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-sqaa8zBxQ9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sqaa8zBxQ9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sqaa8zBxQ9 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sqaa8zBxQ9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sqaa8zBxQ9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sqaa8zBxQ9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sqaa8zBxQ9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sqaa8zBxQ9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sqaa8zBxQ9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sqaa8zBxQ9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sqaa8zBxQ9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sqaa8zBxQ9 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sqaa8zBxQ9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sqaa8zBxQ9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sqaa8zBxQ9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sqaa8zBxQ9 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sqaa8zBxQ9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sqaa8zBxQ9 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sqaa8zBxQ9 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sqaa8zBxQ9 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sqaa8zBxQ9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sqaa8zBxQ9 .navbar.navbar-short {
  background: #879a9f !important;
  min-height: 60px;
}
.cid-sqaa8zBxQ9 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sqaa8zBxQ9 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sqaa8zBxQ9 .section {
  position: relative;
  overflow: visible!important;
}
.cid-sqaa8zBxQ9 .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-sqaa8zBxQ9 .dropdown-item:hover {
  color: black!important;
}
.cid-sqaa8zBxQ9 .dropdown-menu {
  background-color: white!important;
}
.cid-sqaa8zBxQ9 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-sqaa8zBxQ9 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sqaa8zBxQ9 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-sqaa8zBxQ9 .nav-item .nav-link {
    position: relative;
  }
}
.cid-sqaa8zBxQ9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqaa8zBxQ9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sqaa8zBxQ9 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sqaa8zBxQ9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sqaa8zBxQ9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sqaa8zBxQ9 .collapsed {
  flex-direction: row!important;
}
.cid-sqaa8zBxQ9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sqaa8zBxQ9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sqaa8zBxQ9 .navbar-caption {
  font-weight: 600!important;
}
.cid-sqaa8zBxQ9 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sqaa8zBxQ9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sqaa8zBxQ9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sqaa8zBxQ9 .dropdown-item.active,
.cid-sqaa8zBxQ9 .dropdown-item:active {
  background-color: transparent;
}
.cid-sqaa8zBxQ9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sqaa8zBxQ9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sqaa8zBxQ9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sqaa8zBxQ9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #879a9f;
}
.cid-sqaa8zBxQ9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sqaa8zBxQ9 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sqaa8zBxQ9 .navbar-buttons {
  text-align: center;
}
.cid-sqaa8zBxQ9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sqaa8zBxQ9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #879a9f;
}
.cid-sqaa8zBxQ9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sqaa8zBxQ9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sqaa8zBxQ9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sqaa8zBxQ9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sqaa8zBxQ9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqaa8zBxQ9 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sqaa8zBxQ9 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sqaa8zBxQ9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sqaa8zBxQ9 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sqaa8zBxQ9 .nav-link {
  font-weight: 600!important;
}
.cid-sqaa8zBxQ9 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sqaa8zBxQ9 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sqaa8zBxQ9 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sqaa8zBxQ9 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sqaa8zBxQ9 .navbar {
    height: 77px;
  }
  .cid-sqaa8zBxQ9 .navbar.opened {
    height: auto;
  }
  .cid-sqaa8zBxQ9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sDaZciLNRb {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("https://lesponne.fr/assets/images/page-blog/lesponne-neige.jpg");
}
.cid-sDaZciLNRb .timeline-element {
  position: relative;
}
.cid-sDaZciLNRb .timelines-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
.cid-sDaZciLNRb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sDaZciLNRb .mbr-section-title,
.cid-sDaZciLNRb .mbr-section-subtitle,
.cid-sDaZciLNRb .timeline-date {
  text-align: center;
}
.cid-sDaZciLNRb .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-sDaZciLNRb .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-sDaZciLNRb .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-sDaZciLNRb .row:after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-sDaZciLNRb .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sDaZciLNRb .row:after {
    height: calc(100% - 20px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sDaZciLNRb .timeline-date-wrapper,
  .cid-sDaZciLNRb .timeline-text-wrapper,
  .cid-sDaZciLNRb .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sDaZciLNRb .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-sDaZciLNRb .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sDaZciLNRb .timeline-date-wrapper,
  .cid-sDaZciLNRb .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sDaZciLNRb .timeline-date-wrapper,
  .cid-sDaZciLNRb .timeline-text-wrapper,
  .cid-sDaZciLNRb .image-wrapper {
    padding: 2rem;
  }
}
.cid-sDaZciLNRb .mbr-timeline-date {
  color: #ffffff;
}
.cid-sDaZciLNRb .mbr-text {
  color: #ffffff;
  text-align: justify;
}
.cid-sDaZciLNRb .mbr-timeline-title {
  color: #ffffff;
}
.cid-sDaZciLNRb .mbr-section-title {
  color: #ffffff;
}
.cid-sDaZciLNRb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-swhIWvIYfr {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #635a51;
}
.cid-swhIWvIYfr section {
  position: relative;
}
.cid-swhIWvIYfr .container {
  max-width: 1400px;
}
.cid-swhIWvIYfr .card-img2 span {
  padding-top: 6px;
}
.cid-swhIWvIYfr .soc-item a {
  padding-top: 5px;
}
.cid-swhIWvIYfr .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-swhIWvIYfr .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-swhIWvIYfr .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-swhIWvIYfr svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-swhIWvIYfr #e2_shape {
  fill: #697477 !important;
}
.cid-swhIWvIYfr .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-swhIWvIYfr .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-swhIWvIYfr .card-img2 {
  width: 45px;
  height: 45px;
  background: #635a51;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-swhIWvIYfr .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-swhIWvIYfr .soc-item span {
  font-size: 1.4rem;
}
.cid-swhIWvIYfr .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-swhIWvIYfr .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-swhIWvIYfr .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-swhIWvIYfr .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-swhIWvIYfr .media-wrap {
  margin-bottom: 1rem;
}
.cid-swhIWvIYfr .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-swhIWvIYfr img {
  height: 7rem;
}
@media (max-width: 576px) {
  .cid-swhIWvIYfr .item {
    justify-content: center;
  }
  .cid-swhIWvIYfr .quote::after {
    left: 60px;
  }
}
.cid-swhIWvIYfr .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-swhIWvIYfr .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-swhIWvIYfr .text1 {
  color: #ffffff;
}
.cid-swhIWvIYfr .item-title {
  color: #ffffff;
}
.cid-swhIWvIYfr H5 {
  color: #ffffff;
}
.cid-swhIWvIYfr .theme {
  color: #ffffff;
}
.cid-swhIWvIYfr .copyright > p {
  color: #ffffff;
}
.cid-swhIWvIYfr .text2 {
  color: #ffffff;
}
.cid-swhIWvIYfr hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .5;
}
.cid-tmDCm4udCQ.popup-builder {
  background-color: #ffffff;
}
.cid-tmDCm4udCQ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tmDCm4udCQ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tmDCm4udCQ .modal-content,
.cid-tmDCm4udCQ .modal-dialog {
  height: auto;
}
.cid-tmDCm4udCQ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tmDCm4udCQ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tmDCm4udCQ .form-wrapper .mbr-form .form-group,
  .cid-tmDCm4udCQ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tmDCm4udCQ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tmDCm4udCQ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tmDCm4udCQ .mbr-text {
  text-align: center;
  color: #ffffff;
}
.cid-tmDCm4udCQ .pt-0 {
  padding-top: 0 !important;
}
.cid-tmDCm4udCQ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tmDCm4udCQ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tmDCm4udCQ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tmDCm4udCQ .modal-open {
  overflow: hidden;
}
.cid-tmDCm4udCQ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tmDCm4udCQ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tmDCm4udCQ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tmDCm4udCQ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tmDCm4udCQ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tmDCm4udCQ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tmDCm4udCQ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tmDCm4udCQ .modal-content {
  background: #635a51;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tmDCm4udCQ .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tmDCm4udCQ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tmDCm4udCQ .modal-backdrop.fade {
  opacity: 0;
}
.cid-tmDCm4udCQ .modal-backdrop.show {
  opacity: .5;
}
.cid-tmDCm4udCQ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tmDCm4udCQ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tmDCm4udCQ .modal-header {
    padding: 1rem;
  }
}
.cid-tmDCm4udCQ .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
  background-color: #635a51;
}
.cid-tmDCm4udCQ .modal-header .close svg {
  fill: #f4f8fa;
}
.cid-tmDCm4udCQ .modal-header .close:hover {
  opacity: 1;
}
.cid-tmDCm4udCQ .modal-header .close:focus {
  outline: none;
}
.cid-tmDCm4udCQ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #ffffff;
}
.cid-tmDCm4udCQ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tmDCm4udCQ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tmDCm4udCQ .modal-body {
    padding: 1rem;
  }
}
.cid-tmDCm4udCQ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tmDCm4udCQ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tmDCm4udCQ .modal-footer {
    padding: 1rem;
  }
}
.cid-tmDCm4udCQ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tmDCm4udCQ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tmDCm4udCQ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tmDCm4udCQ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tmDCm4udCQ .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tmDCm4udCQ .modal-lg,
  .cid-tmDCm4udCQ .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tmDCm4udCQ .modal-xl {
    max-width: 1140px;
  }
}
.cid-tmDCm4udCQ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tmDCm4udCQ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tmDCm4udCQ .form-group {
  margin-bottom: 1rem;
}
.cid-tmDCm4udCQ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tmDCm4udCQ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tmDCm4udCQ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tmDCm4udCQ .mbr-section-btn {
  margin: 0;
}
.cid-tmDCm4udCQ .mbr-section-btn .btn {
  margin: 0;
}
.cid-sCkj5HRhjo .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sCkj5HRhjo .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-sCkj5HRhjo .nav-item:focus,
.cid-sCkj5HRhjo .nav-link:focus {
  outline: none;
}
.cid-sCkj5HRhjo .text-white:hover,
.cid-sCkj5HRhjo .text-white:active,
.cid-sCkj5HRhjo .text-white:focus {
  color: white!important;
}
.cid-sCkj5HRhjo .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #879a9f;
  background: none;
}
.cid-sCkj5HRhjo .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-sCkj5HRhjo .navbar.opened {
  transition: all .3s;
  background: #879a9f !important;
}
.cid-sCkj5HRhjo .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sCkj5HRhjo .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-sCkj5HRhjo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sCkj5HRhjo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sCkj5HRhjo .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sCkj5HRhjo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sCkj5HRhjo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sCkj5HRhjo .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sCkj5HRhjo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sCkj5HRhjo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sCkj5HRhjo .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sCkj5HRhjo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sCkj5HRhjo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sCkj5HRhjo .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sCkj5HRhjo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sCkj5HRhjo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sCkj5HRhjo .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sCkj5HRhjo .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sCkj5HRhjo .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sCkj5HRhjo .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sCkj5HRhjo .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sCkj5HRhjo .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sCkj5HRhjo .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sCkj5HRhjo .navbar.navbar-short {
  background: #879a9f !important;
  min-height: 60px;
}
.cid-sCkj5HRhjo .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sCkj5HRhjo .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sCkj5HRhjo .section {
  position: relative;
  overflow: visible!important;
}
.cid-sCkj5HRhjo .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-sCkj5HRhjo .dropdown-item:hover {
  color: black!important;
}
.cid-sCkj5HRhjo .dropdown-menu {
  background-color: white!important;
}
.cid-sCkj5HRhjo .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-sCkj5HRhjo .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sCkj5HRhjo .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-sCkj5HRhjo .nav-item .nav-link {
    position: relative;
  }
}
.cid-sCkj5HRhjo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sCkj5HRhjo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sCkj5HRhjo .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sCkj5HRhjo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sCkj5HRhjo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sCkj5HRhjo .collapsed {
  flex-direction: row!important;
}
.cid-sCkj5HRhjo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sCkj5HRhjo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sCkj5HRhjo .navbar-caption {
  font-weight: 600!important;
}
.cid-sCkj5HRhjo .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sCkj5HRhjo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sCkj5HRhjo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sCkj5HRhjo .dropdown-item.active,
.cid-sCkj5HRhjo .dropdown-item:active {
  background-color: transparent;
}
.cid-sCkj5HRhjo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sCkj5HRhjo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sCkj5HRhjo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sCkj5HRhjo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #879a9f;
}
.cid-sCkj5HRhjo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sCkj5HRhjo ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sCkj5HRhjo .navbar-buttons {
  text-align: center;
}
.cid-sCkj5HRhjo button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sCkj5HRhjo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #879a9f;
}
.cid-sCkj5HRhjo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sCkj5HRhjo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sCkj5HRhjo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sCkj5HRhjo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sCkj5HRhjo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCkj5HRhjo nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sCkj5HRhjo nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sCkj5HRhjo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sCkj5HRhjo .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sCkj5HRhjo .nav-link {
  font-weight: 600!important;
}
.cid-sCkj5HRhjo a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sCkj5HRhjo .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sCkj5HRhjo .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sCkj5HRhjo .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sCkj5HRhjo .navbar {
    height: 77px;
  }
  .cid-sCkj5HRhjo .navbar.opened {
    height: auto;
  }
  .cid-sCkj5HRhjo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sCkgPGix1l {
  padding-top: 150px;
  padding-bottom: 75px;
  background-image: url("https://lesponne.fr/assets/images/page-construction/la-lit-lesponne.jpg");
}
.cid-sCkgPGix1l .mbr-overlay {
  background-color: #232323;
  opacity: 0.4;
}
.cid-sCkgPGix1l .form-control,
.cid-sCkgPGix1l .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #ffffff;
  color: #465052;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sCkgPGix1l .form-control::-webkit-input-placeholder,
.cid-sCkgPGix1l .field-input::-webkit-input-placeholder,
.cid-sCkgPGix1l .form-control::-webkit-input-placeholder,
.cid-sCkgPGix1l .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-sCkgPGix1l .form-control:-moz-placeholder,
.cid-sCkgPGix1l .field-input:-moz-placeholder,
.cid-sCkgPGix1l .form-control:-moz-placeholder,
.cid-sCkgPGix1l .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-sCkgPGix1l .form-control:hover,
.cid-sCkgPGix1l .field-input:hover,
.cid-sCkgPGix1l .form-control:focus,
.cid-sCkgPGix1l .field-input:focus {
  background-color: #efefef;
  border-color: #ffffff;
  color: #465052;
  box-shadow: none;
  outline: none;
}
.cid-sCkgPGix1l .form-control:hover::-webkit-input-placeholder,
.cid-sCkgPGix1l .field-input:hover::-webkit-input-placeholder,
.cid-sCkgPGix1l .form-control:focus::-webkit-input-placeholder,
.cid-sCkgPGix1l .field-input:focus::-webkit-input-placeholder,
.cid-sCkgPGix1l .form-control:hover::-webkit-input-placeholder,
.cid-sCkgPGix1l .field-input:hover::-webkit-input-placeholder,
.cid-sCkgPGix1l .form-control:focus::-webkit-input-placeholder,
.cid-sCkgPGix1l .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-sCkgPGix1l .form-control:hover:-moz-placeholder,
.cid-sCkgPGix1l .field-input:hover:-moz-placeholder,
.cid-sCkgPGix1l .form-control:focus:-moz-placeholder,
.cid-sCkgPGix1l .field-input:focus:-moz-placeholder,
.cid-sCkgPGix1l .form-control:hover:-moz-placeholder,
.cid-sCkgPGix1l .field-input:hover:-moz-placeholder,
.cid-sCkgPGix1l .form-control:focus:-moz-placeholder,
.cid-sCkgPGix1l .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-sCkgPGix1l .jq-number__spin:hover,
.cid-sCkgPGix1l .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sCkgPGix1l .jq-number__spin {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #465052;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sCkgPGix1l .jq-selectbox li,
.cid-sCkgPGix1l .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sCkgPGix1l .jq-selectbox li:hover,
.cid-sCkgPGix1l .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-sCkgPGix1l .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sCkgPGix1l .jq-number__spin.minus:hover:after,
.cid-sCkgPGix1l .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sCkgPGix1l .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sCkgPGix1l .jq-number__spin.minus:after,
.cid-sCkgPGix1l .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-sCkgPGix1l input::-webkit-clear-button {
  display: none;
}
.cid-sCkgPGix1l input::-webkit-inner-spin-button {
  display: none;
}
.cid-sCkgPGix1l input::-webkit-outer-spin-button {
  display: none;
}
.cid-sCkgPGix1l input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sCkgPGix1l H4 {
  text-align: center;
  color: #ffffff;
}
.cid-sCkgPGix1l LABEL {
  color: #ffffff;
}
.cid-sCkgPGix1l .alert-success {
  background-color: #0f7599;
}
.cid-sCkgPGix1l .alert {
  color: #ffffff;
  border-radius: 7px;
  border: 0;
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  position: relative;
  text-align: center;
}
.cid-sCkgPGix1l H1 {
  color: #ffffff;
  text-align: center;
}
.cid-swhJ30NOX8 {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #635a51;
}
.cid-swhJ30NOX8 section {
  position: relative;
}
.cid-swhJ30NOX8 .container {
  max-width: 1400px;
}
.cid-swhJ30NOX8 .card-img2 span {
  padding-top: 6px;
}
.cid-swhJ30NOX8 .soc-item a {
  padding-top: 5px;
}
.cid-swhJ30NOX8 .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-swhJ30NOX8 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-swhJ30NOX8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-swhJ30NOX8 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-swhJ30NOX8 #e2_shape {
  fill: #697477 !important;
}
.cid-swhJ30NOX8 .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-swhJ30NOX8 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-swhJ30NOX8 .card-img2 {
  width: 45px;
  height: 45px;
  background: #635a51;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-swhJ30NOX8 .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-swhJ30NOX8 .soc-item span {
  font-size: 1.4rem;
}
.cid-swhJ30NOX8 .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-swhJ30NOX8 .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-swhJ30NOX8 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-swhJ30NOX8 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-swhJ30NOX8 .media-wrap {
  margin-bottom: 1rem;
}
.cid-swhJ30NOX8 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-swhJ30NOX8 img {
  height: 7rem;
}
@media (max-width: 576px) {
  .cid-swhJ30NOX8 .item {
    justify-content: center;
  }
  .cid-swhJ30NOX8 .quote::after {
    left: 60px;
  }
}
.cid-swhJ30NOX8 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-swhJ30NOX8 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-swhJ30NOX8 .text1 {
  color: #ffffff;
}
.cid-swhJ30NOX8 .item-title {
  color: #ffffff;
}
.cid-swhJ30NOX8 H5 {
  color: #ffffff;
}
.cid-swhJ30NOX8 .theme {
  color: #ffffff;
}
.cid-swhJ30NOX8 .copyright > p {
  color: #ffffff;
}
.cid-swhJ30NOX8 .text2 {
  color: #ffffff;
}
.cid-swhJ30NOX8 hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .5;
}
.cid-sEXUSUMNPW .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sEXUSUMNPW .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-sEXUSUMNPW .nav-item:focus,
.cid-sEXUSUMNPW .nav-link:focus {
  outline: none;
}
.cid-sEXUSUMNPW .text-white:hover,
.cid-sEXUSUMNPW .text-white:active,
.cid-sEXUSUMNPW .text-white:focus {
  color: white!important;
}
.cid-sEXUSUMNPW .navbar {
  max-width: 1000px;
  margin: auto;
  margin-top: -10px;
  opacity: 0.9;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  min-height: 77px;
  transition: all .3s;
  background: #879a9f;
  background: none;
}
.cid-sEXUSUMNPW .navbar:hover {
  opacity: 1;
  margin-top: 0;
}
.cid-sEXUSUMNPW .navbar.opened {
  transition: all .3s;
  background: #879a9f !important;
}
.cid-sEXUSUMNPW .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-sEXUSUMNPW .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-sEXUSUMNPW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sEXUSUMNPW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sEXUSUMNPW .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sEXUSUMNPW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sEXUSUMNPW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sEXUSUMNPW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sEXUSUMNPW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sEXUSUMNPW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sEXUSUMNPW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-sEXUSUMNPW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sEXUSUMNPW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sEXUSUMNPW .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sEXUSUMNPW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sEXUSUMNPW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sEXUSUMNPW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sEXUSUMNPW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sEXUSUMNPW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sEXUSUMNPW .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sEXUSUMNPW .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sEXUSUMNPW .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sEXUSUMNPW .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-sEXUSUMNPW .navbar.navbar-short {
  background: #879a9f !important;
  min-height: 60px;
}
.cid-sEXUSUMNPW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sEXUSUMNPW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sEXUSUMNPW .section {
  position: relative;
  overflow: visible!important;
}
.cid-sEXUSUMNPW .dropdown-item {
  font-weight: 400!important;
  color: black!important;
}
.cid-sEXUSUMNPW .dropdown-item:hover {
  color: black!important;
}
.cid-sEXUSUMNPW .dropdown-menu {
  background-color: white!important;
}
.cid-sEXUSUMNPW .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-sEXUSUMNPW .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #5580ff;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-sEXUSUMNPW .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-sEXUSUMNPW .nav-item .nav-link {
    position: relative;
  }
}
.cid-sEXUSUMNPW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sEXUSUMNPW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sEXUSUMNPW .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-sEXUSUMNPW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sEXUSUMNPW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sEXUSUMNPW .collapsed {
  flex-direction: row!important;
}
.cid-sEXUSUMNPW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sEXUSUMNPW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sEXUSUMNPW .navbar-caption {
  font-weight: 600!important;
}
.cid-sEXUSUMNPW .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sEXUSUMNPW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sEXUSUMNPW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sEXUSUMNPW .dropdown-item.active,
.cid-sEXUSUMNPW .dropdown-item:active {
  background-color: transparent;
}
.cid-sEXUSUMNPW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sEXUSUMNPW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sEXUSUMNPW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sEXUSUMNPW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #879a9f;
}
.cid-sEXUSUMNPW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sEXUSUMNPW ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sEXUSUMNPW .navbar-buttons {
  text-align: center;
}
.cid-sEXUSUMNPW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sEXUSUMNPW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #879a9f;
}
.cid-sEXUSUMNPW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sEXUSUMNPW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sEXUSUMNPW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sEXUSUMNPW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sEXUSUMNPW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sEXUSUMNPW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sEXUSUMNPW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sEXUSUMNPW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sEXUSUMNPW .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-sEXUSUMNPW .nav-link {
  font-weight: 600!important;
}
.cid-sEXUSUMNPW a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sEXUSUMNPW .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sEXUSUMNPW .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-sEXUSUMNPW .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sEXUSUMNPW .navbar {
    height: 77px;
  }
  .cid-sEXUSUMNPW .navbar.opened {
    height: auto;
  }
  .cid-sEXUSUMNPW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sEYcdoiL6W {
  padding-top: 195px;
  padding-bottom: 90px;
  background-image: url("https://lesponne.fr/assets/images/photos-anciennes//chiroulet.jpg");
  position: relative;
  overflow: hidden;
}
.cid-sEYcdoiL6W .mbr-text {
  color: #ffffff;
}
.cid-sEYcdoiL6W .text-info:hover {
  color: inherit!important;
}
.cid-sEYcdoiL6W .ico2 {
  color: #ffbe9d !important;
  transition: all 0.6s;
}
.cid-sEYcdoiL6W .card-box {
  padding: 0rem 1rem;
}
.cid-sEYcdoiL6W .ico1 {
  font-size: 4rem !important;
}
.cid-sEYcdoiL6W h3,
.cid-sEYcdoiL6W h4 {
  padding: 0;
  margin: 0;
}
.cid-sEYcdoiL6W .card-title,
.cid-sEYcdoiL6W .card-img {
  color: #57468b;
}
.cid-sEYcdoiL6W .card-title {
  color: #ffffff;
}
.cid-sEYcdoiL6W H3 {
  color: #ffffff;
}
.cid-sEYcdoiL6W H1 {
  color: #ffffff;
}
.cid-sEYcdoiL6W h3 {
  width: fit-content;
  position: relative;
  margin: auto;
  margin-bottom: 0.4rem;
  letter-spacing: 2px;
}
.cid-sEYcdoiL6W h3:before {
  position: absolute;
  content: '';
  left: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sEYcdoiL6W h3:after {
  position: absolute;
  content: '';
  right: -60px;
  top: 0;
  margin: auto;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: currentColor;
}
.cid-sEYcdoiL6W .mbr-text,
.cid-sEYcdoiL6W .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-sEYcdoiL6W H2 {
  color: #ffffff;
}
.cid-sEYcdoiL6W svg {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-sEYcdoiL6W #e2_shape {
  fill: #5b686b !important;
}
.cid-sEYcdoiL6W img {
  width: 80%;
  border-radius: 10px;
  margin: auto;
}
@media (max-width: 576px) {
  .cid-sEYcdoiL6W img {
    width: 90%!important;
  }
}
.cid-sEXVzL8yq5 {
  padding-top: 135px;
  padding-bottom: 60px;
  background-color: #5b686b;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sEXVzL8yq5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sEXVzL8yq5 .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-sEXVzL8yq5 .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-sEXVzL8yq5 .btn-primary-outline:active {
  color: gray;
}
.cid-sEXVzL8yq5 .btn-primary-outline:hover {
  color: white;
}
.cid-sEXVzL8yq5 .mbr-gallery-title:before {
  border-radius: 0px 0px 0px 0px;
}
.cid-sEXVzL8yq5 div {
  overflow: hidden;
}
.cid-sEXVzL8yq5 li.active .btn-primary-outline {
  color: white;
}
.cid-sEXVzL8yq5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sEXVzL8yq5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sEXVzL8yq5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sEXVzL8yq5 .mbr-gallery-item {
  overflow: hidden;
}
.cid-sEXVzL8yq5 .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 0px;
}
.cid-sEXVzL8yq5 .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-sEXVzL8yq5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 0px;
  width: 100%;
  height: 100%;
  background: #b2ccd2;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #b2ccd2, #697477) !important;
}
.cid-sEXVzL8yq5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sEXVzL8yq5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sEXVzL8yq5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sEXVzL8yq5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #b2ccd2 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #b2ccd2, #697477) !important;
}
.cid-sFCRZBQy0A {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #5b686b;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sFCRZBQy0A .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sFCRZBQy0A .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-sFCRZBQy0A .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-sFCRZBQy0A .btn-primary-outline:active {
  color: gray;
}
.cid-sFCRZBQy0A .btn-primary-outline:hover {
  color: white;
}
.cid-sFCRZBQy0A .mbr-gallery-title:before {
  border-radius: 0px 0px 0px 0px;
}
.cid-sFCRZBQy0A div {
  overflow: hidden;
}
.cid-sFCRZBQy0A li.active .btn-primary-outline {
  color: white;
}
.cid-sFCRZBQy0A .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sFCRZBQy0A .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sFCRZBQy0A .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sFCRZBQy0A .mbr-gallery-item {
  overflow: hidden;
}
.cid-sFCRZBQy0A .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 0px;
}
.cid-sFCRZBQy0A .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-sFCRZBQy0A .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 0px;
  width: 100%;
  height: 100%;
  background: #5b686b;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #5b686b, #232e3c) !important;
}
.cid-sFCRZBQy0A .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sFCRZBQy0A .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-sFCRZBQy0A .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sFCRZBQy0A .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #5b686b !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #5b686b, #232e3c) !important;
}
.cid-sF3o2Conej {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #5b686b;
}
.cid-sF3o2Conej H1 {
  color: #ffffff;
}
.cid-sF3o2Conej .mbr-text,
.cid-sF3o2Conej .mbr-section-btn {
  color: #ffffff;
}
.cid-sF3o2Conej H3 {
  color: #716c80;
}
.cid-sEXUSVyVWo {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #635a51;
}
.cid-sEXUSVyVWo section {
  position: relative;
}
.cid-sEXUSVyVWo .container {
  max-width: 1400px;
}
.cid-sEXUSVyVWo .card-img2 span {
  padding-top: 6px;
}
.cid-sEXUSVyVWo .soc-item a {
  padding-top: 5px;
}
.cid-sEXUSVyVWo .btn {
  padding: 0.4rem 0.6rem;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-sEXUSVyVWo .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
@media (max-width: 992px) {
  .cid-sEXUSVyVWo .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sEXUSVyVWo svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sEXUSVyVWo #e2_shape {
  fill: #5b686b !important;
}
.cid-sEXUSVyVWo .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-sEXUSVyVWo .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sEXUSVyVWo .card-img2 {
  width: 45px;
  height: 45px;
  background: #635a51;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sEXUSVyVWo .soc-item {
  width: 45px;
  height: 45px;
  background: #ffffff;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sEXUSVyVWo .soc-item span {
  font-size: 1.4rem;
}
.cid-sEXUSVyVWo .soc-item:hover span {
  color: #ff8a73 !important;
}
.cid-sEXUSVyVWo .tips {
  height: 82px;
  width: 82px;
  border-radius: 3px;
  margin: 3px;
}
.cid-sEXUSVyVWo .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sEXUSVyVWo .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sEXUSVyVWo .media-wrap {
  margin-bottom: 1rem;
}
.cid-sEXUSVyVWo .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sEXUSVyVWo img {
  height: 7rem;
}
@media (max-width: 576px) {
  .cid-sEXUSVyVWo .item {
    justify-content: center;
  }
  .cid-sEXUSVyVWo .quote::after {
    left: 60px;
  }
}
.cid-sEXUSVyVWo .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sEXUSVyVWo .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sEXUSVyVWo .text1 {
  color: #ffffff;
}
.cid-sEXUSVyVWo .item-title {
  color: #ffffff;
}
.cid-sEXUSVyVWo H5 {
  color: #ffffff;
}
.cid-sEXUSVyVWo .theme {
  color: #ffffff;
}
.cid-sEXUSVyVWo .copyright > p {
  color: #ffffff;
}
.cid-sEXUSVyVWo .text2 {
  color: #ffffff;
}
.cid-sEXUSVyVWo hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .5;
}
