body {
  font-family: Gloock;
}
.display-1 {
  font-family: 'Gloock', serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Gloock', serif;
  font-size: 2.25rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.8125rem;
}
.display-4 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1rem;
  line-height: 24px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Gloock', serif;
  font-size: 1.875rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.34375rem;
}
.display-7 {
  font-family: 'Schibsted Grotesk', sans-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: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.8rem;
    font-size: calc( 1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.4375rem + (2.25 - 1.4375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((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: 30px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 30px;
}
.bg-primary {
  background-color: #292929 !important;
}
.bg-success {
  background-color: #f2c4b3 !important;
}
.bg-info {
  background-color: #a1e5cf !important;
}
.bg-warning {
  background-color: #ffb99b !important;
}
.bg-danger {
  background-color: #deb350 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #292929 !important;
  border-color: #292929 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f1f4e9 !important;
  border-color: #f1f4e9 !important;
  color: #80944a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #4e5a2d !important;
  background-color: #ccd7af !important;
  border-color: #ccd7af !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #80944a !important;
  background-color: #ccd7af !important;
  border-color: #ccd7af !important;
}
.btn-info,
.btn-info:active {
  background-color: #a1e5cf !important;
  border-color: #a1e5cf !important;
  color: #1d6a51 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #5dd2ac !important;
  border-color: #5dd2ac !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #1d6a51 !important;
  background-color: #5dd2ac !important;
  border-color: #5dd2ac !important;
}
.btn-success,
.btn-success:active {
  background-color: #f2c4b3 !important;
  border-color: #f2c4b3 !important;
  color: #8e3818 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #e58b69 !important;
  border-color: #e58b69 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #8e3818 !important;
  background-color: #e58b69 !important;
  border-color: #e58b69 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffb99b !important;
  border-color: #ffb99b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ff7c44 !important;
  border-color: #ff7c44 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ff7c44 !important;
  border-color: #ff7c44 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #deb350 !important;
  border-color: #deb350 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #b58922 !important;
  border-color: #b58922 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b58922 !important;
  border-color: #b58922 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #292929;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #292929 !important;
  border-color: #292929 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f1f4e9;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ccd7af !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #80944a !important;
  background-color: #f1f4e9 !important;
  border-color: #f1f4e9 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a1e5cf;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #5dd2ac !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #1d6a51 !important;
  background-color: #a1e5cf !important;
  border-color: #a1e5cf !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f2c4b3;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #e58b69 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #8e3818 !important;
  background-color: #f2c4b3 !important;
  border-color: #f2c4b3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffb99b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ff7c44 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ffb99b !important;
  border-color: #ffb99b !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #deb350;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b58922 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #deb350 !important;
  border-color: #deb350 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.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: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #292929 !important;
}
.text-secondary {
  color: #f1f4e9 !important;
}
.text-success {
  color: #f2c4b3 !important;
}
.text-info {
  color: #a1e5cf !important;
}
.text-warning {
  color: #ffb99b !important;
}
.text-danger {
  color: #deb350 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #c6d2a5 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #e3805c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #51cfa6 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ff7235 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a87f20 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !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: #292929;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #a1e5cf;
}
.alert-warning {
  background-color: #ffb99b;
}
.alert-danger {
  background-color: #deb350;
}
.mbr-gallery-filter li.active .btn {
  background-color: #292929;
  border-color: #292929;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #292929;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #dbdbdb;
}
.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: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fefefc;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1rem;
  line-height: 24px;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #292929 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1rem;
  line-height: 24px;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #292929;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #292929;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #292929;
}
.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: #292929;
  border-bottom-color: #292929;
}
.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: #292929 !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: #f1f4e9 !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='%23292929' %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: color 0.6s;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  box-shadow: none;
  border: 1px solid #292929 !important;
  padding: 13px 58px;
  font-weight: 800 !important;
  min-height: 60px;
}
@media (max-width: 992px) {
  .mbr-section-btn .btn,
  .mbr-section-btn-main .btn {
    padding: 10px 13.5px;
  }
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover,
.mbr-section-btn .btn:focus,
.mbr-section-btn-main .btn:focus {
  box-shadow: none;
  border: 1px solid #292929 !important;
}
.mbr-section-btn .btn-primary,
.mbr-section-btn-main .btn-primary,
.mbr-section-btn .btn-secondary,
.mbr-section-btn-main .btn-secondary,
.mbr-section-btn .btn-success,
.mbr-section-btn-main .btn-success,
.mbr-section-btn .btn-info,
.mbr-section-btn-main .btn-info,
.mbr-section-btn .btn-warning,
.mbr-section-btn-main .btn-warning,
.mbr-section-btn .btn-danger,
.mbr-section-btn-main .btn-danger,
.mbr-section-btn .btn-black,
.mbr-section-btn-main .btn-black,
.mbr-section-btn .btn-white,
.mbr-section-btn-main .btn-white {
  color: #292929 !important;
}
.mbr-section-btn .btn-primary,
.mbr-section-btn-main .btn-primary,
.mbr-section-btn .btn-black,
.mbr-section-btn-main .btn-black {
  color: #f1f4e9 !important;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline,
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline,
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline,
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline,
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline,
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline,
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline,
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
  padding: 0;
  text-decoration: underline;
  border: none !important;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover,
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover,
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover,
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover,
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover,
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover,
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover,
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover,
.mbr-section-btn .btn-primary-outline:focus,
.mbr-section-btn-main .btn-primary-outline:focus,
.mbr-section-btn .btn-secondary-outline:focus,
.mbr-section-btn-main .btn-secondary-outline:focus,
.mbr-section-btn .btn-success-outline:focus,
.mbr-section-btn-main .btn-success-outline:focus,
.mbr-section-btn .btn-info-outline:focus,
.mbr-section-btn-main .btn-info-outline:focus,
.mbr-section-btn .btn-warning-outline:focus,
.mbr-section-btn-main .btn-warning-outline:focus,
.mbr-section-btn .btn-danger-outline:focus,
.mbr-section-btn-main .btn-danger-outline:focus,
.mbr-section-btn .btn-black-outline:focus,
.mbr-section-btn-main .btn-black-outline:focus,
.mbr-section-btn .btn-white-outline:focus,
.mbr-section-btn-main .btn-white-outline:focus {
  border: none !important;
}
.cid-tE2QyCCGbs .navbar-dropdown {
  background-color: #f1f4e9 !important;
  padding: 0;
}
.cid-tE2QyCCGbs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f1f4e9 !important;
  background: #f1f4e9;
}
.cid-tE2QyCCGbs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tE2QyCCGbs .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tE2QyCCGbs .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tE2QyCCGbs .menu_box .navbar.opened,
  .cid-tE2QyCCGbs .menu_box .navbar-collapse {
    background-color: #f1f4e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-tE2QyCCGbs .navbar-dropdown {
  position: relative !important;
}
.cid-tE2QyCCGbs .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tE2QyCCGbs .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tE2QyCCGbs .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tE2QyCCGbs .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tE2QyCCGbs .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tE2QyCCGbs .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f1f4e9;
  }
  .cid-tE2QyCCGbs .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tE2QyCCGbs .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tE2QyCCGbs .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tE2QyCCGbs .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tE2QyCCGbs .offcanvas-body .mbr-text,
  .cid-tE2QyCCGbs .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tE2QyCCGbs .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tE2QyCCGbs .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tE2QyCCGbs .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #212529;
  }
  .cid-tE2QyCCGbs .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tE2QyCCGbs .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tE2QyCCGbs .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tE2QyCCGbs .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tE2QyCCGbs ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tE2QyCCGbs .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tE2QyCCGbs .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tE2QyCCGbs .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tE2QyCCGbs li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tE2QyCCGbs .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tE2QyCCGbs .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tE2QyCCGbs .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tE2QyCCGbs .nav-item {
    margin: 0 !important;
  }
}
.cid-tE2QyCCGbs .nav-item .nav-link {
  position: relative;
}
.cid-tE2QyCCGbs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #292929;
  transition: all 0.3s ease-out;
}
.cid-tE2QyCCGbs .nav-item .nav-link:hover,
.cid-tE2QyCCGbs .nav-item .nav-link:focus {
  opacity: 1;
  color: #292929 !important;
  font-weight: 800 !important;
}
.cid-tE2QyCCGbs .nav-item .nav-link:hover::before,
.cid-tE2QyCCGbs .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-tE2QyCCGbs .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tE2QyCCGbs .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tE2QyCCGbs .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tE2QyCCGbs .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tE2QyCCGbs .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tE2QyCCGbs .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tE2QyCCGbs .offcanvas_box {
    display: none;
  }
}
.cid-tE2QyCCGbs .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tE2QyCCGbs .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tE2QyCCGbs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tE2QyCCGbs .container {
  display: flex;
  margin: auto;
}
.cid-tE2QyCCGbs .iconfont-wrapper {
  color: #212529;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tE2QyCCGbs .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tE2QyCCGbs .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tE2QyCCGbs .navbar-caption {
  color: #212529;
}
.cid-tE2QyCCGbs .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tE2QyCCGbs .navbar-nav {
    margin: 0;
  }
}
.cid-tE2QyCCGbs .dropdown-menu,
.cid-tE2QyCCGbs .navbar.opened {
  background-color: false !important;
}
.cid-tE2QyCCGbs .nav-item:focus,
.cid-tE2QyCCGbs .nav-link:focus {
  outline: none;
}
.cid-tE2QyCCGbs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tE2QyCCGbs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tE2QyCCGbs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tE2QyCCGbs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tE2QyCCGbs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tE2QyCCGbs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tE2QyCCGbs .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tE2QyCCGbs .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tE2QyCCGbs .navbar.opened {
  transition: all 0.3s;
}
.cid-tE2QyCCGbs .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tE2QyCCGbs .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
  border-radius: 5px;
}
.cid-tE2QyCCGbs .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tE2QyCCGbs .navbar.collapsed {
  justify-content: center;
}
.cid-tE2QyCCGbs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tE2QyCCGbs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tE2QyCCGbs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tE2QyCCGbs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tE2QyCCGbs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tE2QyCCGbs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tE2QyCCGbs .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tE2QyCCGbs .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tE2QyCCGbs .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tE2QyCCGbs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tE2QyCCGbs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tE2QyCCGbs .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tE2QyCCGbs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tE2QyCCGbs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tE2QyCCGbs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tE2QyCCGbs .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tE2QyCCGbs .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tE2QyCCGbs .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tE2QyCCGbs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tE2QyCCGbs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tE2QyCCGbs .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tE2QyCCGbs .navbar.navbar-short {
  min-height: 60px;
}
.cid-tE2QyCCGbs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tE2QyCCGbs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tE2QyCCGbs .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;
}
.cid-tE2QyCCGbs .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tE2QyCCGbs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tE2QyCCGbs .dropdown-item.active,
.cid-tE2QyCCGbs .dropdown-item:active {
  background-color: transparent;
}
.cid-tE2QyCCGbs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tE2QyCCGbs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tE2QyCCGbs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tE2QyCCGbs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tE2QyCCGbs ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tE2QyCCGbs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tE2QyCCGbs button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f1f4e9;
  background: #f1f4e9;
}
.cid-tE2QyCCGbs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #212529;
}
.cid-tE2QyCCGbs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tE2QyCCGbs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tE2QyCCGbs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tE2QyCCGbs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tE2QyCCGbs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tE2QyCCGbs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tE2QyCCGbs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tE2QyCCGbs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tE2QyCCGbs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tE2QyCCGbs .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tE2QyCCGbs .navbar {
    height: 70px;
  }
  .cid-tE2QyCCGbs .navbar.opened {
    height: auto;
  }
  .cid-tE2QyCCGbs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tE2QyCCGbs .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tE2QyCCGbs .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tE2QyCCGbs .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tE2QyCCGbs .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-tE2QyCCGbs .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-tE2QyCCGbs .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-tE2QyCCGbs .navbar-caption:hover {
  color: #292929;
}
@media (min-width: 992px) {
  .cid-tE2QyCCGbs .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-tE2QyCCGbs .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-tE2QyCCGbs .text_widget {
  margin-bottom: 32px;
}
.cid-tE2QyCCGbs .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tE2QyCCGbs .text_widget a:hover {
  color: #292929 !important;
}
.cid-tE2QyCCGbs .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tE2QyCCGbs .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tE2QyCCGbs .mbr-section-subtitle,
.cid-tE2QyCCGbs .text_widget,
.cid-tE2QyCCGbs .mbr-section-btn {
  text-align: center;
}
.cid-tE2QyCCGbs a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tE2QyWLAdr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f4e9;
}
.cid-tE2QyWLAdr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2QyWLAdr .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-tE2QyWLAdr .container {
    padding: 0 30px;
  }
}
.cid-tE2QyWLAdr .image-wrapper {
  margin-right: 120px;
}
@media (max-width: 992px) {
  .cid-tE2QyWLAdr .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tE2QyWLAdr .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tE2QyWLAdr .image-wrapper img {
    height: 300px;
  }
}
.cid-tE2QyWLAdr .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tE2QyWLAdr .title-wrapper {
    height: auto;
  }
}
.cid-tE2QyWLAdr .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tE2QyWLAdr .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-tE2QyWLAdr .title-wrapper .title-wrap .subtitle-wrap .icon-wrap {
  width: 100%;
}
.cid-tE2QyWLAdr .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tE2QyWLAdr .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tE2QyWLAdr .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tE2QyWLAdr .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tE2QyWLAdr .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tE2QyWLAdr .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tE2QyWLAdr .mbr-section-subtitle {
  color: #212529;
}
.cid-tE2QyWLAdr .mbr-section-title {
  color: #212529;
}
.cid-tE2QyWLAdr .mbr-text {
  color: #212529;
}
#custom-html-2 img {
  width: 100%;
  height: 100%;
}
.cid-tE2QKacOSD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f4e9;
}
.cid-tE2QKacOSD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2QKacOSD .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-tE2QKacOSD .container {
    padding: 0 30px;
  }
}
.cid-tE2QKacOSD .row {
  justify-content: center;
}
.cid-tE2QKacOSD .mbr-section-title {
  margin-bottom: 50px;
  color: #212529;
  text-align: center;
}
.cid-tE2QKacOSD .item {
  margin-bottom: 50px;
}
.cid-tE2QKacOSD .item a:hover .item-wrapper .item-img img,
.cid-tE2QKacOSD .item a:focus .item-wrapper .item-img img {
  transform: scale(1);
}
.cid-tE2QKacOSD .item a .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.cid-tE2QKacOSD .item a .item-wrapper .item-img img {
  height: 650px;
  object-fit: contain;
  transform: scale(1.02);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tE2QKacOSD .item a .item-wrapper .item-img img {
    height: 450px;
  }
}
.cid-tE2QKacOSD .item a .item-wrapper .item-content .mbr-card-title {
  margin-bottom: 0;
}
.cid-tE2QKacOSD .item a .item-wrapper .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-tE2QKacOSD .border-wrap {
  background-color: #212529;
  height: 1px;
}
.cid-tE2QKacOSD .mbr-card-title {
  color: #212529;
  text-align: center;
}
.cid-tE2QKacOSD .mbr-desc {
  color: #212529;
}
.cid-tE2R8uYgAw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2c4b3;
}
.cid-tE2R8uYgAw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2R8uYgAw .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-tE2R8uYgAw .container {
    padding: 0 30px;
  }
}
.cid-tE2R8uYgAw .row {
  justify-content: center;
}
.cid-tE2R8uYgAw .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-tE2R8uYgAw .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tE2R8uYgAw .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-tE2R8uYgAw .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-tE2R8uYgAw .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tE2R8uYgAw .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tE2R8uYgAw .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tE2R9UkTes {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2c4b3;
}
.cid-tE2R9UkTes .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2R9UkTes .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-tE2R9UkTes .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tE2R9UkTes .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tE2R9UkTes .image-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tE2R9UkTes .image-wrapper img {
    height: 450px;
  }
}
.cid-tE2R9UkTes .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tE2R9UkTes .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tE2R9UkTes .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tE2R9UkTes .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tE2R9UkTes .mbr-section-subtitle {
  color: #212529;
}
.cid-tE2R9UkTes .mbr-section-title {
  color: #212529;
}
.cid-tE2R9UkTes .mbr-text {
  color: #212529;
}
.cid-tE2R9UkTes .mbr-section-title,
.cid-tE2R9UkTes .mbr-section-btn {
  text-align: center;
}
.cid-tE2RaBc3nC {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #292929;
}
.cid-tE2RaBc3nC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2RaBc3nC .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-tE2RaBc3nC .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tE2RaBc3nC .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-tE2RaBc3nC .title-wrapper .title-wrap {
  display: block;
}
.cid-tE2RaBc3nC .title-wrapper .title-wrap .mbr-section-title {
  display: inline-flex;
  margin-bottom: 10px;
}
.cid-tE2RaBc3nC .title-wrapper .phone-wrap {
  display: block;
}
.cid-tE2RaBc3nC .title-wrapper .phone-wrap:hover .mbr-phone,
.cid-tE2RaBc3nC .title-wrapper .phone-wrap:focus .mbr-phone {
  background-color: #a1e5cf;
  color: #292929;
  text-decoration: underline;
}
.cid-tE2RaBc3nC .title-wrapper .phone-wrap .mbr-phone {
  display: inline-flex;
  margin-bottom: 0;
}
.cid-tE2RaBc3nC .list,
.cid-tE2RaBc3nC .list-social {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tE2RaBc3nC .list,
  .cid-tE2RaBc3nC .list-social {
    margin-bottom: 30px;
    padding-left: 0;
  }
}
.cid-tE2RaBc3nC .list .item-wrap,
.cid-tE2RaBc3nC .list-social .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-tE2RaBc3nC .list .item-wrap span,
.cid-tE2RaBc3nC .list-social .item-wrap span {
  position: relative;
  z-index: 1;
}
.cid-tE2RaBc3nC .list .item-wrap:hover,
.cid-tE2RaBc3nC .list-social .item-wrap:hover,
.cid-tE2RaBc3nC .list .item-wrap:focus,
.cid-tE2RaBc3nC .list-social .item-wrap:focus {
  color: #292929;
  text-decoration: underline;
}
.cid-tE2RaBc3nC .list .item-wrap:hover::before,
.cid-tE2RaBc3nC .list-social .item-wrap:hover::before,
.cid-tE2RaBc3nC .list .item-wrap:focus::before,
.cid-tE2RaBc3nC .list-social .item-wrap:focus::before {
  width: 100%;
}
.cid-tE2RaBc3nC .list .item-wrap::before,
.cid-tE2RaBc3nC .list-social .item-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #a1e5cf;
  transition: all 0.3s ease-in-out;
}
.cid-tE2RaBc3nC .list-social {
  padding-left: 120px;
  color: #f1f4e9;
}
@media (max-width: 992px) {
  .cid-tE2RaBc3nC .list-social {
    padding-left: 0;
  }
}
.cid-tE2RaBc3nC .copyright {
  margin: 50px 0 0 0;
  color: #f1f4e9;
  text-align: center;
}
.cid-tE2RaBc3nC .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-tE2RaBc3nC .mbr-phone {
  color: #f1f4e9;
}
.cid-tE2RaBc3nC .list {
  color: #f1f4e9;
}
.cid-tE2QyCCGbs .navbar-dropdown {
  background-color: #f1f4e9 !important;
  padding: 0;
}
.cid-tE2QyCCGbs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f1f4e9 !important;
  background: #f1f4e9;
}
.cid-tE2QyCCGbs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tE2QyCCGbs .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tE2QyCCGbs .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-tE2QyCCGbs .menu_box .navbar.opened,
  .cid-tE2QyCCGbs .menu_box .navbar-collapse {
    background-color: #f1f4e9 !important;
    transition: all 0s ease 0s;
  }
}
.cid-tE2QyCCGbs .navbar-dropdown {
  position: relative !important;
}
.cid-tE2QyCCGbs .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tE2QyCCGbs .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tE2QyCCGbs .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tE2QyCCGbs .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tE2QyCCGbs .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tE2QyCCGbs .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #f1f4e9;
  }
  .cid-tE2QyCCGbs .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tE2QyCCGbs .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tE2QyCCGbs .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tE2QyCCGbs .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tE2QyCCGbs .offcanvas-body .mbr-text,
  .cid-tE2QyCCGbs .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tE2QyCCGbs .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tE2QyCCGbs .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tE2QyCCGbs .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #212529;
  }
  .cid-tE2QyCCGbs .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tE2QyCCGbs .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tE2QyCCGbs .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tE2QyCCGbs .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tE2QyCCGbs ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tE2QyCCGbs .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tE2QyCCGbs .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tE2QyCCGbs .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tE2QyCCGbs li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tE2QyCCGbs .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tE2QyCCGbs .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tE2QyCCGbs .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tE2QyCCGbs .nav-item {
    margin: 0 !important;
  }
}
.cid-tE2QyCCGbs .nav-item .nav-link {
  position: relative;
}
.cid-tE2QyCCGbs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #292929;
  transition: all 0.3s ease-out;
}
.cid-tE2QyCCGbs .nav-item .nav-link:hover,
.cid-tE2QyCCGbs .nav-item .nav-link:focus {
  opacity: 1;
  color: #292929 !important;
  font-weight: 800 !important;
}
.cid-tE2QyCCGbs .nav-item .nav-link:hover::before,
.cid-tE2QyCCGbs .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-tE2QyCCGbs .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tE2QyCCGbs .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tE2QyCCGbs .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tE2QyCCGbs .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tE2QyCCGbs .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tE2QyCCGbs .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tE2QyCCGbs .offcanvas_box {
    display: none;
  }
}
.cid-tE2QyCCGbs .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tE2QyCCGbs .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tE2QyCCGbs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tE2QyCCGbs .container {
  display: flex;
  margin: auto;
}
.cid-tE2QyCCGbs .iconfont-wrapper {
  color: #212529;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tE2QyCCGbs .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tE2QyCCGbs .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tE2QyCCGbs .navbar-caption {
  color: #212529;
}
.cid-tE2QyCCGbs .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tE2QyCCGbs .navbar-nav {
    margin: 0;
  }
}
.cid-tE2QyCCGbs .dropdown-menu,
.cid-tE2QyCCGbs .navbar.opened {
  background-color: false !important;
}
.cid-tE2QyCCGbs .nav-item:focus,
.cid-tE2QyCCGbs .nav-link:focus {
  outline: none;
}
.cid-tE2QyCCGbs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tE2QyCCGbs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tE2QyCCGbs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tE2QyCCGbs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tE2QyCCGbs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tE2QyCCGbs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tE2QyCCGbs .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tE2QyCCGbs .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tE2QyCCGbs .navbar.opened {
  transition: all 0.3s;
}
.cid-tE2QyCCGbs .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tE2QyCCGbs .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
  border-radius: 5px;
}
.cid-tE2QyCCGbs .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-tE2QyCCGbs .navbar.collapsed {
  justify-content: center;
}
.cid-tE2QyCCGbs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tE2QyCCGbs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tE2QyCCGbs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tE2QyCCGbs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tE2QyCCGbs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tE2QyCCGbs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tE2QyCCGbs .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tE2QyCCGbs .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tE2QyCCGbs .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tE2QyCCGbs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tE2QyCCGbs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tE2QyCCGbs .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tE2QyCCGbs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tE2QyCCGbs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tE2QyCCGbs .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tE2QyCCGbs .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tE2QyCCGbs .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tE2QyCCGbs .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tE2QyCCGbs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-tE2QyCCGbs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tE2QyCCGbs .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tE2QyCCGbs .navbar.navbar-short {
  min-height: 60px;
}
.cid-tE2QyCCGbs .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tE2QyCCGbs .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tE2QyCCGbs .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;
}
.cid-tE2QyCCGbs .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tE2QyCCGbs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tE2QyCCGbs .dropdown-item.active,
.cid-tE2QyCCGbs .dropdown-item:active {
  background-color: transparent;
}
.cid-tE2QyCCGbs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tE2QyCCGbs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tE2QyCCGbs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tE2QyCCGbs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tE2QyCCGbs ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tE2QyCCGbs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tE2QyCCGbs button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f1f4e9;
  background: #f1f4e9;
}
.cid-tE2QyCCGbs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #212529;
}
.cid-tE2QyCCGbs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tE2QyCCGbs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tE2QyCCGbs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tE2QyCCGbs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tE2QyCCGbs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tE2QyCCGbs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tE2QyCCGbs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tE2QyCCGbs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tE2QyCCGbs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tE2QyCCGbs .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tE2QyCCGbs .navbar {
    height: 70px;
  }
  .cid-tE2QyCCGbs .navbar.opened {
    height: auto;
  }
  .cid-tE2QyCCGbs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tE2QyCCGbs .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tE2QyCCGbs .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tE2QyCCGbs .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tE2QyCCGbs .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 145px;
}
@media (max-width: 992px) {
  .cid-tE2QyCCGbs .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
@media (max-width: 1400px) {
  .cid-tE2QyCCGbs .mbr-section-btn-main .btn {
    padding: 10px 20px;
  }
}
.cid-tE2QyCCGbs .navbar-caption:hover {
  color: #292929;
}
@media (min-width: 992px) {
  .cid-tE2QyCCGbs .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-tE2QyCCGbs .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-tE2QyCCGbs .text_widget {
  margin-bottom: 32px;
}
.cid-tE2QyCCGbs .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tE2QyCCGbs .text_widget a:hover {
  color: #292929 !important;
}
.cid-tE2QyCCGbs .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tE2QyCCGbs .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tE2QyCCGbs .mbr-section-subtitle,
.cid-tE2QyCCGbs .text_widget,
.cid-tE2QyCCGbs .mbr-section-btn {
  text-align: center;
}
.cid-tE2QyCCGbs a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tE2UZl5EWL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f4e9;
}
.cid-tE2UZl5EWL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2UZl5EWL .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-tE2UZl5EWL .container {
    padding: 0 30px;
  }
}
.cid-tE2UZl5EWL .image-wrapper {
  margin-right: 120px;
}
@media (max-width: 992px) {
  .cid-tE2UZl5EWL .image-wrapper {
    margin: 0;
    height: auto;
  }
}
.cid-tE2UZl5EWL .image-wrapper img {
  height: 580px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tE2UZl5EWL .image-wrapper img {
    height: 300px;
  }
}
.cid-tE2UZl5EWL .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tE2UZl5EWL .title-wrapper {
    height: auto;
  }
}
.cid-tE2UZl5EWL .title-wrapper .title-wrap .subtitle-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.cid-tE2UZl5EWL .title-wrapper .title-wrap .subtitle-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-tE2UZl5EWL .title-wrapper .title-wrap .subtitle-wrap .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #a1e5cf;
  border-radius: 100%;
}
.cid-tE2UZl5EWL .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tE2UZl5EWL .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tE2UZl5EWL .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tE2UZl5EWL .title-wrapper .title-wrap .mbr-section-btn {
  margin: 40px 30px;
}
@media (max-width: 992px) {
  .cid-tE2UZl5EWL .title-wrapper .title-wrap .mbr-section-btn {
    margin: 40px -0.6rem;
  }
}
.cid-tE2UZl5EWL .mbr-section-subtitle {
  color: #212529;
}
.cid-tE2UZl5EWL .mbr-section-title {
  color: #212529;
}
.cid-tE2UZl5EWL .mbr-text {
  color: #212529;
}
.cid-tE2UZxXhEM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f4e9;
}
.cid-tE2UZxXhEM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2UZxXhEM .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-tE2UZxXhEM .container {
    padding: 0 30px;
  }
}
.cid-tE2UZxXhEM .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tE2UZxXhEM .title-wrapper {
    height: auto;
    margin-bottom: 40px;
  }
}
.cid-tE2UZxXhEM .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 40px;
}
.cid-tE2UZxXhEM .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 80px;
}
.cid-tE2UZxXhEM .image-wrapper {
  padding: 0 55px 0 68px;
}
@media (max-width: 992px) {
  .cid-tE2UZxXhEM .image-wrapper {
    padding: 0;
  }
}
.cid-tE2UZxXhEM .image-wrapper img {
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tE2UZxXhEM .image-wrapper img {
    height: 350px;
  }
}
.cid-tE2UZxXhEM .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tE2UZxXhEM .mbr-section-title {
  color: #212529;
}
.cid-tE2UZxXhEM .mbr-section-title,
.cid-tE2UZxXhEM .mbr-section-btn {
  text-align: center;
}
.cid-tE2UZJAVKd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2c4b3;
}
.cid-tE2UZJAVKd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2UZJAVKd .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-tE2UZJAVKd .container {
    padding: 0 30px;
  }
}
.cid-tE2UZJAVKd .row {
  justify-content: center;
}
.cid-tE2UZJAVKd .title-wrapper {
  margin-bottom: 40px;
}
.cid-tE2UZJAVKd .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tE2UZJAVKd .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tE2UZJAVKd .card {
  margin-bottom: 40px;
}
.cid-tE2UZJAVKd .card .card-wrapper .mbr-number {
  margin: 20px 0;
}
.cid-tE2UZJAVKd .card .card-wrapper .mbr-card-title {
  margin-bottom: 25px;
}
.cid-tE2UZJAVKd .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tE2UZJAVKd .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tE2UZJAVKd .mbr-section-title {
  color: #212529;
}
.cid-tE2UZJAVKd .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tE2UZJAVKd .mbr-card-title {
  color: #212529;
  text-align: center;
}
.cid-tE2UZJAVKd .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tE2UZJAVKd .mbr-section-title,
.cid-tE2UZJAVKd .mbr-section-btn {
  text-align: center;
}
.cid-tE2UZX08XS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #292929;
}
.cid-tE2UZX08XS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2UZX08XS .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-tE2UZX08XS .container {
    padding: 0 30px;
  }
}
.cid-tE2UZX08XS .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-tE2UZX08XS .row {
    margin: 0 -34px;
  }
}
.cid-tE2UZX08XS .card {
  padding: 0 34px;
}
@media (max-width: 992px) {
  .cid-tE2UZX08XS .card {
    margin-bottom: 40px;
    padding: 0 12px;
  }
}
.cid-tE2UZX08XS .card .card-wrapper .mbr-number {
  margin-bottom: 25px;
}
.cid-tE2UZX08XS .card .card-wrapper .mbr-card-title {
  margin-bottom: 25px;
}
.cid-tE2UZX08XS .card .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tE2UZX08XS .mbr-number {
  color: #F1F4E9;
  text-align: center;
}
.cid-tE2UZX08XS .mbr-card-title {
  color: #F1F4E9;
  text-align: center;
}
.cid-tE2UZX08XS .mbr-text {
  color: #F1F4E9;
  text-align: center;
}
.cid-tE2V0o0TRw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2c4b3;
}
.cid-tE2V0o0TRw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V0o0TRw .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-tE2V0o0TRw .container {
    padding: 0 30px;
  }
}
.cid-tE2V0o0TRw .row {
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-tE2V0o0TRw .row {
    margin: 0 -34px;
  }
}
.cid-tE2V0o0TRw .title-wrapper {
  margin-bottom: 30px;
}
.cid-tE2V0o0TRw .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tE2V0o0TRw .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tE2V0o0TRw .card {
  padding: 0 34px;
}
@media (max-width: 992px) {
  .cid-tE2V0o0TRw .card {
    margin-bottom: 40px;
    padding: 0 12px;
  }
}
.cid-tE2V0o0TRw .card .card-wrapper .mbr-number {
  margin-bottom: 30px;
}
.cid-tE2V0o0TRw .card .card-wrapper .mbr-card-title {
  margin-bottom: 30px;
}
.cid-tE2V0o0TRw .card .card-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tE2V0o0TRw .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tE2V0o0TRw .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tE2V0o0TRw .mbr-number {
  color: #212529;
  text-align: center;
}
.cid-tE2V0o0TRw .mbr-card-title {
  color: #212529;
  text-align: center;
}
.cid-tE2V0o0TRw .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tE2V0ASsMY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdd4c5;
}
.cid-tE2V0ASsMY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V0ASsMY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tE2V0ASsMY .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tE2V0ASsMY .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tE2V0ASsMY .container {
    padding: 0 30px;
  }
}
.cid-tE2V0ASsMY .row {
  justify-content: center;
}
.cid-tE2V0ASsMY .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-right: 60px;
}
@media (max-width: 992px) {
  .cid-tE2V0ASsMY .title-wrapper {
    height: auto;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.cid-tE2V0ASsMY .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 25px;
}
.cid-tE2V0ASsMY .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-tE2V0ASsMY .title-wrapper .title-wrap .mbr-price {
  margin-bottom: 0;
}
.cid-tE2V0ASsMY .image-wrapper {
  padding: 0 10px;
}
.cid-tE2V0ASsMY .image-wrapper img {
  height: 390px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tE2V0ASsMY .image-wrapper img {
    height: 300px;
  }
}
.cid-tE2V0ASsMY .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tE2V0ASsMY .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tE2V0ASsMY .mbr-price {
  color: #212529;
  text-align: center;
}
.cid-tE2V124LLx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f4e9;
}
.cid-tE2V124LLx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V124LLx .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-tE2V124LLx .container {
    padding: 0 30px;
  }
}
.cid-tE2V124LLx .row {
  justify-content: center;
}
.cid-tE2V124LLx .item {
  margin-bottom: 50px;
}
.cid-tE2V124LLx .item a:hover .item-wrapper .item-img img,
.cid-tE2V124LLx .item a:focus .item-wrapper .item-img img {
  transform: scale(1.05);
}
.cid-tE2V124LLx .item a .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.cid-tE2V124LLx .item a .item-wrapper .item-img img {
  height: 370px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-tE2V124LLx .item a .item-wrapper .item-content .mbr-card-title {
  margin-bottom: 0;
}
.cid-tE2V124LLx .item a .item-wrapper .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-tE2V124LLx .mbr-card-title {
  color: #212529;
}
.cid-tE2V124LLx .mbr-desc {
  color: #212529;
}
.cid-tE2V1pTdko {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f4e9;
}
.cid-tE2V1pTdko .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V1pTdko .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-tE2V1pTdko .container {
    padding: 0 30px;
  }
}
.cid-tE2V1pTdko .row {
  justify-content: center;
}
.cid-tE2V1pTdko .mbr-section-title {
  margin-bottom: 50px;
  color: #212529;
  text-align: center;
}
.cid-tE2V1pTdko .item {
  margin-bottom: 50px;
}
.cid-tE2V1pTdko .item a:hover .item-wrapper .item-img img,
.cid-tE2V1pTdko .item a:focus .item-wrapper .item-img img {
  transform: scale(1);
}
.cid-tE2V1pTdko .item a .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.cid-tE2V1pTdko .item a .item-wrapper .item-img img {
  height: 370px;
  object-fit: cover;
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}
.cid-tE2V1pTdko .item a .item-wrapper .item-content .mbr-card-title {
  margin-bottom: 0;
}
.cid-tE2V1pTdko .item a .item-wrapper .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-tE2V1pTdko .border-wrap {
  background-color: #212529;
  height: 1px;
}
.cid-tE2V1pTdko .mbr-card-title {
  color: #212529;
}
.cid-tE2V1pTdko .mbr-desc {
  color: #212529;
}
.cid-tE2V1NERCG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f4e9;
}
.cid-tE2V1NERCG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V1NERCG .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-tE2V1NERCG .container {
    padding: 0 30px;
  }
}
.cid-tE2V1NERCG .mbr-section-title {
  margin-bottom: 50px;
  color: #212529;
}
@media (min-width: 992px) {
  .cid-tE2V1NERCG .row {
    padding: 0 8px;
  }
}
.cid-tE2V1NERCG .item {
  padding: 0 8px;
}
@media (max-width: 992px) {
  .cid-tE2V1NERCG .item {
    padding: 0 12px;
  }
}
.cid-tE2V1NERCG .item .item-wrapper {
  display: flex;
  border-bottom: 1px solid #212529;
}
@media (max-width: 768px) {
  .cid-tE2V1NERCG .item .item-wrapper {
    flex-direction: column;
  }
}
.cid-tE2V1NERCG .item .item-wrapper .item-img {
  padding: 0 15px;
  margin: 25px 0 40px;
}
.cid-tE2V1NERCG .item .item-wrapper .item-img img {
  height: 160px;
  width: 160px;
  border: 5px solid #212529;
  object-fit: cover;
  border-radius: 100%;
}
.cid-tE2V1NERCG .item .item-wrapper .item-content {
  width: 100%;
  padding: 40px 15px 0;
}
@media (max-width: 768px) {
  .cid-tE2V1NERCG .item .item-wrapper .item-content {
    padding: 0 15px 40px;
  }
}
.cid-tE2V1NERCG .item .item-wrapper .item-content .mbr-name {
  margin-bottom: 0;
}
.cid-tE2V1NERCG .item .item-wrapper .item-content .mbr-role {
  margin-bottom: 0;
}
.cid-tE2V1NERCG .item .item-wrapper .item-content .link-wrap a {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-tE2V1NERCG .item .item-wrapper .item-content .link-wrap a:hover::before,
.cid-tE2V1NERCG .item .item-wrapper .item-content .link-wrap a:focus::before {
  width: 100%;
}
.cid-tE2V1NERCG .item .item-wrapper .item-content .link-wrap a:hover .mbr-iconfont,
.cid-tE2V1NERCG .item .item-wrapper .item-content .link-wrap a:focus .mbr-iconfont {
  transform: translateX(10px);
}
.cid-tE2V1NERCG .item .item-wrapper .item-content .link-wrap a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #b3efdc;
  height: 100%;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-tE2V1NERCG .item .item-wrapper .item-content .link-wrap a .mbr-link {
  position: relative;
  margin-bottom: 0;
  text-decoration: underline;
}
.cid-tE2V1NERCG .item .item-wrapper .item-content .link-wrap a .mbr-iconfont {
  position: relative;
  display: block;
  font-size: 18px;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-tE2V1NERCG .mbr-name {
  color: #212529;
}
.cid-tE2V1NERCG .mbr-role {
  color: #212529;
}
.cid-tE2V1NERCG .mbr-link,
.cid-tE2V1NERCG .mbr-iconfont {
  color: #212529;
}
.cid-tE2V2gYWJl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2c4b3;
}
.cid-tE2V2gYWJl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V2gYWJl .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-tE2V2gYWJl .container {
    padding: 0 30px;
  }
}
.cid-tE2V2gYWJl .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tE2V2gYWJl .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tE2V2gYWJl .mbr-section-subtitle {
  color: #212529;
  text-align: center;
}
.cid-tE2V2gYWJl .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tE2V2FEt39 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2c4b3;
}
.cid-tE2V2FEt39 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V2FEt39 .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-tE2V2FEt39 .container {
    padding: 0 30px;
  }
}
.cid-tE2V2FEt39 .image-wrapper {
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-tE2V2FEt39 .image-wrapper {
    margin: 0 0 30px 0;
  }
}
.cid-tE2V2FEt39 .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tE2V2FEt39 .image-wrapper img {
    height: 300px;
  }
}
.cid-tE2V2FEt39 .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tE2V2FEt39 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tE2V2FEt39 .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-tE2V2FEt39 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 24px;
}
.cid-tE2V2FEt39 .mbr-section-subtitle {
  color: #212529;
}
.cid-tE2V2FEt39 .mbr-section-title {
  color: #212529;
}
.cid-tE2V2FEt39 .mbr-text {
  color: #212529;
}
.cid-tE2V32a2Uq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #292929;
}
.cid-tE2V32a2Uq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V32a2Uq .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-tE2V32a2Uq .container {
    padding: 0 30px;
  }
}
.cid-tE2V32a2Uq .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tE2V32a2Uq .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tE2V32a2Uq .row.content {
  padding: 30px 0;
  border-top: 1px solid #f1f4e9;
  border-bottom: 1px solid #f1f4e9;
}
.cid-tE2V32a2Uq .row.content .desc-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tE2V32a2Uq .row.content .desc-wrapper {
    height: auto;
    margin-bottom: 16px;
  }
}
.cid-tE2V32a2Uq .row.content .desc-wrapper .desc-wrap .mbr-desc {
  margin-bottom: 16px;
}
.cid-tE2V32a2Uq .row.content .desc-wrapper .desc-wrap .rating-wrapper .rating-wrap {
  display: inline-flex;
}
.cid-tE2V32a2Uq .row.content .desc-wrapper .desc-wrap .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
  font-size: 18px;
  margin-left: 2px;
}
.cid-tE2V32a2Uq .row.content .desc-wrapper .desc-wrap .rating-wrapper .rating-wrap .mbr-star:first-child {
  margin-left: 0;
}
.cid-tE2V32a2Uq .row.content .text-wrapper .mbr-text {
  margin-bottom: 18px;
}
.cid-tE2V32a2Uq .row.content .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tE2V32a2Uq .mbr-section-btn {
  margin-top: 30px;
}
.cid-tE2V32a2Uq .mbr-section-subtitle {
  color: #f1f4e9;
  text-align: center;
}
.cid-tE2V32a2Uq .mbr-section-title {
  color: #f1f4e9;
}
.cid-tE2V32a2Uq .mbr-desc {
  color: #f1f4e9;
}
.cid-tE2V32a2Uq .mbr-text {
  color: #f1f4e9;
}
.cid-tE2V32a2Uq .mbr-name {
  color: #f1f4e9;
}
.cid-tE2V32a2Uq .mbr-section-title,
.cid-tE2V32a2Uq .mbr-section-btn {
  text-align: center;
}
.cid-tE2V32a2Uq .mbr-desc,
.cid-tE2V32a2Uq .rating-wrapper {
  text-align: center;
}
.cid-tE2V3rtHOo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdd4c5;
}
.cid-tE2V3rtHOo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V3rtHOo .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-tE2V3rtHOo .container {
    padding: 0 30px;
  }
}
.cid-tE2V3rtHOo .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tE2V3rtHOo .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tE2V3rtHOo .mbr-section-title {
  color: #212529;
}
.cid-tE2V3rtHOo .mbr-text {
  color: #212529;
}
.cid-tE2V3NFHPj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #292929;
}
.cid-tE2V3NFHPj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V3NFHPj .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-tE2V3NFHPj .container {
    padding: 0 30px;
  }
}
.cid-tE2V3NFHPj .row {
  justify-content: center;
}
.cid-tE2V3NFHPj .title-wrapper {
  margin: 0 12%;
  border-bottom: 1px solid #f1f4e9;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tE2V3NFHPj .title-wrapper {
    margin: 0 0 50px 0;
  }
}
@media (max-width: 992px) {
  .cid-tE2V3NFHPj .title-wrapper {
    margin: 0;
  }
}
.cid-tE2V3NFHPj .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-tE2V3NFHPj .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tE2V3NFHPj .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tE2V3NFHPj .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-tE2V3NFHPj .mbr-section-subtitle {
  color: #f1f4e9;
  text-align: center;
}
.cid-tE2V3NFHPj .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-tE2V3NFHPj .mbr-text {
  color: #f1f4e9;
}
.cid-tE2V3NFHPj .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-tE2V473AEh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2c4b3;
}
.cid-tE2V473AEh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V473AEh .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-tE2V473AEh .container {
    padding: 0 30px;
  }
}
.cid-tE2V473AEh .row {
  justify-content: center;
}
.cid-tE2V473AEh .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tE2V473AEh .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tE2V473AEh .title-wrapper .list {
  padding-left: 20px;
  margin-bottom: 16px;
}
.cid-tE2V473AEh .title-wrapper .list .item-wrap {
  margin-bottom: 0;
}
.cid-tE2V473AEh .mbr-section-title {
  color: #212529;
}
.cid-tE2V473AEh .mbr-text {
  color: #212529;
}
.cid-tE2V473AEh .list {
  color: #212529;
}
.cid-tE2V4rbl2O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f1f4e9;
}
.cid-tE2V4rbl2O .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V4rbl2O .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-tE2V4rbl2O .container {
    padding: 0 30px;
  }
}
.cid-tE2V4rbl2O .text-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 152px 0;
}
@media (max-width: 992px) {
  .cid-tE2V4rbl2O .text-wrapper {
    padding: 50px 0;
  }
}
.cid-tE2V4rbl2O .text-wrapper img {
  position: absolute;
  width: 700px;
  height: 700px;
  object-fit: contain;
  top: -30%;
  opacity: .75;
}
.cid-tE2V4rbl2O .text-wrapper .mbr-text {
  width: 100%;
  margin-bottom: 0;
  position: relative;
}
.cid-tE2V4rbl2O .text-wrapper .mbr-desc {
  width: 100%;
  margin: 40px 0 0 0;
  position: relative;
}
.cid-tE2V4rbl2O .mbr-text {
  color: #212529;
  text-align: center;
}
.cid-tE2V4rbl2O .mbr-desc {
  color: #212529;
  text-align: center;
}
.cid-tE2V4TE51s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f4e9;
}
.cid-tE2V4TE51s .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V4TE51s .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-tE2V4TE51s .container {
    padding: 0 30px;
  }
}
.cid-tE2V4TE51s .title-wrapper {
  padding: 100px 0;
}
@media (max-width: 992px) {
  .cid-tE2V4TE51s .title-wrapper {
    padding: 0 0 40px 0;
  }
}
.cid-tE2V4TE51s .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-tE2V4TE51s .title-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-tE2V4TE51s .icon-wrap {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-tE2V4TE51s .icon-wrap {
    margin-bottom: 40px;
  }
}
.cid-tE2V4TE51s .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #deb350;
  border-radius: 100%;
}
.cid-tE2V4TE51s .image-wrapper {
  padding-left: 120px;
}
@media (max-width: 992px) {
  .cid-tE2V4TE51s .image-wrapper {
    padding: 0;
  }
}
.cid-tE2V4TE51s .image-wrapper .image_1 {
  height: 520px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tE2V4TE51s .image-wrapper .image_1 {
    height: 300px;
    margin-bottom: 40px;
  }
}
.cid-tE2V4TE51s .image-wrapper .image_2 {
  height: 380px;
  object-fit: cover;
  margin: -18% 0 0 -12%;
}
@media (max-width: 992px) {
  .cid-tE2V4TE51s .image-wrapper .image_2 {
    height: 250px;
    margin: 0 0 40px 0;
  }
}
.cid-tE2V4TE51s .mbr-section-title {
  color: #212529;
}
.cid-tE2V4TE51s .mbr-text {
  color: #212529;
}
.cid-tE2V5garUW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f1f4e9;
}
.cid-tE2V5garUW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V5garUW .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-tE2V5garUW .container {
    padding: 0 30px;
  }
}
.cid-tE2V5garUW .row {
  position: relative;
  padding-top: 560px;
}
@media (max-width: 768px) {
  .cid-tE2V5garUW .row {
    padding-top: 260px;
  }
}
.cid-tE2V5garUW .row img {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 880px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tE2V5garUW .row img {
    left: 0;
    width: 100%;
    height: 450px;
  }
}
.cid-tE2V5garUW .text-wrapper {
  padding: 170px 75px 140px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tE2V5garUW .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-tE2V5garUW .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tE2V5garUW .text-wrapper .link-wrap {
  margin-top: 40px;
}
.cid-tE2V5garUW .text-wrapper .link-wrap a {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cid-tE2V5garUW .text-wrapper .link-wrap a:hover::before,
.cid-tE2V5garUW .text-wrapper .link-wrap a:focus::before {
  width: 100%;
}
.cid-tE2V5garUW .text-wrapper .link-wrap a:hover .mbr-iconfont,
.cid-tE2V5garUW .text-wrapper .link-wrap a:focus .mbr-iconfont {
  transform: translateX(10px);
}
.cid-tE2V5garUW .text-wrapper .link-wrap a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-color: #b3efdc;
  height: 100%;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-tE2V5garUW .text-wrapper .link-wrap a .mbr-link {
  position: relative;
  margin-bottom: 0;
  text-decoration: underline;
}
.cid-tE2V5garUW .text-wrapper .link-wrap a .mbr-iconfont {
  position: relative;
  display: block;
  font-size: 18px;
  margin-left: 20px;
  transition: all 0.3s ease-in-out;
}
.cid-tE2V5garUW .mbr-text {
  color: #212529;
}
.cid-tE2V5garUW .mbr-link,
.cid-tE2V5garUW .mbr-iconfont {
  color: #212529;
}
.cid-tE2V5zLpJZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f1f4e9;
}
.cid-tE2V5zLpJZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V5zLpJZ .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-tE2V5zLpJZ .container {
    padding: 0 30px;
  }
}
.cid-tE2V5zLpJZ .row {
  position: relative;
}
.cid-tE2V5zLpJZ .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tE2V5zLpJZ .row img {
    top: auto;
    width: 100%;
  }
}
.cid-tE2V5zLpJZ .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .cid-tE2V5zLpJZ .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-tE2V5zLpJZ .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-tE2V5zLpJZ .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tE2V5zLpJZ .mbr-text {
  color: #212529;
}
.cid-tE2V5zLpJZ .mbr-link,
.cid-tE2V5zLpJZ .mbr-iconfont {
  color: #212529;
}
.cid-tE2V5UNgE3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2c4b3;
}
.cid-tE2V5UNgE3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V5UNgE3 .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-tE2V5UNgE3 .container {
    padding: 0 30px;
  }
}
.cid-tE2V5UNgE3 .row {
  justify-content: center;
}
.cid-tE2V5UNgE3 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-tE2V5UNgE3 .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tE2V5UNgE3 .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-tE2V5UNgE3 .video-block .video-wrapper .app-video-wrapper::before {
  color: #212529;
  text-shadow: none;
}
.cid-tE2V5UNgE3 .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tE2V5UNgE3 .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tE2V5UNgE3 .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tE2V6h2HvN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f1f4e9;
}
.cid-tE2V6h2HvN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V6h2HvN .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-tE2V6h2HvN .container {
    padding: 0 30px;
  }
}
.cid-tE2V6h2HvN .row {
  justify-content: space-between;
}
.cid-tE2V6h2HvN .image-wrapper .image_1 {
  height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tE2V6h2HvN .image-wrapper .image_1 {
    height: 350px;
    margin-bottom: 40px;
  }
}
.cid-tE2V6h2HvN .image-wrapper .image_2 {
  margin-top: -2rem;
  margin-right: -2rem;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tE2V6h2HvN .image-wrapper .image_2 {
    height: 250px;
  }
}
.cid-tE2V6FXxMU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #b3efdc;
}
.cid-tE2V6FXxMU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V6FXxMU .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-tE2V6FXxMU .container {
    padding: 0 30px;
  }
}
.cid-tE2V6FXxMU .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tE2V6FXxMU .content-wrapper {
    margin-bottom: 30px;
    height: auto;
  }
}
.cid-tE2V6FXxMU .content-wrapper .cards .card {
  margin-bottom: 25px;
}
.cid-tE2V6FXxMU .content-wrapper .cards .card .title-wrapper {
  margin-bottom: 25px;
}
.cid-tE2V6FXxMU .content-wrapper .cards .card .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-tE2V6FXxMU .content-wrapper .cards .card .title-wrapper .title-wrap .mbr-card-title {
  margin-bottom: 0;
}
.cid-tE2V6FXxMU .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap {
  margin-left: 16px;
  display: inline-flex;
}
.cid-tE2V6FXxMU .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap .mbr-star {
  margin-bottom: 0;
  font-size: 18px;
  margin-left: 2px;
}
.cid-tE2V6FXxMU .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap .mbr-star:first-child {
  margin-left: 0;
}
.cid-tE2V6FXxMU .content-wrapper .cards .card .mbr-text {
  margin-bottom: 0;
}
.cid-tE2V6FXxMU .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-tE2V6FXxMU .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tE2V6FXxMU .embla__slide .card-wrap {
  width: 100%;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .cid-tE2V6FXxMU .embla__slide .card-wrap {
    padding: 0;
  }
}
.cid-tE2V6FXxMU .embla__slide .card-wrap .item-wrapper .image-wrap img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tE2V6FXxMU .embla__slide .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-tE2V6FXxMU .embla__button--next,
.cid-tE2V6FXxMU .embla__button--prev {
  display: flex;
}
.cid-tE2V6FXxMU .embla__button {
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -1.5rem;
  font-size: 12px;
  background-color: #a3a3a3;
  color: #b3efdc;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .75;
}
.cid-tE2V6FXxMU .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tE2V6FXxMU .embla__button:hover {
  background: #a3a3a3;
  color: #b3efdc;
  opacity: 1;
}
.cid-tE2V6FXxMU .embla__button.embla__button--prev {
  left: 0;
  margin-left: 0;
}
.cid-tE2V6FXxMU .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
.cid-tE2V6FXxMU .slider-wrapper {
  padding-left: 30px;
}
@media (max-width: 992px) {
  .cid-tE2V6FXxMU .slider-wrapper {
    padding: 0;
  }
}
.cid-tE2V6FXxMU .embla {
  position: relative;
  width: 100%;
}
.cid-tE2V6FXxMU .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tE2V6FXxMU .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tE2V6FXxMU .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tE2V6FXxMU .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tE2V6FXxMU .mbr-card-title {
  color: #212529;
}
.cid-tE2V6FXxMU .mbr-text {
  color: #212529;
}
.cid-tE2V6ZTd5q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f1f4e9;
}
.cid-tE2V6ZTd5q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V6ZTd5q .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-tE2V6ZTd5q .container {
    padding: 0 30px;
  }
}
.cid-tE2V6ZTd5q .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-tE2V6ZTd5q .content-wrapper .content-wrap .title-wrapper {
  margin-bottom: 50px;
  border-bottom: 1px solid #212529;
  padding-bottom: 50px;
}
.cid-tE2V6ZTd5q .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tE2V6ZTd5q .content-wrapper .content-wrap .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tE2V6ZTd5q .content-wrapper .content-wrap .text-wrapper {
  margin-bottom: 50px;
}
.cid-tE2V6ZTd5q .content-wrapper .content-wrap .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-tE2V6ZTd5q .content-wrapper .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tE2V6ZTd5q .embla__slide {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-tE2V6ZTd5q .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tE2V6ZTd5q .embla__slide .card-wrap {
  width: 100%;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .cid-tE2V6ZTd5q .embla__slide .card-wrap {
    padding: 0;
  }
}
.cid-tE2V6ZTd5q .embla__slide .card-wrap .item-wrapper .image-wrap img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tE2V6ZTd5q .embla__slide .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-tE2V6ZTd5q .embla__button--next,
.cid-tE2V6ZTd5q .embla__button--prev {
  display: flex;
}
.cid-tE2V6ZTd5q .embla__button {
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -1.5rem;
  font-size: 12px;
  background-color: #a3a3a3;
  color: #b3efdc;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .75;
}
.cid-tE2V6ZTd5q .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tE2V6ZTd5q .embla__button:hover {
  background: #a3a3a3;
  color: #b3efdc;
  opacity: 1;
}
.cid-tE2V6ZTd5q .embla__button.embla__button--prev {
  left: 0;
  margin-left: 0;
}
.cid-tE2V6ZTd5q .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
.cid-tE2V6ZTd5q .slider-wrapper {
  padding-left: 30px;
}
@media (max-width: 992px) {
  .cid-tE2V6ZTd5q .slider-wrapper {
    padding: 0;
  }
}
.cid-tE2V6ZTd5q .embla {
  position: relative;
  width: 100%;
}
.cid-tE2V6ZTd5q .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tE2V6ZTd5q .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tE2V6ZTd5q .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tE2V6ZTd5q .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tE2V6ZTd5q .list-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 0 30px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tE2V6ZTd5q .list-wrapper {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-tE2V6ZTd5q .list-wrapper {
    display: block;
  }
}
.cid-tE2V6ZTd5q .list-wrapper .list-wrap .mbr-list-title {
  margin-bottom: 20px;
}
.cid-tE2V6ZTd5q .list-wrapper .list-wrap .list_1 {
  padding-left: 40px;
  margin-bottom: 50px;
  list-style-position: inside;
}
.cid-tE2V6ZTd5q .list-wrapper .list-wrap .list_1 .item-wrap {
  margin-bottom: 10px;
}
.cid-tE2V6ZTd5q .list-wrapper .list-wrap .list_2 {
  padding-left: 0;
  margin-bottom: 50px;
  list-style-type: none;
}
.cid-tE2V6ZTd5q .list-wrapper .list-wrap .list_2 .item-wrap {
  margin-bottom: 10px;
}
.cid-tE2V6ZTd5q .mbr-section-btn {
  padding: 0 30px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-tE2V6ZTd5q .mbr-section-btn {
    padding: 0;
  }
}
.cid-tE2V6ZTd5q .mbr-section-title {
  color: #212529;
}
.cid-tE2V6ZTd5q .mbr-desc {
  color: #212529;
}
.cid-tE2V6ZTd5q .mbr-section-subtitle {
  color: #212529;
}
.cid-tE2V6ZTd5q .mbr-text {
  color: #212529;
}
.cid-tE2V6ZTd5q .mbr-list-title {
  color: #212529;
}
.cid-tE2V6ZTd5q .list_1 {
  color: #212529;
}
.cid-tE2V6ZTd5q .list_2 {
  color: #212529;
}
.cid-tE2V7kHvY3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2c4b3;
}
.cid-tE2V7kHvY3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V7kHvY3 .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-tE2V7kHvY3 .container {
    padding: 0 30px;
  }
}
.cid-tE2V7kHvY3 .row {
  justify-content: center;
}
.cid-tE2V7kHvY3 .item .item-wrapper {
  padding: 0 14px;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tE2V7kHvY3 .item .item-wrapper {
    padding: 0;
  }
}
.cid-tE2V7kHvY3 .item .item-wrapper .item-img img {
  max-height: 60px;
  object-fit: contain;
}
.cid-tE2V7HKVbT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f1f4e9;
}
.cid-tE2V7HKVbT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V7HKVbT .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-tE2V7HKVbT .container {
    padding: 0 30px;
  }
}
.cid-tE2V7HKVbT .row {
  justify-content: center;
}
.cid-tE2V7HKVbT .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tE2V7HKVbT .content-wrapper {
    margin-bottom: 30px;
    height: auto;
  }
}
.cid-tE2V7HKVbT .content-wrapper .cards .card {
  margin-bottom: 25px;
}
.cid-tE2V7HKVbT .content-wrapper .cards .card .title-wrapper {
  margin-bottom: 25px;
}
.cid-tE2V7HKVbT .content-wrapper .cards .card .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-tE2V7HKVbT .content-wrapper .cards .card .title-wrapper .title-wrap .mbr-card-title {
  margin-bottom: 0;
}
.cid-tE2V7HKVbT .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap {
  margin-left: 16px;
  display: inline-flex;
}
.cid-tE2V7HKVbT .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap .mbr-star {
  margin-bottom: 0;
  font-size: 18px;
  margin-left: 2px;
}
.cid-tE2V7HKVbT .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap .mbr-star:first-child {
  margin-left: 0;
}
.cid-tE2V7HKVbT .content-wrapper .cards .card .mbr-text {
  margin-bottom: 0;
}
.cid-tE2V7HKVbT .google-map {
  padding-left: 30px;
}
@media (max-width: 992px) {
  .cid-tE2V7HKVbT .google-map {
    padding: 0;
  }
}
.cid-tE2V7HKVbT .google-map iframe {
  height: 450px;
}
@media (max-width: 992px) {
  .cid-tE2V7HKVbT .google-map iframe {
    height: 300px;
  }
}
.cid-tE2V7HKVbT .mbr-card-title {
  color: #212529;
}
.cid-tE2V7HKVbT .mbr-text {
  color: #212529;
}
.cid-tE2V85rOEX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2c4b3;
}
.cid-tE2V85rOEX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V85rOEX .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-tE2V85rOEX .container {
    padding: 0 30px;
  }
}
.cid-tE2V85rOEX .row {
  justify-content: center;
}
.cid-tE2V85rOEX .form-wrap {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-tE2V85rOEX .form-wrap {
    padding: 0 18px;
  }
}
.cid-tE2V85rOEX .dragArea.row .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tE2V85rOEX .dragArea.row .form-group {
  padding: 0 4px;
  margin-bottom: 40px !important;
}
.cid-tE2V85rOEX .dragArea.row .form-group .form-control-label {
  margin-bottom: 16px;
}
.cid-tE2V85rOEX .dragArea.row .form-group .form-control {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none !important;
  border-bottom: 1px solid #212529 !important;
  padding: 12px;
}
.cid-tE2V85rOEX .dragArea.row .form-group .form-control:hover,
.cid-tE2V85rOEX .dragArea.row .form-group .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #212529 !important;
}
.cid-tE2V85rOEX .dragArea.row .form-group .form-check .form-check-input {
  background-color: #212529;
  border-color: #212529;
}
.cid-tE2V85rOEX .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-tE2V85rOEX .dragArea.row .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-tE2V85rOEX .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tE2V85rOEX .mbr-text {
  color: #212529;
}
.cid-tE2V85rOEX label {
  color: #212529;
}
.cid-tE2V8oEH9S {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdd4c5;
}
.cid-tE2V8oEH9S .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V8oEH9S .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-tE2V8oEH9S .container {
    padding: 0 30px;
  }
}
.cid-tE2V8oEH9S .row {
  justify-content: center;
}
.cid-tE2V8oEH9S .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-tE2V8oEH9S .panel-group .card {
  border-radius: 0;
  border-bottom: 1px solid #212529;
  padding: 30px 0 40px;
}
.cid-tE2V8oEH9S .panel-group .card:first-child {
  border-top: 1px solid #212529;
}
.cid-tE2V8oEH9S .panel-group .card .card-header {
  padding: 10px 0;
  background-color: transparent;
  border: none;
}
.cid-tE2V8oEH9S .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tE2V8oEH9S .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-tE2V8oEH9S .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 18px;
  color: #212529;
  transition: all 0.3s ease-in-out;
  margin-left: 30px;
}
.cid-tE2V8oEH9S .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-tE2V8oEH9S .mbr-section-btn {
  text-align: center;
}
.cid-tE2V8oEH9S .mbr-section-btn .btn {
  text-decoration: none;
}
.cid-tE2V8oEH9S .mbr-section-btn .btn:hover,
.cid-tE2V8oEH9S .mbr-section-btn .btn:focus {
  opacity: .75;
}
.cid-tE2V8oEH9S .mbr-section-title {
  color: #212529;
}
.cid-tE2V8oEH9S .panel-title-edit {
  color: #212529;
}
.cid-tE2V8oEH9S .panel-text {
  color: #212529;
}
.cid-tE2V8Ih7FF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f1f4e9;
}
.cid-tE2V8Ih7FF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V8Ih7FF .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-tE2V8Ih7FF .container {
    padding: 0 30px;
  }
}
.cid-tE2V8Ih7FF .title-wrapper .icon-wrap {
  text-align: center;
  margin-bottom: 50px;
}
.cid-tE2V8Ih7FF .title-wrapper .icon-wrap .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #f1f4e9;
  background-color: #f2c4b3;
  border-radius: 100%;
}
.cid-tE2V8Ih7FF .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-tE2V8Ih7FF .nav.nav-tabs {
  display: block;
  border: none;
}
@media (max-width: 992px) {
  .cid-tE2V8Ih7FF .nav.nav-tabs {
    margin-bottom: 40px;
  }
}
.cid-tE2V8Ih7FF .nav.nav-tabs .nav-item {
  position: relative;
  display: inline-flex;
  margin-bottom: 40px;
  margin-right: 16px;
  background-color: #ffffff;
}
.cid-tE2V8Ih7FF .nav.nav-tabs .nav-item:hover::before {
  width: 100%;
}
.cid-tE2V8Ih7FF .nav.nav-tabs .nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #b3efdc;
  transition: all 0.3s ease-in-out;
}
.cid-tE2V8Ih7FF .nav.nav-tabs .nav-item .nav-link {
  position: relative;
  background-color: transparent;
  color: #212529;
  margin-bottom: 0;
  border-radius: 0;
  border: none;
  padding: 0;
}
.cid-tE2V8Ih7FF .nav.nav-tabs .nav-item .nav-link.active {
  border: none;
  background-color: #b3efdc;
}
.cid-tE2V8Ih7FF .tab-content .tab-pane .image-wrapper img {
  height: 650px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tE2V8Ih7FF .tab-content .tab-pane .image-wrapper img {
    height: 300px;
  }
}
.cid-tE2V8Ih7FF .mbr-section-title {
  color: #212529;
}
.cid-tE2V92WYfM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fdd4c5;
}
.cid-tE2V92WYfM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2V92WYfM .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-tE2V92WYfM .container {
    padding: 0 30px;
  }
}
.cid-tE2V92WYfM .row {
  justify-content: center;
}
.cid-tE2V92WYfM .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-tE2V92WYfM .card-wrapper {
  background-color: #f2c4b3;
  margin-bottom: 30px;
  padding: 25px 100px;
}
.cid-tE2V92WYfM .card-wrapper a .mbr-price {
  padding-bottom: 10px;
  border-bottom: 1px solid #212529;
}
.cid-tE2V92WYfM .card-wrapper a .mbr-desc {
  margin: 10px 0 0;
}
.cid-tE2V92WYfM .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-tE2V92WYfM .mbr-price {
  color: #212529;
  text-align: center;
}
.cid-tE2V92WYfM .mbr-desc {
  color: #212529;
  text-align: center;
}
.cid-tE2RaBc3nC {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #292929;
}
.cid-tE2RaBc3nC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tE2RaBc3nC .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-tE2RaBc3nC .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tE2RaBc3nC .title-wrapper {
    margin-bottom: 30px;
  }
}
.cid-tE2RaBc3nC .title-wrapper .title-wrap {
  display: block;
}
.cid-tE2RaBc3nC .title-wrapper .title-wrap .mbr-section-title {
  display: inline-flex;
  margin-bottom: 10px;
}
.cid-tE2RaBc3nC .title-wrapper .phone-wrap {
  display: block;
}
.cid-tE2RaBc3nC .title-wrapper .phone-wrap:hover .mbr-phone,
.cid-tE2RaBc3nC .title-wrapper .phone-wrap:focus .mbr-phone {
  background-color: #a1e5cf;
  color: #292929;
  text-decoration: underline;
}
.cid-tE2RaBc3nC .title-wrapper .phone-wrap .mbr-phone {
  display: inline-flex;
  margin-bottom: 0;
}
.cid-tE2RaBc3nC .list,
.cid-tE2RaBc3nC .list-social {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-tE2RaBc3nC .list,
  .cid-tE2RaBc3nC .list-social {
    margin-bottom: 30px;
    padding-left: 0;
  }
}
.cid-tE2RaBc3nC .list .item-wrap,
.cid-tE2RaBc3nC .list-social .item-wrap {
  position: relative;
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-tE2RaBc3nC .list .item-wrap span,
.cid-tE2RaBc3nC .list-social .item-wrap span {
  position: relative;
  z-index: 1;
}
.cid-tE2RaBc3nC .list .item-wrap:hover,
.cid-tE2RaBc3nC .list-social .item-wrap:hover,
.cid-tE2RaBc3nC .list .item-wrap:focus,
.cid-tE2RaBc3nC .list-social .item-wrap:focus {
  color: #292929;
  text-decoration: underline;
}
.cid-tE2RaBc3nC .list .item-wrap:hover::before,
.cid-tE2RaBc3nC .list-social .item-wrap:hover::before,
.cid-tE2RaBc3nC .list .item-wrap:focus::before,
.cid-tE2RaBc3nC .list-social .item-wrap:focus::before {
  width: 100%;
}
.cid-tE2RaBc3nC .list .item-wrap::before,
.cid-tE2RaBc3nC .list-social .item-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #a1e5cf;
  transition: all 0.3s ease-in-out;
}
.cid-tE2RaBc3nC .list-social {
  padding-left: 120px;
  color: #f1f4e9;
}
@media (max-width: 992px) {
  .cid-tE2RaBc3nC .list-social {
    padding-left: 0;
  }
}
.cid-tE2RaBc3nC .copyright {
  margin: 50px 0 0 0;
  color: #f1f4e9;
  text-align: center;
}
.cid-tE2RaBc3nC .mbr-section-title {
  color: #f1f4e9;
  text-align: center;
}
.cid-tE2RaBc3nC .mbr-phone {
  color: #f1f4e9;
}
.cid-tE2RaBc3nC .list {
  color: #f1f4e9;
}
