.btn {
  border-width: 2px;
}
body {
  font-family: Schibsted Grotesk;
}
.display-1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.625rem;
}
.display-2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.71875rem;
}
.display-5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 3.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.15rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.225rem + (4.5 - 2.225) * ((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.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    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-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #f35f31 !important;
}
.bg-success {
  background-color: #bdcdc6 !important;
}
.bg-info {
  background-color: #e7d8d6 !important;
}
.bg-warning {
  background-color: #c08598 !important;
}
.bg-danger {
  background-color: #33363b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f35f31 !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #c2370b !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #c2370b !important;
  border-color: #c2370b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #fffbfa !important;
  border: none  !important;
  color: #fa3200 !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ffb6a3 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fa3200 !important;
  background-color: #ffb6a3 !important;
  border-color: #ffb6a3 !important;
}
.btn-info,
.btn-info:active {
  background-color: #e7d8d6 !important;
  border: none  !important;
  color: #784c46 !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #c7a49f !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #784c46 !important;
  background-color: #c7a49f !important;
  border-color: #c7a49f !important;
}
.btn-success,
.btn-success:active {
  background-color: #bdcdc6 !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #8ca89b !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #8ca89b !important;
  border-color: #8ca89b !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #c08598 !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #9d516a !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9d516a !important;
  border-color: #9d516a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #33363b !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0b0b0c !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0b0b0c !important;
  border-color: #0b0b0c !important;
}
.btn-white,
.btn-white:active {
  background-color: #efefef !important;
  border: none  !important;
  color: #707070 !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !important;
  background-color: #c4c4c4 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #707070 !important;
  background-color: #c4c4c4 !important;
  border-color: #c4c4c4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #010101 !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #f35f31;
  color: #f35f31;
  border-radius: 0 !important;
}
.btn-primary-outline .mbr-iconfont,
.btn-primary-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #c2370b !important;
  background-color: transparent!important;
  border-color: #c2370b !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f35f31 !important;
  border-color: #f35f31 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #fffbfa;
  color: #fffbfa;
  border-radius: 0 !important;
}
.btn-secondary-outline .mbr-iconfont,
.btn-secondary-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffb6a3 !important;
  background-color: transparent!important;
  border-color: #ffb6a3 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #fa3200 !important;
  background-color: #fffbfa !important;
  border-color: #fffbfa !important;
}
.btn-info-outline,
.btn-info-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #e7d8d6;
  color: #e7d8d6;
  border-radius: 0 !important;
}
.btn-info-outline .mbr-iconfont,
.btn-info-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #c7a49f !important;
  background-color: transparent!important;
  border-color: #c7a49f !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #784c46 !important;
  background-color: #e7d8d6 !important;
  border-color: #e7d8d6 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #bdcdc6;
  color: #bdcdc6;
  border-radius: 0 !important;
}
.btn-success-outline .mbr-iconfont,
.btn-success-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #8ca89b !important;
  background-color: transparent!important;
  border-color: #8ca89b !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #bdcdc6 !important;
  border-color: #bdcdc6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #c08598;
  color: #c08598;
  border-radius: 0 !important;
}
.btn-warning-outline .mbr-iconfont,
.btn-warning-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #9d516a !important;
  background-color: transparent!important;
  border-color: #9d516a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c08598 !important;
  border-color: #c08598 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #33363b;
  color: #33363b;
  border-radius: 0 !important;
}
.btn-danger-outline .mbr-iconfont,
.btn-danger-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #0b0b0c !important;
  background-color: transparent!important;
  border-color: #0b0b0c !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #33363b !important;
  border-color: #33363b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #010101;
  color: #010101;
  border-radius: 0 !important;
}
.btn-black-outline .mbr-iconfont,
.btn-black-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #010101 !important;
  border-color: #010101 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #efefef;
  color: #efefef;
  border-radius: 0 !important;
}
.btn-white-outline .mbr-iconfont,
.btn-white-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #c4c4c4 !important;
  background-color: transparent!important;
  border-color: #c4c4c4 !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.text-primary {
  color: #f35f31 !important;
}
.text-secondary {
  color: #fffbfa !important;
}
.text-success {
  color: #bdcdc6 !important;
}
.text-info {
  color: #e7d8d6 !important;
}
.text-warning {
  color: #c08598 !important;
}
.text-danger {
  color: #33363b !important;
}
.text-white {
  color: #FFFFFF !important;
}
.text-black {
  color: #24262b !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #b4330a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ffa994 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #83a194 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #c19b96 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #934c63 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #040404 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #bcbcbc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #f35f31;
}
.nav-tabs .nav-link:not(.active) {
  color: #24262b;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #e7d8d6;
}
.alert-warning {
  background-color: #c08598;
}
.alert-danger {
  background-color: #33363b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f35f31;
  border-color: #f35f31;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f35f31;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fef5f2;
}
.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: #ebd9df;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #a4a8b0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.71875rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #f35f31 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.71875rem;
}
blockquote {
  border-color: #f35f31;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f35f31;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f35f31;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f35f31;
  border-bottom-color: #f35f31;
}
.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: #ffffff !important;
  background-color: #f35f31 !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: #fffbfa !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%;
  width: 100%;
  height: auto;
}
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='%23f35f31' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: .3s all;
  font-weight: 600 !important;
}
a:hover {
  background-image: none !important;
}
.container {
  position: relative;
  max-width: 1380px;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
.container-fluid {
  max-width: 100%;
  padding-left: 6rem;
  padding-right: 6rem;
}
@media (max-width: 1399px) {
  .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 1199px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.row {
  margin-left: -16px;
  margin-right: -16px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 16px;
  padding-right: 16px;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 52px;
  padding: 10px 30px;
  border-radius: 3px;
  transition: all .3s;
}
.mbr-section-btn .btn .mbr-iconfont {
  transition: transform .3s;
}
.mbr-section-btn .btn:hover .mbr-iconfont {
  transform: translateX(0.5rem);
}
.mbr-section-btn .btn-danger,
.mbr-section-btn .btn-black {
  color: #FFFFFF;
}
.mbr-section-btn .btn-danger:hover,
.mbr-section-btn .btn-black:hover {
  color: #FFFFFF;
  background-color: #f35f31 !important;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn .btn-white-outline:hover {
  color: #f35f31 !important;
  border-color: #f35f31 !important;
}
.cid-tDSunbbdYc .navbar-dropdown {
  position: relative !important;
}
.cid-tDSunbbdYc .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDSunbbdYc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDSunbbdYc .dropdown-item:hover,
.cid-tDSunbbdYc .dropdown-item:focus {
  color: #f35f31 !important;
}
.cid-tDSunbbdYc .dropdown-item:hover span {
  color: white;
}
.cid-tDSunbbdYc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDSunbbdYc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDSunbbdYc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDSunbbdYc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDSunbbdYc .nav-link {
  position: relative;
}
.cid-tDSunbbdYc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tDSunbbdYc .container {
    flex-wrap: nowrap;
  }
}
.cid-tDSunbbdYc .navbar-caption:hover,
.cid-tDSunbbdYc .navbar-caption:focus {
  color: #f35f31 !important;
}
.cid-tDSunbbdYc .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-tDSunbbdYc .navbar-nav .nav-item {
  color: #24262b;
}
.cid-tDSunbbdYc .navbar-nav .nav-item:hover {
  color: #f35f31;
}
.cid-tDSunbbdYc .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-tDSunbbdYc .navbar-nav .nav-item a:hover {
  color: #f35f31 !important;
}
.cid-tDSunbbdYc .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-tDSunbbdYc .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-tDSunbbdYc .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-tDSunbbdYc .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #f35f31 !important;
}
.cid-tDSunbbdYc .dropdown-menu,
.cid-tDSunbbdYc .navbar.opened {
  background: #689681 !important;
}
.cid-tDSunbbdYc .nav-item:focus,
.cid-tDSunbbdYc .nav-link:focus {
  outline: none;
}
.cid-tDSunbbdYc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDSunbbdYc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDSunbbdYc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDSunbbdYc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDSunbbdYc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDSunbbdYc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDSunbbdYc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #689681;
  padding: 0 !important;
}
.cid-tDSunbbdYc .navbar.opened {
  transition: all 0.3s;
}
.cid-tDSunbbdYc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDSunbbdYc .navbar .navbar-logo img {
  width: auto;
}
.cid-tDSunbbdYc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDSunbbdYc .navbar.collapsed {
  justify-content: center;
}
.cid-tDSunbbdYc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDSunbbdYc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDSunbbdYc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2rem);
  }
}
.cid-tDSunbbdYc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDSunbbdYc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDSunbbdYc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tDSunbbdYc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDSunbbdYc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDSunbbdYc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDSunbbdYc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDSunbbdYc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDSunbbdYc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDSunbbdYc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDSunbbdYc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tDSunbbdYc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDSunbbdYc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDSunbbdYc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDSunbbdYc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDSunbbdYc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDSunbbdYc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDSunbbdYc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDSunbbdYc .navbar.navbar-short {
  min-height: 70px;
}
.cid-tDSunbbdYc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-tDSunbbdYc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDSunbbdYc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDSunbbdYc .dropdown-item.active,
.cid-tDSunbbdYc .dropdown-item:active {
  background-color: transparent;
}
.cid-tDSunbbdYc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDSunbbdYc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDSunbbdYc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDSunbbdYc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #689681;
}
.cid-tDSunbbdYc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDSunbbdYc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDSunbbdYc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDSunbbdYc .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-tDSunbbdYc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDSunbbdYc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tDSunbbdYc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDSunbbdYc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDSunbbdYc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDSunbbdYc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDSunbbdYc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDSunbbdYc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDSunbbdYc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDSunbbdYc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDSunbbdYc .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tDSunbbdYc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDSunbbdYc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDSunbbdYc .navbar {
    height: 70px;
  }
  .cid-tDSunbbdYc .navbar.opened {
    height: auto;
  }
  .cid-tDSunbbdYc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDSunbbdYc .container-fluid {
  padding: 0 1rem !important;
}
.cid-tDSunbbdYc .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-tDSunbbdYc .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-tDSunbbdYc .navbar-collapse {
    width: 100%;
  }
  .cid-tDSunbbdYc .navbar-nav {
    width: 100%;
  }
  .cid-tDSunbbdYc .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uHDCpAaisu {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHDCpAaisu .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uHDCpAaisu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uHDCpAaisu .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .cid-uHDCpAaisu .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-uHDCpAaisu .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-uHDCpAaisu .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uHDCpAaisu .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-uHDCpAaisu .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uHDCpAaisu .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-uHDCpAaisu .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uHDCpAaisu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDCpAaisu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDsN28SGk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHDsN28SGk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDsN28SGk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHDsN28SGk .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uHDsN28SGk .container {
    padding: 0 12px;
  }
}
.cid-uHDsN28SGk .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uHDsN28SGk .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uHDsN28SGk .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uHDsN28SGk .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uHDsN28SGk .mbr-section-title {
  color: #222222;
}
.cid-uHDtolmwku {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #689681;
}
.cid-uHDtolmwku .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDtolmwku .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDtolmwku .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uHDtolmwku .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uHDtolmwku .container {
    padding: 0 16px;
  }
}
.cid-uHDtolmwku .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uHDtolmwku .row {
    margin: 0 10px;
  }
}
.cid-uHDtolmwku .row .card {
  position: relative;
  padding: 0;
}
.cid-uHDtolmwku .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #502274;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-uHDtolmwku .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-uHDtolmwku .row .card .decor-wrapper {
    display: none;
  }
}
.cid-uHDtolmwku .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #502274;
  color: #502274;
  border-radius: 100%;
  border: 5px solid #502274;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-uHDtolmwku .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-uHDtolmwku .row .card .icon-decor {
    display: none;
  }
}
.cid-uHDtolmwku .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uHDtolmwku .title-wrapper {
    width: 100%;
  }
}
.cid-uHDtolmwku .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uHDtolmwku .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uHDtolmwku .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHDtolmwku .mbr-section-title {
  color: #000000;
}
.cid-uHDtolmwku .mbr-text {
  color: #efefef;
  text-align: center;
}
.cid-uHDtcMI1Dq {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #cde2bb;
}
.cid-uHDtcMI1Dq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDtcMI1Dq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDtcMI1Dq .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-uHDtcMI1Dq .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uHDtcMI1Dq .container {
    padding: 0 26px;
  }
}
.cid-uHDtcMI1Dq .image-wrapper {
  border: 1px solid #ffffff;
  padding: 20px;
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-uHDtcMI1Dq .image-wrapper {
    margin: 0 0 50px 0;
  }
}
.cid-uHDtcMI1Dq .image-wrapper .mbr-emoji {
  margin-bottom: 18px;
}
.cid-uHDtcMI1Dq .image-wrapper img {
  height: 530px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uHDtcMI1Dq .image-wrapper img {
    height: 300px;
  }
}
.cid-uHDtcMI1Dq .title-wrapper .mbr-section-subtitle {
  margin-bottom: 18px;
}
.cid-uHDtcMI1Dq .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-uHDtcMI1Dq .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHDtcMI1Dq .title-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-uHDtcMI1Dq .mbr-section-title {
  color: #ffffff;
}
.cid-uHDtcMI1Dq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uHDtcMI1Dq .mbr-text {
  color: #010101;
}
.cid-uHDtcMI1Dq .mbr-section-title,
.cid-uHDtcMI1Dq .mbr-section-btn {
  color: #010101;
}
.cid-tDSv7f8dD7 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #689681;
}
.cid-tDSv7f8dD7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDSv7f8dD7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDSv7f8dD7 .col-title {
  margin-bottom: 32px;
}
.cid-tDSv7f8dD7 .mbr-section-title {
  color: #24262b;
}
.cid-tDSv7f8dD7 .mbr-section-subtitle {
  color: #24262b;
}
.cid-tDSv7f8dD7 .cars-row {
  row-gap: 32px;
}
.cid-tDSv7f8dD7 .card {
  border-radius: 0;
}
.cid-tDSv7f8dD7 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 50px;
  color: #33363b;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cid-tDSv7f8dD7 .text-wrap {
  flex-grow: 1;
}
.cid-tDSv7f8dD7 .card-title {
  color: #24262b;
}
.cid-tDSv7f8dD7 .card-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-tDSv7f8dD7 .mbr-section-btn {
  margin-top: 12px;
}
.cid-tDSv7f8dD7 .card-text,
.cid-tDSv7f8dD7 .mbr-section-btn {
  color: #010101;
}
.cid-tDSv7f8dD7 .card-title,
.cid-tDSv7f8dD7 .card-wrapper {
  color: #010101;
}
.cid-uHtatfTj28 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cde2bb;
}
.cid-uHtatfTj28 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHtatfTj28 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHtatfTj28 .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uHtatfTj28 .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uHtatfTj28 .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHtatfTj28 .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uHtatfTj28 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHtatfTj28 .mbr-section-title {
  color: #000000;
}
.cid-uHtatfTj28 .mbr-desc {
  color: #fdfde1;
}
.cid-uHtatfTj28 .mbr-text {
  color: #000000;
}
.cid-uHtatfTj28 .mbr-text,
.cid-uHtatfTj28 .text-wrapper {
  color: #000000;
}
.cid-uHtatfTj28 .mbr-section-title,
.cid-uHtatfTj28 .mbr-section-btn {
  color: #000000;
}
.cid-uHDvoL0eR7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #689681;
}
.cid-uHDvoL0eR7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDvoL0eR7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDvoL0eR7 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uHDvoL0eR7 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uHDvoL0eR7 .container {
    padding: 0 30px;
  }
}
.cid-uHDvoL0eR7 .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uHDvoL0eR7 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uHDvoL0eR7 .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #ffffff;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-uHDvoL0eR7 .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uHDvoL0eR7 .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uHDvoL0eR7 .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uHDvoL0eR7 .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uHDvoL0eR7 .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uHDvoL0eR7 .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uHDvoL0eR7 .mbr-section-title {
  color: #010101;
  text-align: center;
}
.cid-uHDvoL0eR7 .mbr-card-title {
  color: #2b2b2b;
}
.cid-uHDvoL0eR7 .mbr-text {
  color: #4E4E4E;
}
.cid-uHDvoL0eR7 .mbr-number {
  color: #FE5115;
}
.cid-uHtrCjLCok {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHtrCjLCok .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHtrCjLCok .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHtrCjLCok .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uHtrCjLCok .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uHtrCjLCok .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uHtrCjLCok .mbr-section-title {
  color: #131313;
}
.cid-uHtrCjLCok .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uHtrCjLCok .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uHtrCjLCok .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uHtrCjLCok .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uHtrCjLCok .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uHtrCjLCok .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uHtrCjLCok .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uHtrCjLCok .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uHtrCjLCok .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a6b1d8;
}
.cid-uHtrCjLCok .card-title {
  color: #131313;
}
.cid-uHtrCjLCok .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uHtrCjLCok .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uHtrCjLCok .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uHtrCjLCok .card-link {
    margin-top: 15px;
  }
}
.cid-uHtrCjLCok .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uHy7sxDwqE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #689681;
}
.cid-uHy7sxDwqE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHy7sxDwqE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHy7sxDwqE .row {
  justify-content: center;
}
.cid-uHy7sxDwqE .card-wrapper {
  position: relative;
  padding: 80px 150px;
  background-color: #cde2bb;
}
@media (max-width: 1600px) {
  .cid-uHy7sxDwqE .card-wrapper {
    padding: 80px;
  }
}
@media (max-width: 1440px) {
  .cid-uHy7sxDwqE .card-wrapper {
    padding: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uHy7sxDwqE .card-wrapper {
    padding: 30px 20px;
  }
}
.cid-uHy7sxDwqE .card-wrapper::before {
  content: '';
  position: absolute;
  bottom: -5rem;
  right: -5rem;
  width: 60%;
  height: 110%;
  border-radius: 100%;
  background-image: radial-gradient(#cde2bb, transparent);
  filter: blur(100px);
}
.cid-uHy7sxDwqE .card-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHy7sxDwqE .card-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uHy7sxDwqE .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uHy7sxDwqE .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uHy7sxDwqE .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uHy7sxDwqE .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uHy7sxDwqE .mbr-section-title {
  color: #000000;
}
.cid-uHy7sxDwqE .mbr-text,
.cid-uHy7sxDwqE .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uHy7sxDwqE .mbr-section-title,
.cid-uHy7sxDwqE .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uHtDgmyaQo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cde2bb;
}
.cid-uHtDgmyaQo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHtDgmyaQo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHtDgmyaQo .content-wrap {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uHtDgmyaQo .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uHtDgmyaQo .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uHtDgmyaQo .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uHtDgmyaQo .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHtDgmyaQo .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uHtDgmyaQo .content-wrap .panel-group .card {
  position: relative;
  padding: 30px;
  margin-top: 20px;
  background-color: #689681;
}
@media (max-width: 992px) {
  .cid-uHtDgmyaQo .content-wrap .panel-group .card {
    padding: 20px;
  }
}
.cid-uHtDgmyaQo .content-wrap .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uHtDgmyaQo .content-wrap .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uHtDgmyaQo .content-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uHtDgmyaQo .content-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uHtDgmyaQo .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #f8e7d2;
}
@media (max-width: 992px) {
  .cid-uHtDgmyaQo .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-uHtDgmyaQo .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #b19a7c;
}
.cid-uHtDgmyaQo .content-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-uHtDgmyaQo .content-wrap .panel-group .card .panel-collapse .panel-body {
  margin: 20px 0 0 0;
}
.cid-uHtDgmyaQo .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHtDgmyaQo .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uHtDgmyaQo .mbr-section-title {
  color: #404349;
}
.cid-uHtDgmyaQo .panel-title-edit {
  color: #ffffff;
}
.cid-uHtDgmyaQo .panel-text {
  color: #404349;
}
.cid-uHtDgmyaQo .mbr-section-title,
.cid-uHtDgmyaQo .title-wrapper,
.cid-uHtDgmyaQo .tabs-wrapper {
  color: #010101;
}
.cid-uHtDgmyaQo .panel-text,
.cid-uHtDgmyaQo .panel-body {
  color: #ffffff;
}
.cid-uHDwOwkTEb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #689681;
  overflow: hidden;
}
.cid-uHDwOwkTEb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDwOwkTEb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHDwOwkTEb .container {
    padding: 0 22px;
  }
}
.cid-uHDwOwkTEb .card {
  justify-content: center;
}
.cid-uHDwOwkTEb .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uHDwOwkTEb .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uHDwOwkTEb .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uHDwOwkTEb .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHDwOwkTEb .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uHDwOwkTEb .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #faee0f;
}
@media (max-width: 1440px) {
  .cid-uHDwOwkTEb .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uHDwOwkTEb .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uHDwOwkTEb .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uHDwOwkTEb .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uHDwOwkTEb .mbr-section-title {
  color: #010101;
}
.cid-uHDwOwkTEb .mbr-text {
  color: #000000;
}
.cid-uHDx9SXKij {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #cde2bb;
}
.cid-uHDx9SXKij .mbr-text {
  color: #000000;
}
.cid-uHDx9SXKij .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-uHDx9SXKij .mbr-section-title {
  color: #010101;
}
.cid-uHDXlYKTxo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uHDXlYKTxo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDXlYKTxo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDXlYKTxo .google-map {
  position: relative;
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-uHDXlYKTxo .google-map {
    margin-bottom: 32px;
  }
}
.cid-uHDXlYKTxo .google-map::before {
  content: '';
  position: absolute;
  bottom: -56px;
  left: 0;
  background-image: linear-gradient(90deg, transparent, #a78aff, #0047ff, transparent);
  height: 1px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uHDXlYKTxo .google-map::before {
    bottom: -32px;
  }
}
.cid-uHDXlYKTxo .google-map iframe {
  height: 700px;
  filter: invert(1);
}
@media (max-width: 992px) {
  .cid-uHDXlYKTxo .google-map iframe {
    height: 350px;
  }
}
.cid-uHvERDCJvj .navbar-dropdown {
  position: relative !important;
}
.cid-uHvERDCJvj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHvERDCJvj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHvERDCJvj .dropdown-item:hover,
.cid-uHvERDCJvj .dropdown-item:focus {
  color: #f35f31 !important;
}
.cid-uHvERDCJvj .dropdown-item:hover span {
  color: white;
}
.cid-uHvERDCJvj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHvERDCJvj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHvERDCJvj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHvERDCJvj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHvERDCJvj .nav-link {
  position: relative;
}
.cid-uHvERDCJvj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHvERDCJvj .container {
    flex-wrap: nowrap;
  }
}
.cid-uHvERDCJvj .navbar-caption:hover,
.cid-uHvERDCJvj .navbar-caption:focus {
  color: #f35f31 !important;
}
.cid-uHvERDCJvj .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-uHvERDCJvj .navbar-nav .nav-item {
  color: #24262b;
}
.cid-uHvERDCJvj .navbar-nav .nav-item:hover {
  color: #f35f31;
}
.cid-uHvERDCJvj .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-uHvERDCJvj .navbar-nav .nav-item a:hover {
  color: #f35f31 !important;
}
.cid-uHvERDCJvj .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-uHvERDCJvj .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-uHvERDCJvj .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-uHvERDCJvj .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #f35f31 !important;
}
.cid-uHvERDCJvj .dropdown-menu,
.cid-uHvERDCJvj .navbar.opened {
  background: #689681 !important;
}
.cid-uHvERDCJvj .nav-item:focus,
.cid-uHvERDCJvj .nav-link:focus {
  outline: none;
}
.cid-uHvERDCJvj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHvERDCJvj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHvERDCJvj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHvERDCJvj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHvERDCJvj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHvERDCJvj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHvERDCJvj .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #689681;
  padding: 0 !important;
}
.cid-uHvERDCJvj .navbar.opened {
  transition: all 0.3s;
}
.cid-uHvERDCJvj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHvERDCJvj .navbar .navbar-logo img {
  width: auto;
}
.cid-uHvERDCJvj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHvERDCJvj .navbar.collapsed {
  justify-content: center;
}
.cid-uHvERDCJvj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHvERDCJvj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHvERDCJvj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2rem);
  }
}
.cid-uHvERDCJvj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHvERDCJvj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHvERDCJvj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uHvERDCJvj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHvERDCJvj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHvERDCJvj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHvERDCJvj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHvERDCJvj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHvERDCJvj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHvERDCJvj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHvERDCJvj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uHvERDCJvj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHvERDCJvj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHvERDCJvj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHvERDCJvj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHvERDCJvj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHvERDCJvj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHvERDCJvj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHvERDCJvj .navbar.navbar-short {
  min-height: 70px;
}
.cid-uHvERDCJvj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-uHvERDCJvj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHvERDCJvj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHvERDCJvj .dropdown-item.active,
.cid-uHvERDCJvj .dropdown-item:active {
  background-color: transparent;
}
.cid-uHvERDCJvj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHvERDCJvj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHvERDCJvj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHvERDCJvj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #689681;
}
.cid-uHvERDCJvj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHvERDCJvj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHvERDCJvj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHvERDCJvj .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-uHvERDCJvj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHvERDCJvj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uHvERDCJvj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHvERDCJvj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHvERDCJvj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHvERDCJvj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHvERDCJvj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHvERDCJvj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHvERDCJvj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHvERDCJvj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHvERDCJvj .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHvERDCJvj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHvERDCJvj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHvERDCJvj .navbar {
    height: 70px;
  }
  .cid-uHvERDCJvj .navbar.opened {
    height: auto;
  }
  .cid-uHvERDCJvj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHvERDCJvj .container-fluid {
  padding: 0 1rem !important;
}
.cid-uHvERDCJvj .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-uHvERDCJvj .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-uHvERDCJvj .navbar-collapse {
    width: 100%;
  }
  .cid-uHvERDCJvj .navbar-nav {
    width: 100%;
  }
  .cid-uHvERDCJvj .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uHy9easkLw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #cde2bb;
}
.cid-uHy9easkLw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHy9easkLw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHy9easkLw .content-wrapper {
  position: relative;
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uHy9easkLw .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uHy9easkLw .content-wrapper {
    padding: 0;
  }
}
.cid-uHy9easkLw .content-wrapper .mbr-section-btn {
  margin-bottom: 32px;
}
.cid-uHy9easkLw .content-wrapper .card-wrap {
  position: absolute;
  z-index: 1;
  left: 108px;
  bottom: 0;
  width: 55%;
  padding: 80px;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: -10px 10px 0 #ffffff;
}
@media (max-width: 992px) {
  .cid-uHy9easkLw .content-wrapper .card-wrap {
    box-shadow: -5px 5px 0 #ffffff;
  }
}
@media (max-width: 1440px) {
  .cid-uHy9easkLw .content-wrapper .card-wrap {
    padding: 64px;
    left: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uHy9easkLw .content-wrapper .card-wrap {
    position: static;
    width: 100%;
    margin-bottom: 16px;
    padding: 20px;
  }
}
.cid-uHy9easkLw .content-wrapper .card-wrap .mbr-date {
  margin-bottom: 32px;
}
.cid-uHy9easkLw .content-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uHy9easkLw .content-wrapper .card-wrap .tag-wrapper .mbr-tag {
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 0;
  border: 2px solid #000000;
}
.cid-uHy9easkLw .content-wrapper .image-wrapper {
  position: relative;
  padding-left: 30%;
  padding-bottom: 6%;
}
@media (max-width: 992px) {
  .cid-uHy9easkLw .content-wrapper .image-wrapper {
    width: 100%;
    padding-left: 0;
    padding-bottom: 0;
  }
}
.cid-uHy9easkLw .content-wrapper .image-wrapper img {
  object-fit: cover;
  height: 750px;
  border: 2px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-uHy9easkLw .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uHy9easkLw .mbr-section-title {
  color: #2C2625;
}
.cid-uHy9easkLw .mbr-date {
  color: #2C2625;
}
.cid-uHy9easkLw .mbr-tag {
  color: #2C2625;
}
.cid-uHxFBzf1ML {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #010101;
  background-image: linear-gradient(135deg, #689681 10%, #010101 80%, #000000 130%);
}
.cid-uHxFBzf1ML .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHxFBzf1ML .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHxFBzf1ML .row {
  justify-content: center;
}
.cid-uHxFBzf1ML .content-wrapper .logo-wrapper {
  margin-bottom: 22px;
}
.cid-uHxFBzf1ML .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 130px;
  height: 130px;
  object-fit: cover;
}
.cid-uHxFBzf1ML .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uHxFBzf1ML .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHxFBzf1ML .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uHxFBzf1ML .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
.cid-uHxFBzf1ML .content-wrapper .mbr-section-btn .mbr-section-title {
  margin-top: 22px;
}
.cid-uHxFBzf1ML .mbr-section-title {
  color: #ffffff;
}
.cid-uHxFBzf1ML .mbr-text,
.cid-uHxFBzf1ML .text-wrapper {
  color: #efefef;
  text-align: center;
}
.cid-uHxFBzf1ML .mbr-section-title,
.cid-uHxFBzf1ML .mbr-section-btn,
.cid-uHxFBzf1ML .logo-wrapper {
  text-align: center;
}
.cid-uHxFuMokGZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f5f8f3;
}
.cid-uHxFuMokGZ .mbr-section-head {
  max-width: 1302px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 991px) {
  .cid-uHxFuMokGZ .mbr-section-head {
    padding: 0 12px;
  }
}
.cid-uHxFuMokGZ .mbr-section-title {
  width: 100%;
  color: #222222;
}
.cid-uHxFuMokGZ .mbr-section-subtitle {
  color: #555555;
  width: 100%;
}
.cid-uHxFuMokGZ .google-map {
  height: 656px;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uHxFuMokGZ .google-map {
    height: 356px;
  }
}
.cid-uHxFuMokGZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uHxFuMokGZ .google-map [data-state-details] {
  color: #6b6763;
  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-uHxFuMokGZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uHxFuMokGZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uHxFuMokGZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHxFuMokGZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHxGXczcqa .navbar-dropdown {
  position: relative !important;
}
.cid-uHxGXczcqa .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHxGXczcqa .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHxGXczcqa .dropdown-item:hover,
.cid-uHxGXczcqa .dropdown-item:focus {
  color: #f35f31 !important;
}
.cid-uHxGXczcqa .dropdown-item:hover span {
  color: white;
}
.cid-uHxGXczcqa .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHxGXczcqa .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHxGXczcqa .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHxGXczcqa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHxGXczcqa .nav-link {
  position: relative;
}
.cid-uHxGXczcqa .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHxGXczcqa .container {
    flex-wrap: nowrap;
  }
}
.cid-uHxGXczcqa .navbar-caption:hover,
.cid-uHxGXczcqa .navbar-caption:focus {
  color: #f35f31 !important;
}
.cid-uHxGXczcqa .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-uHxGXczcqa .navbar-nav .nav-item {
  color: #24262b;
}
.cid-uHxGXczcqa .navbar-nav .nav-item:hover {
  color: #f35f31;
}
.cid-uHxGXczcqa .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-uHxGXczcqa .navbar-nav .nav-item a:hover {
  color: #f35f31 !important;
}
.cid-uHxGXczcqa .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-uHxGXczcqa .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-uHxGXczcqa .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-uHxGXczcqa .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #f35f31 !important;
}
.cid-uHxGXczcqa .dropdown-menu,
.cid-uHxGXczcqa .navbar.opened {
  background: #689681 !important;
}
.cid-uHxGXczcqa .nav-item:focus,
.cid-uHxGXczcqa .nav-link:focus {
  outline: none;
}
.cid-uHxGXczcqa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHxGXczcqa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHxGXczcqa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHxGXczcqa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHxGXczcqa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHxGXczcqa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHxGXczcqa .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #689681;
  padding: 0 !important;
}
.cid-uHxGXczcqa .navbar.opened {
  transition: all 0.3s;
}
.cid-uHxGXczcqa .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHxGXczcqa .navbar .navbar-logo img {
  width: auto;
}
.cid-uHxGXczcqa .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHxGXczcqa .navbar.collapsed {
  justify-content: center;
}
.cid-uHxGXczcqa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHxGXczcqa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHxGXczcqa .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2rem);
  }
}
.cid-uHxGXczcqa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHxGXczcqa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHxGXczcqa .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uHxGXczcqa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHxGXczcqa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHxGXczcqa .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHxGXczcqa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHxGXczcqa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHxGXczcqa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHxGXczcqa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHxGXczcqa .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uHxGXczcqa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHxGXczcqa .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHxGXczcqa .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHxGXczcqa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHxGXczcqa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHxGXczcqa .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHxGXczcqa .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHxGXczcqa .navbar.navbar-short {
  min-height: 70px;
}
.cid-uHxGXczcqa .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-uHxGXczcqa .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHxGXczcqa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHxGXczcqa .dropdown-item.active,
.cid-uHxGXczcqa .dropdown-item:active {
  background-color: transparent;
}
.cid-uHxGXczcqa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHxGXczcqa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHxGXczcqa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHxGXczcqa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #689681;
}
.cid-uHxGXczcqa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHxGXczcqa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHxGXczcqa ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHxGXczcqa .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-uHxGXczcqa button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHxGXczcqa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uHxGXczcqa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHxGXczcqa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHxGXczcqa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHxGXczcqa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHxGXczcqa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHxGXczcqa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHxGXczcqa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHxGXczcqa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHxGXczcqa .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHxGXczcqa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHxGXczcqa .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHxGXczcqa .navbar {
    height: 70px;
  }
  .cid-uHxGXczcqa .navbar.opened {
    height: auto;
  }
  .cid-uHxGXczcqa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHxGXczcqa .container-fluid {
  padding: 0 1rem !important;
}
.cid-uHxGXczcqa .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-uHxGXczcqa .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-uHxGXczcqa .navbar-collapse {
    width: 100%;
  }
  .cid-uHxGXczcqa .navbar-nav {
    width: 100%;
  }
  .cid-uHxGXczcqa .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uHy8GWcqNW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #cde2bb;
}
.cid-uHy8GWcqNW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHy8GWcqNW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHy8GWcqNW .content-wrapper {
  position: relative;
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uHy8GWcqNW .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uHy8GWcqNW .content-wrapper {
    padding: 0;
  }
}
.cid-uHy8GWcqNW .content-wrapper .mbr-section-btn {
  margin-bottom: 32px;
}
.cid-uHy8GWcqNW .content-wrapper .card-wrap {
  position: absolute;
  z-index: 1;
  left: 108px;
  bottom: 0;
  width: 55%;
  padding: 80px;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  box-shadow: -10px 10px 0 #ffffff;
}
@media (max-width: 992px) {
  .cid-uHy8GWcqNW .content-wrapper .card-wrap {
    box-shadow: -5px 5px 0 #ffffff;
  }
}
@media (max-width: 1440px) {
  .cid-uHy8GWcqNW .content-wrapper .card-wrap {
    padding: 64px;
    left: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uHy8GWcqNW .content-wrapper .card-wrap {
    position: static;
    width: 100%;
    margin-bottom: 16px;
    padding: 20px;
  }
}
.cid-uHy8GWcqNW .content-wrapper .card-wrap .mbr-date {
  margin-bottom: 32px;
}
.cid-uHy8GWcqNW .content-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uHy8GWcqNW .content-wrapper .card-wrap .tag-wrapper .mbr-tag {
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 0;
  border: 2px solid #2c2625;
}
.cid-uHy8GWcqNW .content-wrapper .image-wrapper {
  position: relative;
  padding-left: 30%;
  padding-bottom: 6%;
}
@media (max-width: 992px) {
  .cid-uHy8GWcqNW .content-wrapper .image-wrapper {
    width: 100%;
    padding-left: 0;
    padding-bottom: 0;
  }
}
.cid-uHy8GWcqNW .content-wrapper .image-wrapper img {
  object-fit: cover;
  height: 750px;
  border: 2px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-uHy8GWcqNW .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uHy8GWcqNW .mbr-section-title {
  color: #2C2625;
}
.cid-uHy8GWcqNW .mbr-date {
  color: #2C2625;
}
.cid-uHy8GWcqNW .mbr-tag {
  color: #2C2625;
}
.cid-uHxGXfJLR7 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #cde2bb;
  background-image: linear-gradient(135deg, #689681 10%, #cde2bb 80%, #010101 130%);
}
.cid-uHxGXfJLR7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHxGXfJLR7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHxGXfJLR7 .row {
  justify-content: center;
}
.cid-uHxGXfJLR7 .content-wrapper .logo-wrapper {
  margin-bottom: 22px;
}
.cid-uHxGXfJLR7 .content-wrapper .logo-wrapper img {
  display: inline-flex;
  width: 130px;
  height: 130px;
  object-fit: cover;
}
.cid-uHxGXfJLR7 .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uHxGXfJLR7 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHxGXfJLR7 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uHxGXfJLR7 .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
.cid-uHxGXfJLR7 .content-wrapper .mbr-section-btn .mbr-section-title {
  margin-top: 22px;
}
.cid-uHxGXfJLR7 .mbr-section-title {
  color: #ffffff;
}
.cid-uHxGXfJLR7 .mbr-text,
.cid-uHxGXfJLR7 .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uHxGXfJLR7 .mbr-section-title,
.cid-uHxGXfJLR7 .mbr-section-btn,
.cid-uHxGXfJLR7 .logo-wrapper {
  text-align: center;
}
.cid-uHxGXgyckk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #fff9f8;
}
.cid-uHxGXgyckk .mbr-section-head {
  max-width: 1302px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 991px) {
  .cid-uHxGXgyckk .mbr-section-head {
    padding: 0 12px;
  }
}
.cid-uHxGXgyckk .mbr-section-title {
  width: 100%;
  color: #222222;
}
.cid-uHxGXgyckk .mbr-section-subtitle {
  color: #555555;
  width: 100%;
}
.cid-uHxGXgyckk .google-map {
  height: 656px;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uHxGXgyckk .google-map {
    height: 356px;
  }
}
.cid-uHxGXgyckk .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uHxGXgyckk .google-map [data-state-details] {
  color: #6b6763;
  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-uHxGXgyckk .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uHxGXgyckk .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uHxGXgyckk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHxGXgyckk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYpgkDZt .navbar-dropdown {
  position: relative !important;
}
.cid-uHDYpgkDZt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHDYpgkDZt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHDYpgkDZt .dropdown-item:hover,
.cid-uHDYpgkDZt .dropdown-item:focus {
  color: #f35f31 !important;
}
.cid-uHDYpgkDZt .dropdown-item:hover span {
  color: white;
}
.cid-uHDYpgkDZt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHDYpgkDZt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHDYpgkDZt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHDYpgkDZt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHDYpgkDZt .nav-link {
  position: relative;
}
.cid-uHDYpgkDZt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHDYpgkDZt .container {
    flex-wrap: nowrap;
  }
}
.cid-uHDYpgkDZt .navbar-caption:hover,
.cid-uHDYpgkDZt .navbar-caption:focus {
  color: #f35f31 !important;
}
.cid-uHDYpgkDZt .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-uHDYpgkDZt .navbar-nav .nav-item {
  color: #24262b;
}
.cid-uHDYpgkDZt .navbar-nav .nav-item:hover {
  color: #f35f31;
}
.cid-uHDYpgkDZt .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-uHDYpgkDZt .navbar-nav .nav-item a:hover {
  color: #f35f31 !important;
}
.cid-uHDYpgkDZt .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-uHDYpgkDZt .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-uHDYpgkDZt .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-uHDYpgkDZt .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #f35f31 !important;
}
.cid-uHDYpgkDZt .dropdown-menu,
.cid-uHDYpgkDZt .navbar.opened {
  background: #689681 !important;
}
.cid-uHDYpgkDZt .nav-item:focus,
.cid-uHDYpgkDZt .nav-link:focus {
  outline: none;
}
.cid-uHDYpgkDZt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHDYpgkDZt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHDYpgkDZt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHDYpgkDZt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHDYpgkDZt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHDYpgkDZt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHDYpgkDZt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #689681;
  padding: 0 !important;
}
.cid-uHDYpgkDZt .navbar.opened {
  transition: all 0.3s;
}
.cid-uHDYpgkDZt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHDYpgkDZt .navbar .navbar-logo img {
  width: auto;
}
.cid-uHDYpgkDZt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHDYpgkDZt .navbar.collapsed {
  justify-content: center;
}
.cid-uHDYpgkDZt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHDYpgkDZt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHDYpgkDZt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2rem);
  }
}
.cid-uHDYpgkDZt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHDYpgkDZt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHDYpgkDZt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uHDYpgkDZt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHDYpgkDZt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHDYpgkDZt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHDYpgkDZt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHDYpgkDZt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHDYpgkDZt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHDYpgkDZt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHDYpgkDZt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uHDYpgkDZt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHDYpgkDZt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHDYpgkDZt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHDYpgkDZt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHDYpgkDZt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHDYpgkDZt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHDYpgkDZt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHDYpgkDZt .navbar.navbar-short {
  min-height: 70px;
}
.cid-uHDYpgkDZt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-uHDYpgkDZt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHDYpgkDZt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHDYpgkDZt .dropdown-item.active,
.cid-uHDYpgkDZt .dropdown-item:active {
  background-color: transparent;
}
.cid-uHDYpgkDZt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHDYpgkDZt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHDYpgkDZt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHDYpgkDZt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #689681;
}
.cid-uHDYpgkDZt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHDYpgkDZt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHDYpgkDZt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHDYpgkDZt .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-uHDYpgkDZt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHDYpgkDZt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uHDYpgkDZt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHDYpgkDZt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHDYpgkDZt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHDYpgkDZt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHDYpgkDZt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHDYpgkDZt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHDYpgkDZt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHDYpgkDZt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHDYpgkDZt .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHDYpgkDZt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHDYpgkDZt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHDYpgkDZt .navbar {
    height: 70px;
  }
  .cid-uHDYpgkDZt .navbar.opened {
    height: auto;
  }
  .cid-uHDYpgkDZt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHDYpgkDZt .container-fluid {
  padding: 0 1rem !important;
}
.cid-uHDYpgkDZt .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-uHDYpgkDZt .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-uHDYpgkDZt .navbar-collapse {
    width: 100%;
  }
  .cid-uHDYpgkDZt .navbar-nav {
    width: 100%;
  }
  .cid-uHDYpgkDZt .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uHDYphfCqI {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHDYphfCqI .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uHDYphfCqI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uHDYphfCqI .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .cid-uHDYphfCqI .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-uHDYphfCqI .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-uHDYphfCqI .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uHDYphfCqI .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-uHDYphfCqI .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uHDYphfCqI .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-uHDYphfCqI .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uHDYphfCqI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYphfCqI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYphQYpg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHDYphQYpg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYphQYpg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHDYphQYpg .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uHDYphQYpg .container {
    padding: 0 12px;
  }
}
.cid-uHDYphQYpg .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uHDYphQYpg .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uHDYphQYpg .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uHDYphQYpg .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uHDYphQYpg .mbr-section-title {
  color: #222222;
}
.cid-uHDYpikLP5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #689681;
}
.cid-uHDYpikLP5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYpikLP5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYpikLP5 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uHDYpikLP5 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uHDYpikLP5 .container {
    padding: 0 16px;
  }
}
.cid-uHDYpikLP5 .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uHDYpikLP5 .row {
    margin: 0 10px;
  }
}
.cid-uHDYpikLP5 .row .card {
  position: relative;
  padding: 0;
}
.cid-uHDYpikLP5 .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #502274;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-uHDYpikLP5 .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-uHDYpikLP5 .row .card .decor-wrapper {
    display: none;
  }
}
.cid-uHDYpikLP5 .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #502274;
  color: #502274;
  border-radius: 100%;
  border: 5px solid #502274;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-uHDYpikLP5 .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-uHDYpikLP5 .row .card .icon-decor {
    display: none;
  }
}
.cid-uHDYpikLP5 .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uHDYpikLP5 .title-wrapper {
    width: 100%;
  }
}
.cid-uHDYpikLP5 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uHDYpikLP5 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uHDYpikLP5 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHDYpikLP5 .mbr-section-title {
  color: #000000;
}
.cid-uHDYpikLP5 .mbr-text {
  color: #efefef;
  text-align: center;
}
.cid-uHDYpiPjav {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #cde2bb;
}
.cid-uHDYpiPjav .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYpiPjav .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYpiPjav .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-uHDYpiPjav .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uHDYpiPjav .container {
    padding: 0 26px;
  }
}
.cid-uHDYpiPjav .image-wrapper {
  border: 1px solid #ffffff;
  padding: 20px;
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-uHDYpiPjav .image-wrapper {
    margin: 0 0 50px 0;
  }
}
.cid-uHDYpiPjav .image-wrapper .mbr-emoji {
  margin-bottom: 18px;
}
.cid-uHDYpiPjav .image-wrapper img {
  height: 530px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uHDYpiPjav .image-wrapper img {
    height: 300px;
  }
}
.cid-uHDYpiPjav .title-wrapper .mbr-section-subtitle {
  margin-bottom: 18px;
}
.cid-uHDYpiPjav .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-uHDYpiPjav .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHDYpiPjav .title-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-uHDYpiPjav .mbr-section-title {
  color: #ffffff;
}
.cid-uHDYpiPjav .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uHDYpiPjav .mbr-text {
  color: #010101;
}
.cid-uHDYpiPjav .mbr-section-title,
.cid-uHDYpiPjav .mbr-section-btn {
  color: #010101;
}
.cid-uHDYpjmm8T {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #689681;
}
.cid-uHDYpjmm8T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYpjmm8T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYpjmm8T .col-title {
  margin-bottom: 32px;
}
.cid-uHDYpjmm8T .mbr-section-title {
  color: #24262b;
}
.cid-uHDYpjmm8T .mbr-section-subtitle {
  color: #24262b;
}
.cid-uHDYpjmm8T .cars-row {
  row-gap: 32px;
}
.cid-uHDYpjmm8T .card {
  border-radius: 0;
}
.cid-uHDYpjmm8T .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 50px;
  color: #33363b;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cid-uHDYpjmm8T .text-wrap {
  flex-grow: 1;
}
.cid-uHDYpjmm8T .card-title {
  color: #24262b;
}
.cid-uHDYpjmm8T .card-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-uHDYpjmm8T .mbr-section-btn {
  margin-top: 12px;
}
.cid-uHDYpjmm8T .card-text,
.cid-uHDYpjmm8T .mbr-section-btn {
  color: #010101;
}
.cid-uHDYpjmm8T .card-title,
.cid-uHDYpjmm8T .card-wrapper {
  color: #010101;
}
.cid-uHDYpkbCs1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cde2bb;
}
.cid-uHDYpkbCs1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYpkbCs1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYpkbCs1 .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uHDYpkbCs1 .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uHDYpkbCs1 .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHDYpkbCs1 .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uHDYpkbCs1 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHDYpkbCs1 .mbr-section-title {
  color: #000000;
}
.cid-uHDYpkbCs1 .mbr-desc {
  color: #fdfde1;
}
.cid-uHDYpkbCs1 .mbr-text {
  color: #000000;
}
.cid-uHDYpkbCs1 .mbr-text,
.cid-uHDYpkbCs1 .text-wrapper {
  color: #000000;
}
.cid-uHDYpkbCs1 .mbr-section-title,
.cid-uHDYpkbCs1 .mbr-section-btn {
  color: #000000;
}
.cid-uHDYpkEjwf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #689681;
}
.cid-uHDYpkEjwf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYpkEjwf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYpkEjwf .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uHDYpkEjwf .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uHDYpkEjwf .container {
    padding: 0 30px;
  }
}
.cid-uHDYpkEjwf .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uHDYpkEjwf .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uHDYpkEjwf .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #ffffff;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-uHDYpkEjwf .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uHDYpkEjwf .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uHDYpkEjwf .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uHDYpkEjwf .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uHDYpkEjwf .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uHDYpkEjwf .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uHDYpkEjwf .mbr-section-title {
  color: #010101;
  text-align: center;
}
.cid-uHDYpkEjwf .mbr-card-title {
  color: #2b2b2b;
}
.cid-uHDYpkEjwf .mbr-text {
  color: #000000;
}
.cid-uHDYpkEjwf .mbr-number {
  color: #FE5115;
}
.cid-uHDYpl8ZGH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHDYpl8ZGH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYpl8ZGH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYpl8ZGH .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uHDYpl8ZGH .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uHDYpl8ZGH .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uHDYpl8ZGH .mbr-section-title {
  color: #131313;
}
.cid-uHDYpl8ZGH .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uHDYpl8ZGH .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uHDYpl8ZGH .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uHDYpl8ZGH .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uHDYpl8ZGH .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uHDYpl8ZGH .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uHDYpl8ZGH .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uHDYpl8ZGH .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uHDYpl8ZGH .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a6b1d8;
}
.cid-uHDYpl8ZGH .card-title {
  color: #131313;
}
.cid-uHDYpl8ZGH .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uHDYpl8ZGH .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uHDYpl8ZGH .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uHDYpl8ZGH .card-link {
    margin-top: 15px;
  }
}
.cid-uHDYpl8ZGH .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uHDYplXsDR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #689681;
}
.cid-uHDYplXsDR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYplXsDR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYplXsDR .row {
  justify-content: center;
}
.cid-uHDYplXsDR .card-wrapper {
  position: relative;
  padding: 80px 150px;
  background-color: #cde2bb;
}
@media (max-width: 1600px) {
  .cid-uHDYplXsDR .card-wrapper {
    padding: 80px;
  }
}
@media (max-width: 1440px) {
  .cid-uHDYplXsDR .card-wrapper {
    padding: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uHDYplXsDR .card-wrapper {
    padding: 30px 20px;
  }
}
.cid-uHDYplXsDR .card-wrapper::before {
  content: '';
  position: absolute;
  bottom: -5rem;
  right: -5rem;
  width: 60%;
  height: 110%;
  border-radius: 100%;
  background-image: radial-gradient(#cde2bb, transparent);
  filter: blur(100px);
}
.cid-uHDYplXsDR .card-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHDYplXsDR .card-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uHDYplXsDR .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uHDYplXsDR .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uHDYplXsDR .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uHDYplXsDR .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uHDYplXsDR .mbr-section-title {
  color: #000000;
}
.cid-uHDYplXsDR .mbr-text,
.cid-uHDYplXsDR .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uHDYplXsDR .mbr-section-title,
.cid-uHDYplXsDR .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uHDYpmuipG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cde2bb;
}
.cid-uHDYpmuipG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYpmuipG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYpmuipG .content-wrap {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uHDYpmuipG .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uHDYpmuipG .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uHDYpmuipG .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uHDYpmuipG .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHDYpmuipG .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uHDYpmuipG .content-wrap .panel-group .card {
  position: relative;
  padding: 30px;
  margin-top: 20px;
  background-color: #689681;
}
@media (max-width: 992px) {
  .cid-uHDYpmuipG .content-wrap .panel-group .card {
    padding: 20px;
  }
}
.cid-uHDYpmuipG .content-wrap .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uHDYpmuipG .content-wrap .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uHDYpmuipG .content-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uHDYpmuipG .content-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uHDYpmuipG .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #f8e7d2;
}
@media (max-width: 992px) {
  .cid-uHDYpmuipG .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-uHDYpmuipG .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #b19a7c;
}
.cid-uHDYpmuipG .content-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-uHDYpmuipG .content-wrap .panel-group .card .panel-collapse .panel-body {
  margin: 20px 0 0 0;
}
.cid-uHDYpmuipG .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHDYpmuipG .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uHDYpmuipG .mbr-section-title {
  color: #404349;
}
.cid-uHDYpmuipG .panel-title-edit {
  color: #ffffff;
}
.cid-uHDYpmuipG .panel-text {
  color: #404349;
}
.cid-uHDYpmuipG .mbr-section-title,
.cid-uHDYpmuipG .title-wrapper,
.cid-uHDYpmuipG .tabs-wrapper {
  color: #010101;
}
.cid-uHDYpmuipG .panel-text,
.cid-uHDYpmuipG .panel-body {
  color: #ffffff;
}
.cid-uHDYpnzCfM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #689681;
  overflow: hidden;
}
.cid-uHDYpnzCfM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYpnzCfM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHDYpnzCfM .container {
    padding: 0 22px;
  }
}
.cid-uHDYpnzCfM .card {
  justify-content: center;
}
.cid-uHDYpnzCfM .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uHDYpnzCfM .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uHDYpnzCfM .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uHDYpnzCfM .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHDYpnzCfM .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uHDYpnzCfM .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #faee0f;
}
@media (max-width: 1440px) {
  .cid-uHDYpnzCfM .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uHDYpnzCfM .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uHDYpnzCfM .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uHDYpnzCfM .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uHDYpnzCfM .mbr-section-title {
  color: #010101;
}
.cid-uHDYpnzCfM .mbr-text {
  color: #000000;
}
.cid-uHDYpo9PfZ {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #cde2bb;
}
.cid-uHDYpo9PfZ .mbr-text {
  color: #000000;
}
.cid-uHDYpo9PfZ .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-uHDYpo9PfZ .mbr-section-title {
  color: #010101;
}
.cid-uHFoQf1J1F {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-uHFoQf1J1F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHFoQf1J1F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHFoQf1J1F .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHFoQf1J1F .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uHFoQf1J1F .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHFoQf1J1F .panel-group {
    margin-bottom: 24px;
  }
}
.cid-uHFoQf1J1F .panel-group .card {
  position: relative;
  padding: 16px 24px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-top: 8px;
}
@media (max-width: 992px) {
  .cid-uHFoQf1J1F .panel-group .card {
    padding: 16px;
  }
}
.cid-uHFoQf1J1F .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uHFoQf1J1F .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uHFoQf1J1F .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uHFoQf1J1F .panel-group .card .card-header .panel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uHFoQf1J1F .panel-group .card .card-header .panel-title .panel-title-edit {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-uHFoQf1J1F .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #bbd3d3;
  margin-left: 8px;
}
.cid-uHFoQf1J1F .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  color: #7dabab;
}
.cid-uHFoQf1J1F .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  background-color: #f96e47;
}
.cid-uHFoQf1J1F .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
  color: #ffffff;
}
.cid-uHFoQf1J1F .panel-group .card .card-header .panel-title:not(.collapsed)::before {
  opacity: 1;
}
.cid-uHFoQf1J1F .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uHFoQf1J1F .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-uHFoQf1J1F .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uHFoQf1J1F .card-wrapper {
  background-color: #f9f8f8;
  padding: 72px 24px 40px;
  box-shadow: 0 3.5rem 5.5rem 0 #b9b9b9;
}
@media (max-width: 992px) {
  .cid-uHFoQf1J1F .card-wrapper {
    padding: 24px 16px;
  }
}
.cid-uHFoQf1J1F .card-wrapper .icon-wrap {
  margin-bottom: 16px;
}
.cid-uHFoQf1J1F .card-wrapper .icon-wrap .mbr-iconfont {
  height: 88px;
  width: 88px;
  min-width: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffffff;
  color: #a672ff;
  font-size: 42px;
}
.cid-uHFoQf1J1F .card-wrapper .card-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uHFoQf1J1F .card-wrapper .card-title {
    margin-bottom: 24px;
  }
}
.cid-uHFoQf1J1F .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uHFoQf1J1F .card-wrapper .mbr-section-btn .btn {
    padding: 14px;
  }
}
.cid-uHFoQf1J1F .mbr-section-title {
  color: #272b2e;
}
.cid-uHFoQf1J1F .panel-title-edit {
  color: #272b2e;
}
.cid-uHFoQf1J1F .panel-text {
  color: #15171a;
}
.cid-uHFoQf1J1F .card-title {
  color: #272b2e;
}
.cid-uHFoQf1J1F .card-title,
.cid-uHFoQf1J1F .icon-wrap,
.cid-uHFoQf1J1F .mbr-section-btn {
  text-align: center;
}
.cid-uHDYpoCVc4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uHDYpoCVc4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYpoCVc4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYpoCVc4 .google-map {
  position: relative;
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-uHDYpoCVc4 .google-map {
    margin-bottom: 32px;
  }
}
.cid-uHDYpoCVc4 .google-map::before {
  content: '';
  position: absolute;
  bottom: -56px;
  left: 0;
  background-image: linear-gradient(90deg, transparent, #a78aff, #0047ff, transparent);
  height: 1px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uHDYpoCVc4 .google-map::before {
    bottom: -32px;
  }
}
.cid-uHDYpoCVc4 .google-map iframe {
  height: 700px;
  filter: invert(1);
}
@media (max-width: 992px) {
  .cid-uHDYpoCVc4 .google-map iframe {
    height: 350px;
  }
}
.cid-uHDYquH7hr .navbar-dropdown {
  position: relative !important;
}
.cid-uHDYquH7hr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHDYquH7hr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHDYquH7hr .dropdown-item:hover,
.cid-uHDYquH7hr .dropdown-item:focus {
  color: #f35f31 !important;
}
.cid-uHDYquH7hr .dropdown-item:hover span {
  color: white;
}
.cid-uHDYquH7hr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHDYquH7hr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHDYquH7hr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHDYquH7hr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHDYquH7hr .nav-link {
  position: relative;
}
.cid-uHDYquH7hr .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHDYquH7hr .container {
    flex-wrap: nowrap;
  }
}
.cid-uHDYquH7hr .navbar-caption:hover,
.cid-uHDYquH7hr .navbar-caption:focus {
  color: #f35f31 !important;
}
.cid-uHDYquH7hr .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-uHDYquH7hr .navbar-nav .nav-item {
  color: #24262b;
}
.cid-uHDYquH7hr .navbar-nav .nav-item:hover {
  color: #f35f31;
}
.cid-uHDYquH7hr .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-uHDYquH7hr .navbar-nav .nav-item a:hover {
  color: #f35f31 !important;
}
.cid-uHDYquH7hr .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-uHDYquH7hr .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-uHDYquH7hr .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-uHDYquH7hr .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #f35f31 !important;
}
.cid-uHDYquH7hr .dropdown-menu,
.cid-uHDYquH7hr .navbar.opened {
  background: #689681 !important;
}
.cid-uHDYquH7hr .nav-item:focus,
.cid-uHDYquH7hr .nav-link:focus {
  outline: none;
}
.cid-uHDYquH7hr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHDYquH7hr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHDYquH7hr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHDYquH7hr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHDYquH7hr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHDYquH7hr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHDYquH7hr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #689681;
  padding: 0 !important;
}
.cid-uHDYquH7hr .navbar.opened {
  transition: all 0.3s;
}
.cid-uHDYquH7hr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHDYquH7hr .navbar .navbar-logo img {
  width: auto;
}
.cid-uHDYquH7hr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHDYquH7hr .navbar.collapsed {
  justify-content: center;
}
.cid-uHDYquH7hr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHDYquH7hr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHDYquH7hr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2rem);
  }
}
.cid-uHDYquH7hr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHDYquH7hr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHDYquH7hr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uHDYquH7hr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHDYquH7hr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHDYquH7hr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHDYquH7hr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHDYquH7hr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHDYquH7hr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHDYquH7hr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHDYquH7hr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uHDYquH7hr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHDYquH7hr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHDYquH7hr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHDYquH7hr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHDYquH7hr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHDYquH7hr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHDYquH7hr .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHDYquH7hr .navbar.navbar-short {
  min-height: 70px;
}
.cid-uHDYquH7hr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-uHDYquH7hr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHDYquH7hr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHDYquH7hr .dropdown-item.active,
.cid-uHDYquH7hr .dropdown-item:active {
  background-color: transparent;
}
.cid-uHDYquH7hr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHDYquH7hr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHDYquH7hr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHDYquH7hr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #689681;
}
.cid-uHDYquH7hr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHDYquH7hr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHDYquH7hr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHDYquH7hr .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-uHDYquH7hr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHDYquH7hr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uHDYquH7hr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHDYquH7hr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHDYquH7hr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHDYquH7hr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHDYquH7hr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHDYquH7hr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHDYquH7hr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHDYquH7hr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHDYquH7hr .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHDYquH7hr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHDYquH7hr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHDYquH7hr .navbar {
    height: 70px;
  }
  .cid-uHDYquH7hr .navbar.opened {
    height: auto;
  }
  .cid-uHDYquH7hr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHDYquH7hr .container-fluid {
  padding: 0 1rem !important;
}
.cid-uHDYquH7hr .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-uHDYquH7hr .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-uHDYquH7hr .navbar-collapse {
    width: 100%;
  }
  .cid-uHDYquH7hr .navbar-nav {
    width: 100%;
  }
  .cid-uHDYquH7hr .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uHDYqvMLZo {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHDYqvMLZo .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uHDYqvMLZo .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uHDYqvMLZo .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .cid-uHDYqvMLZo .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-uHDYqvMLZo .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-uHDYqvMLZo .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uHDYqvMLZo .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-uHDYqvMLZo .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uHDYqvMLZo .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-uHDYqvMLZo .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uHDYqvMLZo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYqvMLZo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYqwhT6T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHDYqwhT6T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYqwhT6T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHDYqwhT6T .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uHDYqwhT6T .container {
    padding: 0 12px;
  }
}
.cid-uHDYqwhT6T .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uHDYqwhT6T .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uHDYqwhT6T .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uHDYqwhT6T .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uHDYqwhT6T .mbr-section-title {
  color: #222222;
}
.cid-uHDYqwUCk1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #689681;
}
.cid-uHDYqwUCk1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYqwUCk1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYqwUCk1 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uHDYqwUCk1 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uHDYqwUCk1 .container {
    padding: 0 16px;
  }
}
.cid-uHDYqwUCk1 .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uHDYqwUCk1 .row {
    margin: 0 10px;
  }
}
.cid-uHDYqwUCk1 .row .card {
  position: relative;
  padding: 0;
}
.cid-uHDYqwUCk1 .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #502274;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-uHDYqwUCk1 .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-uHDYqwUCk1 .row .card .decor-wrapper {
    display: none;
  }
}
.cid-uHDYqwUCk1 .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #502274;
  color: #502274;
  border-radius: 100%;
  border: 5px solid #502274;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-uHDYqwUCk1 .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-uHDYqwUCk1 .row .card .icon-decor {
    display: none;
  }
}
.cid-uHDYqwUCk1 .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uHDYqwUCk1 .title-wrapper {
    width: 100%;
  }
}
.cid-uHDYqwUCk1 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uHDYqwUCk1 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uHDYqwUCk1 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHDYqwUCk1 .mbr-section-title {
  color: #000000;
}
.cid-uHDYqwUCk1 .mbr-text {
  color: #efefef;
  text-align: center;
}
.cid-uHDYqxAJKg {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #cde2bb;
}
.cid-uHDYqxAJKg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYqxAJKg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYqxAJKg .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-uHDYqxAJKg .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uHDYqxAJKg .container {
    padding: 0 26px;
  }
}
.cid-uHDYqxAJKg .image-wrapper {
  border: 1px solid #ffffff;
  padding: 20px;
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-uHDYqxAJKg .image-wrapper {
    margin: 0 0 50px 0;
  }
}
.cid-uHDYqxAJKg .image-wrapper .mbr-emoji {
  margin-bottom: 18px;
}
.cid-uHDYqxAJKg .image-wrapper img {
  height: 530px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uHDYqxAJKg .image-wrapper img {
    height: 300px;
  }
}
.cid-uHDYqxAJKg .title-wrapper .mbr-section-subtitle {
  margin-bottom: 18px;
}
.cid-uHDYqxAJKg .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-uHDYqxAJKg .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHDYqxAJKg .title-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-uHDYqxAJKg .mbr-section-title {
  color: #ffffff;
}
.cid-uHDYqxAJKg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uHDYqxAJKg .mbr-text {
  color: #010101;
}
.cid-uHDYqxAJKg .mbr-section-title,
.cid-uHDYqxAJKg .mbr-section-btn {
  color: #010101;
}
.cid-uHDYqy206I {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #689681;
}
.cid-uHDYqy206I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYqy206I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYqy206I .col-title {
  margin-bottom: 32px;
}
.cid-uHDYqy206I .mbr-section-title {
  color: #24262b;
}
.cid-uHDYqy206I .mbr-section-subtitle {
  color: #24262b;
}
.cid-uHDYqy206I .cars-row {
  row-gap: 32px;
}
.cid-uHDYqy206I .card {
  border-radius: 0;
}
.cid-uHDYqy206I .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 50px;
  color: #33363b;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cid-uHDYqy206I .text-wrap {
  flex-grow: 1;
}
.cid-uHDYqy206I .card-title {
  color: #24262b;
}
.cid-uHDYqy206I .card-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-uHDYqy206I .mbr-section-btn {
  margin-top: 12px;
}
.cid-uHDYqy206I .card-text,
.cid-uHDYqy206I .mbr-section-btn {
  color: #010101;
}
.cid-uHDYqy206I .card-title,
.cid-uHDYqy206I .card-wrapper {
  color: #010101;
}
.cid-uHDYqz57KV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cde2bb;
}
.cid-uHDYqz57KV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYqz57KV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYqz57KV .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uHDYqz57KV .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uHDYqz57KV .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHDYqz57KV .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uHDYqz57KV .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHDYqz57KV .mbr-section-title {
  color: #000000;
}
.cid-uHDYqz57KV .mbr-desc {
  color: #fdfde1;
}
.cid-uHDYqz57KV .mbr-text {
  color: #000000;
}
.cid-uHDYqz57KV .mbr-text,
.cid-uHDYqz57KV .text-wrapper {
  color: #000000;
}
.cid-uHDYqz57KV .mbr-section-title,
.cid-uHDYqz57KV .mbr-section-btn {
  color: #000000;
}
.cid-uHDYqzNjJg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #689681;
}
.cid-uHDYqzNjJg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYqzNjJg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYqzNjJg .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uHDYqzNjJg .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uHDYqzNjJg .container {
    padding: 0 30px;
  }
}
.cid-uHDYqzNjJg .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uHDYqzNjJg .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uHDYqzNjJg .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #ffffff;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-uHDYqzNjJg .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uHDYqzNjJg .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uHDYqzNjJg .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uHDYqzNjJg .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uHDYqzNjJg .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uHDYqzNjJg .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uHDYqzNjJg .mbr-section-title {
  color: #010101;
  text-align: center;
}
.cid-uHDYqzNjJg .mbr-card-title {
  color: #2b2b2b;
}
.cid-uHDYqzNjJg .mbr-text {
  color: #4E4E4E;
}
.cid-uHDYqzNjJg .mbr-number {
  color: #FE5115;
}
.cid-uHDYqAmoWN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHDYqAmoWN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYqAmoWN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYqAmoWN .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uHDYqAmoWN .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uHDYqAmoWN .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uHDYqAmoWN .mbr-section-title {
  color: #131313;
}
.cid-uHDYqAmoWN .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uHDYqAmoWN .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uHDYqAmoWN .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uHDYqAmoWN .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uHDYqAmoWN .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uHDYqAmoWN .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uHDYqAmoWN .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uHDYqAmoWN .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uHDYqAmoWN .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a6b1d8;
}
.cid-uHDYqAmoWN .card-title {
  color: #131313;
}
.cid-uHDYqAmoWN .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uHDYqAmoWN .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uHDYqAmoWN .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uHDYqAmoWN .card-link {
    margin-top: 15px;
  }
}
.cid-uHDYqAmoWN .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uHDYqBirml {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #689681;
}
.cid-uHDYqBirml .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYqBirml .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYqBirml .row {
  justify-content: center;
}
.cid-uHDYqBirml .card-wrapper {
  position: relative;
  padding: 80px 150px;
  background-color: #cde2bb;
}
@media (max-width: 1600px) {
  .cid-uHDYqBirml .card-wrapper {
    padding: 80px;
  }
}
@media (max-width: 1440px) {
  .cid-uHDYqBirml .card-wrapper {
    padding: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uHDYqBirml .card-wrapper {
    padding: 30px 20px;
  }
}
.cid-uHDYqBirml .card-wrapper::before {
  content: '';
  position: absolute;
  bottom: -5rem;
  right: -5rem;
  width: 60%;
  height: 110%;
  border-radius: 100%;
  background-image: radial-gradient(#cde2bb, transparent);
  filter: blur(100px);
}
.cid-uHDYqBirml .card-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHDYqBirml .card-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uHDYqBirml .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uHDYqBirml .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uHDYqBirml .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uHDYqBirml .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uHDYqBirml .mbr-section-title {
  color: #000000;
}
.cid-uHDYqBirml .mbr-text,
.cid-uHDYqBirml .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uHDYqBirml .mbr-section-title,
.cid-uHDYqBirml .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uHDYqBZTIM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cde2bb;
}
.cid-uHDYqBZTIM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYqBZTIM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYqBZTIM .content-wrap {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uHDYqBZTIM .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uHDYqBZTIM .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uHDYqBZTIM .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uHDYqBZTIM .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHDYqBZTIM .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uHDYqBZTIM .content-wrap .panel-group .card {
  position: relative;
  padding: 30px;
  margin-top: 20px;
  background-color: #689681;
}
@media (max-width: 992px) {
  .cid-uHDYqBZTIM .content-wrap .panel-group .card {
    padding: 20px;
  }
}
.cid-uHDYqBZTIM .content-wrap .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uHDYqBZTIM .content-wrap .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uHDYqBZTIM .content-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uHDYqBZTIM .content-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uHDYqBZTIM .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #f8e7d2;
}
@media (max-width: 992px) {
  .cid-uHDYqBZTIM .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-uHDYqBZTIM .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #b19a7c;
}
.cid-uHDYqBZTIM .content-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-uHDYqBZTIM .content-wrap .panel-group .card .panel-collapse .panel-body {
  margin: 20px 0 0 0;
}
.cid-uHDYqBZTIM .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHDYqBZTIM .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uHDYqBZTIM .mbr-section-title {
  color: #404349;
}
.cid-uHDYqBZTIM .panel-title-edit {
  color: #ffffff;
}
.cid-uHDYqBZTIM .panel-text {
  color: #404349;
}
.cid-uHDYqBZTIM .mbr-section-title,
.cid-uHDYqBZTIM .title-wrapper,
.cid-uHDYqBZTIM .tabs-wrapper {
  color: #010101;
}
.cid-uHDYqBZTIM .panel-text,
.cid-uHDYqBZTIM .panel-body {
  color: #ffffff;
}
.cid-uHDYqCUNQe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #689681;
  overflow: hidden;
}
.cid-uHDYqCUNQe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYqCUNQe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHDYqCUNQe .container {
    padding: 0 22px;
  }
}
.cid-uHDYqCUNQe .card {
  justify-content: center;
}
.cid-uHDYqCUNQe .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uHDYqCUNQe .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uHDYqCUNQe .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uHDYqCUNQe .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHDYqCUNQe .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uHDYqCUNQe .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #faee0f;
}
@media (max-width: 1440px) {
  .cid-uHDYqCUNQe .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uHDYqCUNQe .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uHDYqCUNQe .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uHDYqCUNQe .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uHDYqCUNQe .mbr-section-title {
  color: #010101;
}
.cid-uHDYqCUNQe .mbr-text {
  color: #000000;
}
.cid-uHDYqDoB7a {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #cde2bb;
}
.cid-uHDYqDoB7a .mbr-text {
  color: #000000;
}
.cid-uHDYqDoB7a .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-uHDYqDoB7a .mbr-section-title {
  color: #010101;
}
.cid-uHFpBWSSKR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-uHFpBWSSKR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHFpBWSSKR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHFpBWSSKR .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHFpBWSSKR .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uHFpBWSSKR .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHFpBWSSKR .panel-group {
    margin-bottom: 24px;
  }
}
.cid-uHFpBWSSKR .panel-group .card {
  position: relative;
  padding: 16px 24px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-top: 8px;
}
@media (max-width: 992px) {
  .cid-uHFpBWSSKR .panel-group .card {
    padding: 16px;
  }
}
.cid-uHFpBWSSKR .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uHFpBWSSKR .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uHFpBWSSKR .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uHFpBWSSKR .panel-group .card .card-header .panel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uHFpBWSSKR .panel-group .card .card-header .panel-title .panel-title-edit {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-uHFpBWSSKR .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #bbd3d3;
  margin-left: 8px;
}
.cid-uHFpBWSSKR .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  color: #7dabab;
}
.cid-uHFpBWSSKR .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  background-color: #f96e47;
}
.cid-uHFpBWSSKR .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
  color: #ffffff;
}
.cid-uHFpBWSSKR .panel-group .card .card-header .panel-title:not(.collapsed)::before {
  opacity: 1;
}
.cid-uHFpBWSSKR .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uHFpBWSSKR .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-uHFpBWSSKR .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uHFpBWSSKR .card-wrapper {
  background-color: #f9f8f8;
  padding: 72px 24px 40px;
  box-shadow: 0 3.5rem 5.5rem 0 #b9b9b9;
}
@media (max-width: 992px) {
  .cid-uHFpBWSSKR .card-wrapper {
    padding: 24px 16px;
  }
}
.cid-uHFpBWSSKR .card-wrapper .icon-wrap {
  margin-bottom: 16px;
}
.cid-uHFpBWSSKR .card-wrapper .icon-wrap .mbr-iconfont {
  height: 88px;
  width: 88px;
  min-width: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffffff;
  color: #a672ff;
  font-size: 42px;
}
.cid-uHFpBWSSKR .card-wrapper .card-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uHFpBWSSKR .card-wrapper .card-title {
    margin-bottom: 24px;
  }
}
.cid-uHFpBWSSKR .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uHFpBWSSKR .card-wrapper .mbr-section-btn .btn {
    padding: 14px;
  }
}
.cid-uHFpBWSSKR .mbr-section-title {
  color: #272b2e;
}
.cid-uHFpBWSSKR .panel-title-edit {
  color: #272b2e;
}
.cid-uHFpBWSSKR .panel-text {
  color: #15171a;
}
.cid-uHFpBWSSKR .card-title {
  color: #272b2e;
}
.cid-uHFpBWSSKR .card-title,
.cid-uHFpBWSSKR .icon-wrap,
.cid-uHFpBWSSKR .mbr-section-btn {
  text-align: center;
}
.cid-uHDYqDVog9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uHDYqDVog9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYqDVog9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYqDVog9 .google-map {
  position: relative;
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-uHDYqDVog9 .google-map {
    margin-bottom: 32px;
  }
}
.cid-uHDYqDVog9 .google-map::before {
  content: '';
  position: absolute;
  bottom: -56px;
  left: 0;
  background-image: linear-gradient(90deg, transparent, #a78aff, #0047ff, transparent);
  height: 1px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uHDYqDVog9 .google-map::before {
    bottom: -32px;
  }
}
.cid-uHDYqDVog9 .google-map iframe {
  height: 700px;
  filter: invert(1);
}
@media (max-width: 992px) {
  .cid-uHDYqDVog9 .google-map iframe {
    height: 350px;
  }
}
.cid-uHDYrRXFXD .navbar-dropdown {
  position: relative !important;
}
.cid-uHDYrRXFXD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHDYrRXFXD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uHDYrRXFXD .dropdown-item:hover,
.cid-uHDYrRXFXD .dropdown-item:focus {
  color: #f35f31 !important;
}
.cid-uHDYrRXFXD .dropdown-item:hover span {
  color: white;
}
.cid-uHDYrRXFXD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uHDYrRXFXD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uHDYrRXFXD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uHDYrRXFXD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uHDYrRXFXD .nav-link {
  position: relative;
}
.cid-uHDYrRXFXD .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uHDYrRXFXD .container {
    flex-wrap: nowrap;
  }
}
.cid-uHDYrRXFXD .navbar-caption:hover,
.cid-uHDYrRXFXD .navbar-caption:focus {
  color: #f35f31 !important;
}
.cid-uHDYrRXFXD .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-uHDYrRXFXD .navbar-nav .nav-item {
  color: #24262b;
}
.cid-uHDYrRXFXD .navbar-nav .nav-item:hover {
  color: #f35f31;
}
.cid-uHDYrRXFXD .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-uHDYrRXFXD .navbar-nav .nav-item a:hover {
  color: #f35f31 !important;
}
.cid-uHDYrRXFXD .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-uHDYrRXFXD .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-uHDYrRXFXD .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-uHDYrRXFXD .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #f35f31 !important;
}
.cid-uHDYrRXFXD .dropdown-menu,
.cid-uHDYrRXFXD .navbar.opened {
  background: #689681 !important;
}
.cid-uHDYrRXFXD .nav-item:focus,
.cid-uHDYrRXFXD .nav-link:focus {
  outline: none;
}
.cid-uHDYrRXFXD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uHDYrRXFXD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHDYrRXFXD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uHDYrRXFXD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uHDYrRXFXD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uHDYrRXFXD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uHDYrRXFXD .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #689681;
  padding: 0 !important;
}
.cid-uHDYrRXFXD .navbar.opened {
  transition: all 0.3s;
}
.cid-uHDYrRXFXD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uHDYrRXFXD .navbar .navbar-logo img {
  width: auto;
}
.cid-uHDYrRXFXD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uHDYrRXFXD .navbar.collapsed {
  justify-content: center;
}
.cid-uHDYrRXFXD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uHDYrRXFXD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uHDYrRXFXD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2rem);
  }
}
.cid-uHDYrRXFXD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uHDYrRXFXD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uHDYrRXFXD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uHDYrRXFXD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uHDYrRXFXD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uHDYrRXFXD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uHDYrRXFXD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uHDYrRXFXD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uHDYrRXFXD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uHDYrRXFXD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uHDYrRXFXD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uHDYrRXFXD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uHDYrRXFXD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uHDYrRXFXD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uHDYrRXFXD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uHDYrRXFXD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uHDYrRXFXD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uHDYrRXFXD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uHDYrRXFXD .navbar.navbar-short {
  min-height: 70px;
}
.cid-uHDYrRXFXD .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-uHDYrRXFXD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uHDYrRXFXD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uHDYrRXFXD .dropdown-item.active,
.cid-uHDYrRXFXD .dropdown-item:active {
  background-color: transparent;
}
.cid-uHDYrRXFXD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uHDYrRXFXD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uHDYrRXFXD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uHDYrRXFXD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #689681;
}
.cid-uHDYrRXFXD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uHDYrRXFXD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uHDYrRXFXD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uHDYrRXFXD .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-uHDYrRXFXD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uHDYrRXFXD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uHDYrRXFXD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uHDYrRXFXD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHDYrRXFXD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uHDYrRXFXD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uHDYrRXFXD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHDYrRXFXD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uHDYrRXFXD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uHDYrRXFXD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uHDYrRXFXD .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uHDYrRXFXD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uHDYrRXFXD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uHDYrRXFXD .navbar {
    height: 70px;
  }
  .cid-uHDYrRXFXD .navbar.opened {
    height: auto;
  }
  .cid-uHDYrRXFXD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uHDYrRXFXD .container-fluid {
  padding: 0 1rem !important;
}
.cid-uHDYrRXFXD .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-uHDYrRXFXD .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-uHDYrRXFXD .navbar-collapse {
    width: 100%;
  }
  .cid-uHDYrRXFXD .navbar-nav {
    width: 100%;
  }
  .cid-uHDYrRXFXD .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-uHDYrSNyUX {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uHDYrSNyUX .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uHDYrSNyUX .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uHDYrSNyUX .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .cid-uHDYrSNyUX .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-uHDYrSNyUX .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-uHDYrSNyUX .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uHDYrSNyUX .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-uHDYrSNyUX .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uHDYrSNyUX .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-uHDYrSNyUX .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uHDYrSNyUX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYrSNyUX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYrTfAtV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHDYrTfAtV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYrTfAtV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHDYrTfAtV .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uHDYrTfAtV .container {
    padding: 0 12px;
  }
}
.cid-uHDYrTfAtV .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uHDYrTfAtV .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uHDYrTfAtV .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uHDYrTfAtV .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uHDYrTfAtV .mbr-section-title {
  color: #222222;
}
.cid-uHDYrTIAQe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #689681;
}
.cid-uHDYrTIAQe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYrTIAQe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYrTIAQe .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uHDYrTIAQe .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uHDYrTIAQe .container {
    padding: 0 16px;
  }
}
.cid-uHDYrTIAQe .row {
  position: relative;
  margin: 0 20px;
}
@media (max-width: 992px) {
  .cid-uHDYrTIAQe .row {
    margin: 0 10px;
  }
}
.cid-uHDYrTIAQe .row .card {
  position: relative;
  padding: 0;
}
.cid-uHDYrTIAQe .row .card .decor-wrapper {
  position: absolute;
  top: -23rem;
  left: -11rem;
  width: 2000px;
  height: 500px;
  border-left: 40px solid #502274;
  border-radius: 0;
  pointer-events: none;
}
@media (max-width: 1300px) {
  .cid-uHDYrTIAQe .row .card .decor-wrapper {
    left: -8rem;
  }
}
@media (max-width: 992px) {
  .cid-uHDYrTIAQe .row .card .decor-wrapper {
    display: none;
  }
}
.cid-uHDYrTIAQe .row .card .icon-decor {
  position: absolute;
  top: 3rem;
  left: -13rem;
  width: 100px;
  height: 100px;
  font-size: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #502274;
  color: #502274;
  border-radius: 100%;
  border: 5px solid #502274;
  z-index: 1;
}
@media (max-width: 1300px) {
  .cid-uHDYrTIAQe .row .card .icon-decor {
    left: -9.8rem;
  }
}
@media (max-width: 992px) {
  .cid-uHDYrTIAQe .row .card .icon-decor {
    display: none;
  }
}
.cid-uHDYrTIAQe .title-wrapper {
  position: relative;
  z-index: 1;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-uHDYrTIAQe .title-wrapper {
    width: 100%;
  }
}
.cid-uHDYrTIAQe .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uHDYrTIAQe .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uHDYrTIAQe .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHDYrTIAQe .mbr-section-title {
  color: #000000;
}
.cid-uHDYrTIAQe .mbr-text {
  color: #efefef;
  text-align: center;
}
.cid-uHDYrU8FO6 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #cde2bb;
}
.cid-uHDYrU8FO6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYrU8FO6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYrU8FO6 .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-uHDYrU8FO6 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uHDYrU8FO6 .container {
    padding: 0 26px;
  }
}
.cid-uHDYrU8FO6 .image-wrapper {
  border: 1px solid #ffffff;
  padding: 20px;
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-uHDYrU8FO6 .image-wrapper {
    margin: 0 0 50px 0;
  }
}
.cid-uHDYrU8FO6 .image-wrapper .mbr-emoji {
  margin-bottom: 18px;
}
.cid-uHDYrU8FO6 .image-wrapper img {
  height: 530px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uHDYrU8FO6 .image-wrapper img {
    height: 300px;
  }
}
.cid-uHDYrU8FO6 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 18px;
}
.cid-uHDYrU8FO6 .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-uHDYrU8FO6 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHDYrU8FO6 .title-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-uHDYrU8FO6 .mbr-section-title {
  color: #ffffff;
}
.cid-uHDYrU8FO6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uHDYrU8FO6 .mbr-text {
  color: #010101;
}
.cid-uHDYrU8FO6 .mbr-section-title,
.cid-uHDYrU8FO6 .mbr-section-btn {
  color: #010101;
}
.cid-uHDYrUAzRW {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #689681;
}
.cid-uHDYrUAzRW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYrUAzRW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYrUAzRW .col-title {
  margin-bottom: 32px;
}
.cid-uHDYrUAzRW .mbr-section-title {
  color: #24262b;
}
.cid-uHDYrUAzRW .mbr-section-subtitle {
  color: #24262b;
}
.cid-uHDYrUAzRW .cars-row {
  row-gap: 32px;
}
.cid-uHDYrUAzRW .card {
  border-radius: 0;
}
.cid-uHDYrUAzRW .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 50px;
  color: #33363b;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.cid-uHDYrUAzRW .text-wrap {
  flex-grow: 1;
}
.cid-uHDYrUAzRW .card-title {
  color: #24262b;
}
.cid-uHDYrUAzRW .card-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-uHDYrUAzRW .mbr-section-btn {
  margin-top: 12px;
}
.cid-uHDYrUAzRW .card-text,
.cid-uHDYrUAzRW .mbr-section-btn {
  color: #010101;
}
.cid-uHDYrUAzRW .card-title,
.cid-uHDYrUAzRW .card-wrapper {
  color: #010101;
}
.cid-uHDYrVlO93 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cde2bb;
}
.cid-uHDYrVlO93 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYrVlO93 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYrVlO93 .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uHDYrVlO93 .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uHDYrVlO93 .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHDYrVlO93 .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uHDYrVlO93 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHDYrVlO93 .mbr-section-title {
  color: #000000;
}
.cid-uHDYrVlO93 .mbr-desc {
  color: #fdfde1;
}
.cid-uHDYrVlO93 .mbr-text {
  color: #000000;
}
.cid-uHDYrVlO93 .mbr-text,
.cid-uHDYrVlO93 .text-wrapper {
  color: #000000;
}
.cid-uHDYrVlO93 .mbr-section-title,
.cid-uHDYrVlO93 .mbr-section-btn {
  color: #000000;
}
.cid-uHDYrVN0LL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #689681;
}
.cid-uHDYrVN0LL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYrVN0LL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYrVN0LL .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-uHDYrVN0LL .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uHDYrVN0LL .container {
    padding: 0 30px;
  }
}
.cid-uHDYrVN0LL .title-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uHDYrVN0LL .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uHDYrVN0LL .card-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 70px 70px 70px 230px;
  background-color: #ffffff;
  border-radius: 16em 3em;
}
@media (max-width: 992px) {
  .cid-uHDYrVN0LL .card-wrapper {
    border-radius: 3em 0 3em 0;
    padding: 30px 20px;
    display: block;
  }
}
.cid-uHDYrVN0LL .card-wrapper .mbr-number {
  margin: 0 0 0 50px;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .cid-uHDYrVN0LL .card-wrapper .mbr-number {
    margin: 0 0 16px 0;
  }
}
.cid-uHDYrVN0LL .card-wrapper .content-wrap .mbr-card-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uHDYrVN0LL .card-wrapper .content-wrap .mbr-card-title {
    margin-bottom: 20px;
  }
}
.cid-uHDYrVN0LL .card-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uHDYrVN0LL .mbr-section-title {
  color: #010101;
  text-align: center;
}
.cid-uHDYrVN0LL .mbr-card-title {
  color: #2b2b2b;
}
.cid-uHDYrVN0LL .mbr-text {
  color: #4E4E4E;
}
.cid-uHDYrVN0LL .mbr-number {
  color: #FE5115;
}
.cid-uHDYrWfk12 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uHDYrWfk12 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYrWfk12 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYrWfk12 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uHDYrWfk12 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uHDYrWfk12 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uHDYrWfk12 .mbr-section-title {
  color: #131313;
}
.cid-uHDYrWfk12 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uHDYrWfk12 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uHDYrWfk12 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uHDYrWfk12 .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uHDYrWfk12 .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uHDYrWfk12 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uHDYrWfk12 .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uHDYrWfk12 .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uHDYrWfk12 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a6b1d8;
}
.cid-uHDYrWfk12 .card-title {
  color: #131313;
}
.cid-uHDYrWfk12 .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uHDYrWfk12 .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uHDYrWfk12 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uHDYrWfk12 .card-link {
    margin-top: 15px;
  }
}
.cid-uHDYrWfk12 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uHDYrX3L4i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #689681;
}
.cid-uHDYrX3L4i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYrX3L4i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYrX3L4i .row {
  justify-content: center;
}
.cid-uHDYrX3L4i .card-wrapper {
  position: relative;
  padding: 80px 150px;
  background-color: #cde2bb;
}
@media (max-width: 1600px) {
  .cid-uHDYrX3L4i .card-wrapper {
    padding: 80px;
  }
}
@media (max-width: 1440px) {
  .cid-uHDYrX3L4i .card-wrapper {
    padding: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uHDYrX3L4i .card-wrapper {
    padding: 30px 20px;
  }
}
.cid-uHDYrX3L4i .card-wrapper::before {
  content: '';
  position: absolute;
  bottom: -5rem;
  right: -5rem;
  width: 60%;
  height: 110%;
  border-radius: 100%;
  background-image: radial-gradient(#cde2bb, transparent);
  filter: blur(100px);
}
.cid-uHDYrX3L4i .card-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHDYrX3L4i .card-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uHDYrX3L4i .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uHDYrX3L4i .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uHDYrX3L4i .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-uHDYrX3L4i .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uHDYrX3L4i .mbr-section-title {
  color: #000000;
}
.cid-uHDYrX3L4i .mbr-text,
.cid-uHDYrX3L4i .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uHDYrX3L4i .mbr-section-title,
.cid-uHDYrX3L4i .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uHDYrXwf69 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #cde2bb;
}
.cid-uHDYrXwf69 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYrXwf69 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYrXwf69 .content-wrap {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uHDYrXwf69 .content-wrap {
    padding: 30px 20px;
  }
}
.cid-uHDYrXwf69 .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uHDYrXwf69 .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uHDYrXwf69 .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHDYrXwf69 .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uHDYrXwf69 .content-wrap .panel-group .card {
  position: relative;
  padding: 30px;
  margin-top: 20px;
  background-color: #689681;
}
@media (max-width: 992px) {
  .cid-uHDYrXwf69 .content-wrap .panel-group .card {
    padding: 20px;
  }
}
.cid-uHDYrXwf69 .content-wrap .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uHDYrXwf69 .content-wrap .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uHDYrXwf69 .content-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uHDYrXwf69 .content-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uHDYrXwf69 .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #f8e7d2;
}
@media (max-width: 992px) {
  .cid-uHDYrXwf69 .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-uHDYrXwf69 .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #b19a7c;
}
.cid-uHDYrXwf69 .content-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-uHDYrXwf69 .content-wrap .panel-group .card .panel-collapse .panel-body {
  margin: 20px 0 0 0;
}
.cid-uHDYrXwf69 .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHDYrXwf69 .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uHDYrXwf69 .mbr-section-title {
  color: #404349;
}
.cid-uHDYrXwf69 .panel-title-edit {
  color: #ffffff;
}
.cid-uHDYrXwf69 .panel-text {
  color: #404349;
}
.cid-uHDYrXwf69 .mbr-section-title,
.cid-uHDYrXwf69 .title-wrapper,
.cid-uHDYrXwf69 .tabs-wrapper {
  color: #010101;
}
.cid-uHDYrXwf69 .panel-text,
.cid-uHDYrXwf69 .panel-body {
  color: #ffffff;
}
.cid-uHDYrYji4Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #689681;
  overflow: hidden;
}
.cid-uHDYrYji4Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYrYji4Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uHDYrYji4Q .container {
    padding: 0 22px;
  }
}
.cid-uHDYrYji4Q .card {
  justify-content: center;
}
.cid-uHDYrYji4Q .content-wrapper {
  padding-right: 32px;
}
@media (max-width: 992px) {
  .cid-uHDYrYji4Q .content-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }
}
.cid-uHDYrYji4Q .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uHDYrYji4Q .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHDYrYji4Q .image-wrapper {
  display: flex;
  justify-content: center;
}
.cid-uHDYrYji4Q .image-wrapper img {
  height: 600px;
  width: 600px;
  border-radius: 100% !important;
  object-fit: cover;
  box-shadow: 10px 10px 60px #faee0f;
}
@media (max-width: 1440px) {
  .cid-uHDYrYji4Q .image-wrapper img {
    height: 500px;
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .cid-uHDYrYji4Q .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 992px) {
  .cid-uHDYrYji4Q .image-wrapper img {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .cid-uHDYrYji4Q .image-wrapper img {
    height: 260px;
    width: 260px;
  }
}
.cid-uHDYrYji4Q .mbr-section-title {
  color: #010101;
}
.cid-uHDYrYji4Q .mbr-text {
  color: #000000;
}
.cid-uHDYrYQ3XZ {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #cde2bb;
}
.cid-uHDYrYQ3XZ .mbr-text {
  color: #000000;
}
.cid-uHDYrYQ3XZ .mbr-section-subtitle {
  color: #f3f6f9;
}
.cid-uHDYrYQ3XZ .mbr-section-title {
  color: #010101;
}
.cid-uHFq7uIDVN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f2f2;
}
.cid-uHFq7uIDVN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHFq7uIDVN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHFq7uIDVN .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uHFq7uIDVN .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uHFq7uIDVN .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uHFq7uIDVN .panel-group {
    margin-bottom: 24px;
  }
}
.cid-uHFq7uIDVN .panel-group .card {
  position: relative;
  padding: 16px 24px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-top: 8px;
}
@media (max-width: 992px) {
  .cid-uHFq7uIDVN .panel-group .card {
    padding: 16px;
  }
}
.cid-uHFq7uIDVN .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uHFq7uIDVN .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uHFq7uIDVN .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uHFq7uIDVN .panel-group .card .card-header .panel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uHFq7uIDVN .panel-group .card .card-header .panel-title .panel-title-edit {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-uHFq7uIDVN .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #bbd3d3;
  margin-left: 8px;
}
.cid-uHFq7uIDVN .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  color: #7dabab;
}
.cid-uHFq7uIDVN .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  background-color: #f96e47;
}
.cid-uHFq7uIDVN .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
  color: #ffffff;
}
.cid-uHFq7uIDVN .panel-group .card .card-header .panel-title:not(.collapsed)::before {
  opacity: 1;
}
.cid-uHFq7uIDVN .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uHFq7uIDVN .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-uHFq7uIDVN .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uHFq7uIDVN .card-wrapper {
  background-color: #f9f8f8;
  padding: 72px 24px 40px;
  box-shadow: 0 3.5rem 5.5rem 0 #b9b9b9;
}
@media (max-width: 992px) {
  .cid-uHFq7uIDVN .card-wrapper {
    padding: 24px 16px;
  }
}
.cid-uHFq7uIDVN .card-wrapper .icon-wrap {
  margin-bottom: 16px;
}
.cid-uHFq7uIDVN .card-wrapper .icon-wrap .mbr-iconfont {
  height: 88px;
  width: 88px;
  min-width: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffffff;
  color: #a672ff;
  font-size: 42px;
}
.cid-uHFq7uIDVN .card-wrapper .card-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uHFq7uIDVN .card-wrapper .card-title {
    margin-bottom: 24px;
  }
}
.cid-uHFq7uIDVN .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uHFq7uIDVN .card-wrapper .mbr-section-btn .btn {
    padding: 14px;
  }
}
.cid-uHFq7uIDVN .mbr-section-title {
  color: #272b2e;
}
.cid-uHFq7uIDVN .panel-title-edit {
  color: #272b2e;
}
.cid-uHFq7uIDVN .panel-text {
  color: #15171a;
}
.cid-uHFq7uIDVN .card-title {
  color: #272b2e;
}
.cid-uHFq7uIDVN .card-title,
.cid-uHFq7uIDVN .icon-wrap,
.cid-uHFq7uIDVN .mbr-section-btn {
  text-align: center;
}
.cid-uHDYrZnjUk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uHDYrZnjUk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDYrZnjUk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHDYrZnjUk .google-map {
  position: relative;
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-uHDYrZnjUk .google-map {
    margin-bottom: 32px;
  }
}
.cid-uHDYrZnjUk .google-map::before {
  content: '';
  position: absolute;
  bottom: -56px;
  left: 0;
  background-image: linear-gradient(90deg, transparent, #a78aff, #0047ff, transparent);
  height: 1px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uHDYrZnjUk .google-map::before {
    bottom: -32px;
  }
}
.cid-uHDYrZnjUk .google-map iframe {
  height: 700px;
  filter: invert(1);
}
@media (max-width: 992px) {
  .cid-uHDYrZnjUk .google-map iframe {
    height: 350px;
  }
}
