body {
  font-family: Sofia Sans;
}
.display-1 {
  font-family: 'Maven Pro', sans-serif;
  font-size: 4.2rem;
  line-height: 150%;
}
.display-1 > .mbr-iconfont {
  font-size: 5.25rem;
}
.display-2 {
  font-family: 'Sofia Sans', sans-serif;
  font-size: 3.4rem;
  line-height: 100%;
}
.display-2 > .mbr-iconfont {
  font-size: 4.25rem;
}
.display-4 {
  font-family: 'Sofia Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 24px;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Sofia Sans', sans-serif;
  font-size: 1.8rem;
  line-height: 150%;
}
.display-5 > .mbr-iconfont {
  font-size: 2.25rem;
}
.display-7 {
  font-family: 'Sofia Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 150%;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.36rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.94rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.72rem;
    font-size: calc( 1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 12px;
}
.bg-primary {
  background-color: #4f4af3 !important;
}
.bg-success {
  background-color: #ffcd9f !important;
}
.bg-info {
  background-color: #b4dcfa !important;
}
.bg-warning {
  background-color: #e3b4fa !important;
}
.bg-danger {
  background-color: #fd282d !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4f4af3 !important;
  border-color: #4f4af3 !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: #140ed8 !important;
  border-color: #140ed8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #140ed8 !important;
  border-color: #140ed8 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6928 !important;
  border-color: #ff6928 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #d03f00 !important;
  border-color: #d03f00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #d03f00 !important;
  border-color: #d03f00 !important;
}
.btn-info,
.btn-info:active {
  background-color: #b4dcfa !important;
  border-color: #b4dcfa !important;
  color: #0b62a4 !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: #63b6f5 !important;
  border-color: #63b6f5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #0b62a4 !important;
  background-color: #63b6f5 !important;
  border-color: #63b6f5 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffcd9f !important;
  border-color: #ffcd9f !important;
  color: #9f4c00 !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: #ffa048 !important;
  border-color: #ffa048 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #9f4c00 !important;
  background-color: #ffa048 !important;
  border-color: #ffa048 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #e3b4fa !important;
  border-color: #e3b4fa !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: #c563f5 !important;
  border-color: #c563f5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #c563f5 !important;
  border-color: #c563f5 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #fd282d !important;
  border-color: #fd282d !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: #cc0207 !important;
  border-color: #cc0207 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #cc0207 !important;
  border-color: #cc0207 !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: #4f4af3;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #140ed8 !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: #4f4af3 !important;
  border-color: #4f4af3 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6928;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d03f00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6928 !important;
  border-color: #ff6928 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b4dcfa;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #63b6f5 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #0b62a4 !important;
  background-color: #b4dcfa !important;
  border-color: #b4dcfa !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffcd9f;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffa048 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #9f4c00 !important;
  background-color: #ffcd9f !important;
  border-color: #ffcd9f !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e3b4fa;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #c563f5 !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: #e3b4fa !important;
  border-color: #e3b4fa !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fd282d;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #cc0207 !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: #fd282d !important;
  border-color: #fd282d !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: #4f4af3 !important;
}
.text-secondary {
  color: #ff6928 !important;
}
.text-success {
  color: #ffcd9f !important;
}
.text-info {
  color: #b4dcfa !important;
}
.text-warning {
  color: #e3b4fa !important;
}
.text-danger {
  color: #fd282d !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #130dca !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #c13a00 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ff9839 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #54aff4 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #bf54f4 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #bd0206 !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: #4f4af3;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #b4dcfa;
}
.alert-warning {
  background-color: #e3b4fa;
}
.alert-danger {
  background-color: #fd282d;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4f4af3;
  border-color: #4f4af3;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4f4af3;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fff2f2;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Sofia Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 24px;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #4f4af3 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Sofia Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 24px;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #4f4af3;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4f4af3;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4f4af3;
}
.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: #4f4af3;
  border-bottom-color: #4f4af3;
}
.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: #4f4af3 !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: #ff6928 !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='%234f4af3' %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;
  padding: 22px;
}
@media (max-width: 768px) {
  .mbr-section-btn .btn,
  .mbr-section-btn-main .btn {
    padding: 10px 16px;
  }
}
.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;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline,
.mbr-section-btn .btn-primary,
.mbr-section-btn-main .btn-primary {
  border: 2px solid #4f4af3 !important;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover,
.mbr-section-btn .btn-primary:hover,
.mbr-section-btn-main .btn-primary:hover,
.mbr-section-btn .btn-primary-outline:focus,
.mbr-section-btn-main .btn-primary-outline:focus,
.mbr-section-btn .btn-primary:focus,
.mbr-section-btn-main .btn-primary:focus {
  border: 2px solid #4f4af3 !important;
}
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline,
.mbr-section-btn .btn-secondary,
.mbr-section-btn-main .btn-secondary {
  border: 2px solid #ff6928 !important;
}
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover,
.mbr-section-btn .btn-secondary:hover,
.mbr-section-btn-main .btn-secondary:hover,
.mbr-section-btn .btn-secondary-outline:focus,
.mbr-section-btn-main .btn-secondary-outline:focus,
.mbr-section-btn .btn-secondary:focus,
.mbr-section-btn-main .btn-secondary:focus {
  border: 2px solid #ff6928 !important;
}
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline,
.mbr-section-btn .btn-success,
.mbr-section-btn-main .btn-success {
  border: 2px solid #ffcd9f !important;
}
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover,
.mbr-section-btn .btn-success:hover,
.mbr-section-btn-main .btn-success:hover,
.mbr-section-btn .btn-success-outline:focus,
.mbr-section-btn-main .btn-success-outline:focus,
.mbr-section-btn .btn-success:focus,
.mbr-section-btn-main .btn-success:focus {
  border: 2px solid #ffcd9f !important;
}
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline,
.mbr-section-btn .btn-info,
.mbr-section-btn-main .btn-info {
  border: 2px solid #b4dcfa !important;
}
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover,
.mbr-section-btn .btn-info:hover,
.mbr-section-btn-main .btn-info:hover,
.mbr-section-btn .btn-info-outline:focus,
.mbr-section-btn-main .btn-info-outline:focus,
.mbr-section-btn .btn-info:focus,
.mbr-section-btn-main .btn-info:focus {
  border: 2px solid #b4dcfa !important;
}
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline,
.mbr-section-btn .btn-warning,
.mbr-section-btn-main .btn-warning {
  border: 2px solid #e3b4fa !important;
}
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover,
.mbr-section-btn .btn-warning:hover,
.mbr-section-btn-main .btn-warning:hover,
.mbr-section-btn .btn-warning-outline:focus,
.mbr-section-btn-main .btn-warning-outline:focus,
.mbr-section-btn .btn-warning:focus,
.mbr-section-btn-main .btn-warning:focus {
  border: 2px solid #e3b4fa !important;
}
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline,
.mbr-section-btn .btn-danger,
.mbr-section-btn-main .btn-danger {
  border: 2px solid #fd282d !important;
}
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover,
.mbr-section-btn .btn-danger:hover,
.mbr-section-btn-main .btn-danger:hover,
.mbr-section-btn .btn-danger-outline:focus,
.mbr-section-btn-main .btn-danger-outline:focus,
.mbr-section-btn .btn-danger:focus,
.mbr-section-btn-main .btn-danger:focus {
  border: 2px solid #fd282d !important;
}
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline,
.mbr-section-btn .btn-black,
.mbr-section-btn-main .btn-black {
  border: 2px solid #000000 !important;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover,
.mbr-section-btn .btn-black:hover,
.mbr-section-btn-main .btn-black:hover,
.mbr-section-btn .btn-black-outline:focus,
.mbr-section-btn-main .btn-black-outline:focus,
.mbr-section-btn .btn-black:focus,
.mbr-section-btn-main .btn-black:focus {
  border: 2px solid #000000 !important;
}
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline,
.mbr-section-btn .btn-white,
.mbr-section-btn-main .btn-white {
  border: 2px solid #ffffff !important;
}
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover,
.mbr-section-btn .btn-white:hover,
.mbr-section-btn-main .btn-white:hover,
.mbr-section-btn .btn-white-outline:focus,
.mbr-section-btn-main .btn-white-outline:focus,
.mbr-section-btn .btn-white:focus,
.mbr-section-btn-main .btn-white:focus {
  border: 2px solid #ffffff !important;
}
.cid-v2dUfmKPqT .navbar-dropdown {
  background-color: #853c18 !important;
  padding: 0;
}
.cid-v2dUfmKPqT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #853c18 !important;
  background: #853c18;
}
.cid-v2dUfmKPqT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2dUfmKPqT .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v2dUfmKPqT .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-v2dUfmKPqT .menu_box .navbar.opened,
  .cid-v2dUfmKPqT .menu_box .navbar-collapse {
    background-color: #853c18 !important;
    transition: all 0s ease 0s;
  }
}
.cid-v2dUfmKPqT .navbar-dropdown {
  position: relative !important;
}
.cid-v2dUfmKPqT .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v2dUfmKPqT .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v2dUfmKPqT .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v2dUfmKPqT .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-v2dUfmKPqT .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v2dUfmKPqT .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #ffcd9f;
  }
  .cid-v2dUfmKPqT .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v2dUfmKPqT .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v2dUfmKPqT .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v2dUfmKPqT .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v2dUfmKPqT .offcanvas-body .mbr-text,
  .cid-v2dUfmKPqT .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-v2dUfmKPqT .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-v2dUfmKPqT .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v2dUfmKPqT .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #222222;
  }
  .cid-v2dUfmKPqT .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v2dUfmKPqT .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v2dUfmKPqT .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v2dUfmKPqT .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v2dUfmKPqT ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v2dUfmKPqT .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v2dUfmKPqT .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-v2dUfmKPqT .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v2dUfmKPqT li.nav-item {
    position: relative;
    display: inline-block;
    padding: 10px 14px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
    margin: 0;
    border-radius: 8px;
    border: 2px solid transparent;
  }
  .cid-v2dUfmKPqT .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v2dUfmKPqT .nav-item {
  margin: 4px 15px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .cid-v2dUfmKPqT .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v2dUfmKPqT .nav-item {
    margin: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-v2dUfmKPqT .nav-item:hover,
  .cid-v2dUfmKPqT .nav-item:focus {
    background-color: #ffffff;
    border-color: #ff6928;
  }
}
.cid-v2dUfmKPqT .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-v2dUfmKPqT .nav-item .nav-link:hover,
.cid-v2dUfmKPqT .nav-item .nav-link:focus {
  opacity: 1;
  color: #4f4af3 !important;
}
.cid-v2dUfmKPqT .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v2dUfmKPqT .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-v2dUfmKPqT .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-v2dUfmKPqT .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v2dUfmKPqT .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-v2dUfmKPqT .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v2dUfmKPqT .offcanvas_box {
    display: none;
  }
}
.cid-v2dUfmKPqT .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v2dUfmKPqT .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v2dUfmKPqT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-v2dUfmKPqT .container {
  display: flex;
  margin: auto;
}
.cid-v2dUfmKPqT .iconfont-wrapper {
  color: #222222;
  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-v2dUfmKPqT .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v2dUfmKPqT .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v2dUfmKPqT .navbar-caption {
  color: #222222;
}
.cid-v2dUfmKPqT .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v2dUfmKPqT .navbar-nav {
    margin: 0;
  }
}
.cid-v2dUfmKPqT .dropdown-menu,
.cid-v2dUfmKPqT .navbar.opened {
  background-color: false !important;
}
.cid-v2dUfmKPqT .nav-item:focus,
.cid-v2dUfmKPqT .nav-link:focus {
  outline: none;
}
.cid-v2dUfmKPqT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2dUfmKPqT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2dUfmKPqT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2dUfmKPqT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2dUfmKPqT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2dUfmKPqT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2dUfmKPqT .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-v2dUfmKPqT .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-v2dUfmKPqT .navbar.opened {
  transition: all 0.3s;
}
.cid-v2dUfmKPqT .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v2dUfmKPqT .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 8px;
}
.cid-v2dUfmKPqT .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-v2dUfmKPqT .navbar.collapsed {
  justify-content: center;
}
.cid-v2dUfmKPqT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2dUfmKPqT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2dUfmKPqT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2dUfmKPqT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2dUfmKPqT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2dUfmKPqT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v2dUfmKPqT .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v2dUfmKPqT .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v2dUfmKPqT .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v2dUfmKPqT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2dUfmKPqT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2dUfmKPqT .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v2dUfmKPqT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2dUfmKPqT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-v2dUfmKPqT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2dUfmKPqT .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v2dUfmKPqT .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v2dUfmKPqT .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v2dUfmKPqT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-v2dUfmKPqT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2dUfmKPqT .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v2dUfmKPqT .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2dUfmKPqT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2dUfmKPqT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2dUfmKPqT .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-v2dUfmKPqT .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v2dUfmKPqT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2dUfmKPqT .dropdown-item.active,
.cid-v2dUfmKPqT .dropdown-item:active {
  background-color: transparent;
}
.cid-v2dUfmKPqT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2dUfmKPqT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2dUfmKPqT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2dUfmKPqT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2dUfmKPqT ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-v2dUfmKPqT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2dUfmKPqT button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #853c18;
  background: #ffffff;
}
.cid-v2dUfmKPqT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-v2dUfmKPqT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2dUfmKPqT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2dUfmKPqT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2dUfmKPqT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2dUfmKPqT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2dUfmKPqT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2dUfmKPqT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2dUfmKPqT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2dUfmKPqT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v2dUfmKPqT .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-v2dUfmKPqT .navbar {
    height: 70px;
  }
  .cid-v2dUfmKPqT .navbar.opened {
    height: auto;
  }
  .cid-v2dUfmKPqT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2dUfmKPqT .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v2dUfmKPqT .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v2dUfmKPqT .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-v2dUfmKPqT .mbr-section-btn-main .btn {
  margin: 0 12px 8px 12px;
  padding: 10px 16px;
}
@media (max-width: 992px) {
  .cid-v2dUfmKPqT .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-v2dUfmKPqT .navbar-caption:hover {
  color: #4f4af3;
}
@media (min-width: 992px) {
  .cid-v2dUfmKPqT .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-v2dUfmKPqT .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-v2dUfmKPqT .text_widget {
  margin-bottom: 24px;
}
.cid-v2dUfmKPqT .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-v2dUfmKPqT .text_widget a:hover {
  color: #ff6928 !important;
}
.cid-v2dUfmKPqT .mbr-section-subtitle {
  color: #222222;
  text-align: center;
}
.cid-v2dUfmKPqT .mbr-text {
  color: #222222;
  text-align: center;
}
.cid-v2dUfmKPqT .mbr-section-subtitle,
.cid-v2dUfmKPqT .text_widget,
.cid-v2dUfmKPqT .mbr-section-btn {
  text-align: center;
}
.cid-v2dUfmKPqT a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v2eGyxEbQG {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ececec;
}
.cid-v2eGyxEbQG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2eGyxEbQG .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-v2eGyxEbQG .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-v2eGyxEbQG img {
  border-radius: 1rem;
}
.cid-v2eGyxEbQG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2eGyxEbQG .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v2eGyxEbQG .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v2eGyxEbQG .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2eGyxEbQG .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2eGyxEbQG .mbr-section-subtitle,
.cid-v2eGyxEbQG .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-v2eGyxEbQG .mbr-text,
.cid-v2eGyxEbQG .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-v2e7eVE74P {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2e7eVE74P .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-v2e7eVE74P .container {
    max-width: 1040px;
  }
}
.cid-v2e7eVE74P .row {
  justify-content: center;
}
.cid-v2e7eVE74P .item:focus,
.cid-v2e7eVE74P span:focus {
  outline: none;
}
.cid-v2e7eVE74P .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-v2e7eVE74P .col-items {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v2e7eVE74P .item {
    width: 100%;
  }
  .cid-v2e7eVE74P .item:first-child {
    padding-bottom: 0.5rem;
  }
  .cid-v2e7eVE74P .item:last-child {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-v2e7eVE74P .item:first-child {
    padding-right: 0.5rem;
  }
  .cid-v2e7eVE74P .item:last-child {
    padding-left: 0.5rem;
  }
}
.cid-v2e7eVE74P .item-wrap {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 24px;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-v2e7eVE74P .item-wrap {
    padding: 27px;
  }
}
@media (min-width: 992px) {
  .cid-v2e7eVE74P .item-wrap {
    padding: 50px;
  }
}
.cid-v2e7eVE74P .item-content {
  width: 100%;
}
.cid-v2e7eVE74P .label-text {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-bottom: 16px;
}
.cid-v2e7eVE74P .mbr-text {
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-v2e7eVE74P .item-title {
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 0;
}
.cid-v2e7eVE74P .list-container {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}
.cid-v2e7eVE74P .list-item {
  display: flex;
  align-items: center;
}
.cid-v2e7eVE74P .list-item:not(:last-child) {
  margin-bottom: 16px;
}
.cid-v2e7eVE74P .icon-box {
  padding-right: 14px;
}
.cid-v2e7eVE74P .list-text {
  flex-grow: 1;
  color: #000000;
  margin-bottom: 0;
}
.cid-v2e7eVE74P .link-container {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
@media (min-width: 992px) {
  .cid-v2e7eVE74P .link-container {
    margin-top: 72px;
  }
}
.cid-v2e7eVE74P .link-container .link:first-child {
  margin-bottom: 16px;
}
.cid-v2e7eVE74P .link-container .link span {
  padding-right: 10px;
}
.cid-v2e7eVE74P .item-title,
.cid-v2e7eVE74P .mbr-section-btn {
  color: #000000;
}
.cid-v2eNNwVDdZ {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2eNNwVDdZ .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #853c18;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-v2eNNwVDdZ .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-v2eNNwVDdZ .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-v2eNNwVDdZ .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-v2eNNwVDdZ .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-v2eNNwVDdZ .items-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-left: 1.736vw;
}
@media (max-width: 991px) {
  .cid-v2eNNwVDdZ .items-container {
    padding-left: 6.66vw;
  }
}
.cid-v2eNNwVDdZ .item {
  position: relative;
  margin-bottom: 0.83vw;
}
@media (max-width: 991px) {
  .cid-v2eNNwVDdZ .item {
    margin-bottom: 3.2vw;
  }
}
.cid-v2eNNwVDdZ .item:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -1.4vw;
  width: 0.6vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-v2eNNwVDdZ .item:before {
    left: -2.5vw;
    width: 1.2vw;
  }
}
@media (max-width: 575px) {
  .cid-v2eNNwVDdZ .item:before {
    left: -2.7vw;
    width: 1.6vw;
  }
}
.cid-v2eNNwVDdZ .mbr-text {
  color: #000000;
}
.cid-tFclRoOxlD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tFclRoOxlD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFclRoOxlD .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-tFclRoOxlD .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tFclRoOxlD .container {
    padding: 0 12px;
  }
}
.cid-tFclRoOxlD .row {
  justify-content: center;
}
.cid-tFclRoOxlD .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  background-color: #ffffff;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-tFclRoOxlD .card-wrapper {
    display: block;
    padding: 24px;
    border-radius: 32px;
  }
}
@media (max-width: 992px) {
  .cid-tFclRoOxlD .card-wrapper .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-tFclRoOxlD .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tFclRoOxlD .card-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tFclRoOxlD .card-wrapper .title-wrapper .mbr-text span {
  background-color: #ffffff;
  padding: 2px 6px;
  border-radius: 8px;
}
.cid-tFclRoOxlD .card-wrapper .mbr-section-btn {
  height: 100%;
}
.cid-tFclRoOxlD .card-wrapper .mbr-section-btn .btn {
  min-width: 200px;
}
.cid-tFclRoOxlD .mbr-section-title {
  color: #000000;
}
.cid-tFclRoOxlD .mbr-text {
  color: #222222;
}
.cid-tFclRoOxlD .mbr-text,
.cid-tFclRoOxlD .mbr-section-btn {
  color: #000000;
}
.cid-v2eNfFNExb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #853c18;
}
.cid-v2eNfFNExb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2eNfFNExb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2eNfFNExb .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-v2eNfFNExb .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v2eNfFNExb .items-wrapper {
  justify-content: center;
  margin: 0 -10px;
}
.cid-v2eNfFNExb .items-wrapper .item {
  padding: 0 10px;
}
.cid-v2eNfFNExb .item {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v2eNfFNExb .item {
    margin-bottom: 16px;
  }
}
.cid-v2eNfFNExb .item .item-wrapper {
  padding: 10px;
  background-color: #ffffff;
  height: 100%;
}
.cid-v2eNfFNExb .item .item-wrapper .item-img {
  margin-bottom: 32px;
}
.cid-v2eNfFNExb .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
}
.cid-v2eNfFNExb .item .item-wrapper .item-content {
  padding: 0 40px 20px;
}
@media (max-width: 992px) {
  .cid-v2eNfFNExb .item .item-wrapper .item-content {
    padding: 0 10px;
  }
}
.cid-v2eNfFNExb .item .item-wrapper .item-content .item-title {
  margin-bottom: 20px;
}
.cid-v2eNfFNExb .item .item-wrapper .item-content .item-text {
  margin-bottom: 20px;
}
.cid-v2eNfFNExb .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v2eNfFNExb .item-title {
  color: #000c3f;
}
.cid-v2eNfFNExb .item-text {
  color: #000c3f;
}
.cid-v2eNfFNExb .item-title,
.cid-v2eNfFNExb .mbr-section-btn {
  color: #02050a;
  text-align: center;
}
.cid-v2eNX4aEzV {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ececec;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-v2eNX4aEzV .container {
    padding: 0 24px;
  }
}
.cid-v2eNX4aEzV .card {
  justify-content: center;
}
.cid-v2eNX4aEzV .title-wrapper {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-v2eNX4aEzV .title-wrapper {
    padding: 0 24px 24px;
  }
}
.cid-v2eNX4aEzV .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v2eNX4aEzV .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-v2eNX4aEzV .text-wrapper {
  border-top: 1px solid #72716b;
  display: flex;
  justify-content: space-between;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-v2eNX4aEzV .text-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-v2eNX4aEzV .text-wrapper .mbr-text {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-v2eNX4aEzV .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v2eNX4aEzV .text-wrapper .mbr-text:last-child {
    margin-bottom: 0;
  }
}
.cid-v2eNX4aEzV .mbr-section-title {
  color: #F9F6E0;
}
.cid-v2eNX4aEzV .mbr-desc {
  color: #F9F6E0;
}
.cid-v2eNX4aEzV .mbr-text {
  color: #000000;
}
.cid-v2eNX4aEzV .mbr-section-btn {
  text-align: right;
}
.cid-v2eNX4aEzV .mbr-section-title,
.cid-v2eNX4aEzV .mbr-section-btn {
  color: #000000;
}
.cid-v2ePy59K6r {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v2ePy59K6r .mbr-section-subtitle {
  margin-bottom: 6px;
  color: #000000;
}
.cid-v2ePy59K6r .mbr-section-title {
  margin-bottom: 0;
  color: #191c2f;
}
.cid-v2ePy59K6r .card_wrapper {
  margin-top: 40px;
  padding: 60px 40px;
  background-color: #ffffff;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 3px 4px 0 rgba(38, 59, 94, 0.1);
}
.cid-v2ePy59K6r .card_wrapper:hover {
  transform: translateY(-16px);
  box-shadow: 0 30px 60px 0 rgba(38, 59, 94, 0.1);
}
.cid-v2ePy59K6r .card_wrapper:hover .card_title {
  color: #4f4af3;
}
.cid-v2ePy59K6r .card_wrapper:hover .card_link .mbr-iconfont {
  color: #4f4af3 !important;
}
.cid-v2ePy59K6r .card_wrapper:hover .shape {
  opacity: 1;
}
.cid-v2ePy59K6r .card_wrapper:hover .shape_1 {
  top: -5px;
  left: -6px;
}
.cid-v2ePy59K6r .card_wrapper:hover .shape_2 {
  transform: rotate(360deg);
  top: -6px;
  right: -2px;
}
.cid-v2ePy59K6r .card_wrapper:hover .shape_3 {
  left: -6px;
  bottom: -6px;
  transform: rotate(360deg);
}
.cid-v2ePy59K6r .card_wrapper:hover .shape_4 {
  right: -20px;
  bottom: 24px;
}
.cid-v2ePy59K6r .icon_block {
  margin-bottom: 40px;
}
.cid-v2ePy59K6r .icon_block .iconfont-wrapper {
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  position: relative;
  box-shadow: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  background-image: linear-gradient(40deg, #2f1508 0%, rgba(133, 60, 24, 0.8) 100%);
}
.cid-v2ePy59K6r .icon_block .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-v2ePy59K6r .card_title {
  margin-bottom: 20px;
  color: #051441;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v2ePy59K6r .card_text {
  margin-bottom: 50px;
}
.cid-v2ePy59K6r .card_link {
  display: block;
}
.cid-v2ePy59K6r .card_link a {
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
}
.cid-v2ePy59K6r .card_link a:hover {
  transform: translateX(6px);
}
.cid-v2ePy59K6r .card_link .mbr-iconfont {
  line-height: 1;
  font-size: 48px;
  color: #afb8ce;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v2ePy59K6r .shape {
  opacity: 0;
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-v2ePy59K6r .shape_1 {
  top: 9px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: #ffcd9f;
  border-radius: 50%;
}
.cid-v2ePy59K6r .shape_2 {
  top: 9px;
  right: 12px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #b4dcfa;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.cid-v2ePy59K6r .shape_3 {
  left: 12px;
  bottom: 9px;
  width: 10px;
  height: 10px;
  background-color: #e3b4fa;
}
.cid-v2ePy59K6r .shape_4 {
  right: 12px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  background: #fd282d;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .cid-v2ePy59K6r .card_wrapper {
    padding: 40px 30px;
    max-width: 370px;
    margin: 30px auto 0;
  }
  .cid-v2ePy59K6r .card_title {
    margin-bottom: 15px;
  }
  .cid-v2ePy59K6r .card_text {
    margin-bottom: 20px;
  }
  .cid-v2ePy59K6r .card_link .mbr-iconfont {
    font-size: 42px;
  }
}
.cid-v2ePy59K6r .card_title,
.cid-v2ePy59K6r .icon_block {
  color: #191c2f;
  text-align: center;
}
.cid-v2ePy59K6r .card_text,
.cid-v2ePy59K6r .card_link {
  color: #000000;
}
.cid-v2eNi71ywY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ececec;
}
.cid-v2eNi71ywY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2eNi71ywY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-v2eNi71ywY .container {
    padding: 0 24px;
  }
}
.cid-v2eNi71ywY .row {
  justify-content: center;
  border-top: 1px solid #72716b;
}
@media (min-width: 992px) {
  .cid-v2eNi71ywY .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-v2eNi71ywY .row {
    border: none;
  }
}
.cid-v2eNi71ywY .row .item {
  padding: 0 32px 0 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v2eNi71ywY .row .item {
    padding: 0 16px;
  }
}
.cid-v2eNi71ywY .item-wrapper {
  height: 100%;
}
.cid-v2eNi71ywY .item-wrapper .card-box {
  display: flex;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v2eNi71ywY .item-wrapper .card-box {
    display: block;
  }
}
.cid-v2eNi71ywY .subtitle-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-v2eNi71ywY .subtitle-wrap {
    display: block;
  }
}
.cid-v2eNi71ywY .subtitle-wrap .mbr-section-subtitle {
  padding: 32px;
  writing-mode: tb;
  transform: rotate(180deg);
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v2eNi71ywY .subtitle-wrap .mbr-section-subtitle {
    transform: rotate(0);
    writing-mode: horizontal-tb;
    padding: 24px;
    border-left: 1px solid #72716b;
    text-align: left;
  }
}
.cid-v2eNi71ywY .content-wrapper {
  padding: 32px;
  border-left: 1px solid #72716b;
}
@media (max-width: 992px) {
  .cid-v2eNi71ywY .content-wrapper {
    padding: 24px;
    border-top: 1px solid #72716b;
    border-left: 1px solid #72716b;
  }
}
.cid-v2eNi71ywY .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v2eNi71ywY .content-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2eNi71ywY .content-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-v2eNi71ywY .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-v2eNi71ywY .content-wrapper .mbr-section-btn {
    text-align: left;
    margin-top: 24px;
  }
}
.cid-v2eNi71ywY .mbr-section-title {
  color: #F9F6E0;
}
.cid-v2eNi71ywY .mbr-section-subtitle {
  color: #E0B548;
  text-align: center;
}
.cid-v2eNi71ywY .mbr-text {
  color: #000000;
}
.cid-v2eNi71ywY .mbr-section-title,
.cid-v2eNi71ywY .mbr-section-btn {
  color: #000000;
}
.cid-v2ekYPgn7O {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-color: #ffffff;
}
.cid-v2ekYPgn7O .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2ekYPgn7O .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-v2ekYPgn7O .container {
    padding: 0 20px;
  }
}
.cid-v2ekYPgn7O .row {
  margin: 0;
}
.cid-v2ekYPgn7O .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2ekYPgn7O .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v2ekYPgn7O .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v2ekYPgn7O .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v2ekYPgn7O .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v2ekYPgn7O .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v2ekYPgn7O .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2e6PyHJNJ {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-v2e6PyHJNJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2e6PyHJNJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2e6PyHJNJ .row {
  justify-content: flex-start;
}
.cid-v2e6PyHJNJ .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v2e6PyHJNJ .mbr-text {
  color: #1F1D1A;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-v2eOxmbY3d {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2eOxmbY3d .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2eOxmbY3d .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-v2eOxmbY3d .container {
    padding: 0 22px;
  }
}
.cid-v2eOxmbY3d .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v2eOxmbY3d .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v2eOxmbY3d .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-v2eOxmbY3d .image-wrapper img {
    height: 350px;
  }
}
.cid-v2eOxmbY3d .mbr-section-title {
  margin-bottom: 16px;
  color: #000000;
}
.cid-v2eOxmbY3d .panel-group {
  border-bottom: 1px solid #d4d3d3;
}
.cid-v2eOxmbY3d .panel-group .card {
  border-top: 1px solid #d4d3d3;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-v2eOxmbY3d .panel-group .card:hover,
.cid-v2eOxmbY3d .panel-group .card:focus {
  border-top: 1px solid #000000;
}
.cid-v2eOxmbY3d .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v2eOxmbY3d .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-v2eOxmbY3d .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v2eOxmbY3d .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 25px;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 16px;
}
.cid-v2eOxmbY3d .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-v2eOxmbY3d .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-v2eOxmbY3d .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-v2eOxmbY3d .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v2eOxmbY3d .panel-title-edit {
  color: #000000;
}
.cid-v2eOxmbY3d .panel-text {
  color: #8a8588;
}
.cid-v2eIoJoqRT {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #853c18;
}
.cid-v2eIoJoqRT .row {
  flex-direction: row-reverse;
}
.cid-v2eIoJoqRT .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-v2eIoJoqRT .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #4f4af3;
}
.cid-v2eIoJoqRT .svg-top .st0 {
  fill: #853c18;
}
@media (max-width: 992px) {
  .cid-v2eIoJoqRT .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-v2eIoJoqRT .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-v2eIoJoqRT .col-12 {
    padding: 0 2rem;
  }
  .cid-v2eIoJoqRT .row {
    margin: 0 -2rem;
  }
}
.cid-v2eIoJoqRT .mbr-text,
.cid-v2eIoJoqRT .mbr-section-btn {
  color: #ffffff;
}
.cid-v2e8uZSE5L {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: #ffffff;
}
.cid-v2e8uZSE5L .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2e8uZSE5L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2e8uZSE5L .google-map {
  height: 35rem;
  position: relative;
}
.cid-v2e8uZSE5L .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-v2e8uZSE5L .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v2e8uZSE5L .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v2e8uZSE5L .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v2e8uZSE5L .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2e8uZSE5L .mbr-section-title {
  color: #ffffff;
}
.cid-v2e8EZBUt4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #853c18;
}
.cid-v2e8EZBUt4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2e8EZBUt4 .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-v2e8EZBUt4 .container {
    padding: 0 16px;
  }
}
.cid-v2e8EZBUt4 .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v2e8EZBUt4 .card {
    margin-bottom: 40px;
  }
}
.cid-v2e8EZBUt4 .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v2e8EZBUt4 .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-v2e8EZBUt4 .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-v2e8EZBUt4 .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2e8EZBUt4 .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v2e8EZBUt4 .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-v2e8EZBUt4 .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v2e8EZBUt4 .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-v2e8EZBUt4 .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-v2e8EZBUt4 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-v2e8EZBUt4 .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v2e8EZBUt4 .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-v2e8EZBUt4 .mbr-section-title {
  color: #ffffff;
}
.cid-v2e8EZBUt4 .copyright {
  color: #ffffff;
}
.cid-v2e8EZBUt4 .mbr-card-title {
  color: #ffffff;
}
.cid-v2e8EZBUt4 .list {
  color: #ffffff;
}
.cid-v2e8EZBUt4 .mbr-section-title,
.cid-v2e8EZBUt4 .title-wrapper,
.cid-v2e8EZBUt4 .social-wrapper {
  color: #000000;
}
.cid-v2erzjF3tn .navbar-dropdown {
  background-color: #853c18 !important;
  padding: 0;
}
.cid-v2erzjF3tn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #853c18 !important;
  background: #853c18;
}
.cid-v2erzjF3tn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2erzjF3tn .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v2erzjF3tn .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-v2erzjF3tn .menu_box .navbar.opened,
  .cid-v2erzjF3tn .menu_box .navbar-collapse {
    background-color: #853c18 !important;
    transition: all 0s ease 0s;
  }
}
.cid-v2erzjF3tn .navbar-dropdown {
  position: relative !important;
}
.cid-v2erzjF3tn .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v2erzjF3tn .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v2erzjF3tn .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v2erzjF3tn .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-v2erzjF3tn .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v2erzjF3tn .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #ffcd9f;
  }
  .cid-v2erzjF3tn .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v2erzjF3tn .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v2erzjF3tn .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v2erzjF3tn .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v2erzjF3tn .offcanvas-body .mbr-text,
  .cid-v2erzjF3tn .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-v2erzjF3tn .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-v2erzjF3tn .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v2erzjF3tn .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #222222;
  }
  .cid-v2erzjF3tn .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v2erzjF3tn .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v2erzjF3tn .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v2erzjF3tn .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v2erzjF3tn ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v2erzjF3tn .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v2erzjF3tn .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-v2erzjF3tn .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v2erzjF3tn li.nav-item {
    position: relative;
    display: inline-block;
    padding: 10px 14px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
    margin: 0;
    border-radius: 8px;
    border: 2px solid transparent;
  }
  .cid-v2erzjF3tn .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v2erzjF3tn .nav-item {
  margin: 4px 15px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .cid-v2erzjF3tn .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v2erzjF3tn .nav-item {
    margin: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-v2erzjF3tn .nav-item:hover,
  .cid-v2erzjF3tn .nav-item:focus {
    background-color: #ffffff;
    border-color: #ff6928;
  }
}
.cid-v2erzjF3tn .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-v2erzjF3tn .nav-item .nav-link:hover,
.cid-v2erzjF3tn .nav-item .nav-link:focus {
  opacity: 1;
  color: #4f4af3 !important;
}
.cid-v2erzjF3tn .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v2erzjF3tn .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-v2erzjF3tn .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-v2erzjF3tn .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v2erzjF3tn .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-v2erzjF3tn .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v2erzjF3tn .offcanvas_box {
    display: none;
  }
}
.cid-v2erzjF3tn .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v2erzjF3tn .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v2erzjF3tn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-v2erzjF3tn .container {
  display: flex;
  margin: auto;
}
.cid-v2erzjF3tn .iconfont-wrapper {
  color: #222222;
  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-v2erzjF3tn .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v2erzjF3tn .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v2erzjF3tn .navbar-caption {
  color: #222222;
}
.cid-v2erzjF3tn .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v2erzjF3tn .navbar-nav {
    margin: 0;
  }
}
.cid-v2erzjF3tn .dropdown-menu,
.cid-v2erzjF3tn .navbar.opened {
  background-color: false !important;
}
.cid-v2erzjF3tn .nav-item:focus,
.cid-v2erzjF3tn .nav-link:focus {
  outline: none;
}
.cid-v2erzjF3tn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2erzjF3tn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2erzjF3tn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2erzjF3tn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2erzjF3tn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2erzjF3tn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2erzjF3tn .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-v2erzjF3tn .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-v2erzjF3tn .navbar.opened {
  transition: all 0.3s;
}
.cid-v2erzjF3tn .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v2erzjF3tn .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 8px;
}
.cid-v2erzjF3tn .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-v2erzjF3tn .navbar.collapsed {
  justify-content: center;
}
.cid-v2erzjF3tn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2erzjF3tn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2erzjF3tn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2erzjF3tn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2erzjF3tn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2erzjF3tn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v2erzjF3tn .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v2erzjF3tn .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v2erzjF3tn .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v2erzjF3tn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2erzjF3tn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2erzjF3tn .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v2erzjF3tn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2erzjF3tn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-v2erzjF3tn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2erzjF3tn .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v2erzjF3tn .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v2erzjF3tn .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v2erzjF3tn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-v2erzjF3tn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2erzjF3tn .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v2erzjF3tn .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2erzjF3tn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2erzjF3tn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2erzjF3tn .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-v2erzjF3tn .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v2erzjF3tn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2erzjF3tn .dropdown-item.active,
.cid-v2erzjF3tn .dropdown-item:active {
  background-color: transparent;
}
.cid-v2erzjF3tn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2erzjF3tn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2erzjF3tn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2erzjF3tn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2erzjF3tn ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-v2erzjF3tn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2erzjF3tn button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #853c18;
  background: #ffffff;
}
.cid-v2erzjF3tn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-v2erzjF3tn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2erzjF3tn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2erzjF3tn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2erzjF3tn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2erzjF3tn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2erzjF3tn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2erzjF3tn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2erzjF3tn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2erzjF3tn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v2erzjF3tn .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-v2erzjF3tn .navbar {
    height: 70px;
  }
  .cid-v2erzjF3tn .navbar.opened {
    height: auto;
  }
  .cid-v2erzjF3tn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2erzjF3tn .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v2erzjF3tn .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v2erzjF3tn .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-v2erzjF3tn .mbr-section-btn-main .btn {
  margin: 0 12px 8px 12px;
  padding: 10px 16px;
}
@media (max-width: 992px) {
  .cid-v2erzjF3tn .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-v2erzjF3tn .navbar-caption:hover {
  color: #4f4af3;
}
@media (min-width: 992px) {
  .cid-v2erzjF3tn .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-v2erzjF3tn .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-v2erzjF3tn .text_widget {
  margin-bottom: 24px;
}
.cid-v2erzjF3tn .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-v2erzjF3tn .text_widget a:hover {
  color: #ff6928 !important;
}
.cid-v2erzjF3tn .mbr-section-subtitle {
  color: #222222;
  text-align: center;
}
.cid-v2erzjF3tn .mbr-text {
  color: #222222;
  text-align: center;
}
.cid-v2erzjF3tn .mbr-section-subtitle,
.cid-v2erzjF3tn .text_widget,
.cid-v2erzjF3tn .mbr-section-btn {
  text-align: center;
}
.cid-v2erzjF3tn a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v2fbgEZhaN {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ececec;
}
.cid-v2fbgEZhaN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fbgEZhaN .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-v2fbgEZhaN .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-v2fbgEZhaN img {
  border-radius: 1rem;
}
.cid-v2fbgEZhaN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2fbgEZhaN .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v2fbgEZhaN .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v2fbgEZhaN .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2fbgEZhaN .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2fbgEZhaN .mbr-section-subtitle,
.cid-v2fbgEZhaN .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-v2fbgEZhaN .mbr-text,
.cid-v2fbgEZhaN .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-v2erzntaGP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2erzntaGP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2erzntaGP .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-v2erzntaGP .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v2erzntaGP .container {
    padding: 0 12px;
  }
}
.cid-v2erzntaGP .row {
  padding: 60px 44px;
  background-color: #ffffff;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-v2erzntaGP .row {
    padding: 24px 12px;
    border-radius: 32px;
  }
}
.cid-v2erzntaGP .row .card {
  justify-content: center;
}
.cid-v2erzntaGP .row .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2erzntaGP .row .card .text-wrapper .mbr-text {
    margin-bottom: 24px;
    text-align: center;
  }
}
.cid-v2erzntaGP .mbr-text {
  color: #ffffff;
}
.cid-v2erzntaGP .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v2erzntaGP .mbr-section-btn {
    text-align: center;
  }
}
.cid-v2erzntaGP .mbr-text,
.cid-v2erzntaGP .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-v2erzAydHx {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: #151515;
}
.cid-v2erzAydHx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2erzAydHx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2erzAydHx .google-map {
  height: 35rem;
  position: relative;
}
.cid-v2erzAydHx .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-v2erzAydHx .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v2erzAydHx .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v2erzAydHx .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v2erzAydHx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2erzAydHx .mbr-section-title {
  color: #ffffff;
}
.cid-v2erzBCQsD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #853c18;
}
.cid-v2erzBCQsD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2erzBCQsD .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-v2erzBCQsD .container {
    padding: 0 16px;
  }
}
.cid-v2erzBCQsD .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v2erzBCQsD .card {
    margin-bottom: 40px;
  }
}
.cid-v2erzBCQsD .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v2erzBCQsD .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-v2erzBCQsD .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-v2erzBCQsD .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2erzBCQsD .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v2erzBCQsD .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-v2erzBCQsD .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v2erzBCQsD .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-v2erzBCQsD .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-v2erzBCQsD .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-v2erzBCQsD .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v2erzBCQsD .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-v2erzBCQsD .mbr-section-title {
  color: #ffffff;
}
.cid-v2erzBCQsD .copyright {
  color: #ffffff;
}
.cid-v2erzBCQsD .mbr-card-title {
  color: #ffffff;
}
.cid-v2erzBCQsD .list {
  color: #ffffff;
}
.cid-v2erzBCQsD .mbr-section-title,
.cid-v2erzBCQsD .title-wrapper,
.cid-v2erzBCQsD .social-wrapper {
  color: #000000;
}
.cid-v2esdv87Hx .navbar-dropdown {
  background-color: #853c18 !important;
  padding: 0;
}
.cid-v2esdv87Hx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #853c18 !important;
  background: #853c18;
}
.cid-v2esdv87Hx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2esdv87Hx .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v2esdv87Hx .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-v2esdv87Hx .menu_box .navbar.opened,
  .cid-v2esdv87Hx .menu_box .navbar-collapse {
    background-color: #853c18 !important;
    transition: all 0s ease 0s;
  }
}
.cid-v2esdv87Hx .navbar-dropdown {
  position: relative !important;
}
.cid-v2esdv87Hx .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v2esdv87Hx .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v2esdv87Hx .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v2esdv87Hx .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-v2esdv87Hx .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v2esdv87Hx .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #ffcd9f;
  }
  .cid-v2esdv87Hx .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v2esdv87Hx .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v2esdv87Hx .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v2esdv87Hx .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v2esdv87Hx .offcanvas-body .mbr-text,
  .cid-v2esdv87Hx .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-v2esdv87Hx .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-v2esdv87Hx .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v2esdv87Hx .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #222222;
  }
  .cid-v2esdv87Hx .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v2esdv87Hx .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v2esdv87Hx .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v2esdv87Hx .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v2esdv87Hx ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v2esdv87Hx .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v2esdv87Hx .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-v2esdv87Hx .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v2esdv87Hx li.nav-item {
    position: relative;
    display: inline-block;
    padding: 10px 14px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
    margin: 0;
    border-radius: 8px;
    border: 2px solid transparent;
  }
  .cid-v2esdv87Hx .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v2esdv87Hx .nav-item {
  margin: 4px 15px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .cid-v2esdv87Hx .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v2esdv87Hx .nav-item {
    margin: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-v2esdv87Hx .nav-item:hover,
  .cid-v2esdv87Hx .nav-item:focus {
    background-color: #ffffff;
    border-color: #ff6928;
  }
}
.cid-v2esdv87Hx .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-v2esdv87Hx .nav-item .nav-link:hover,
.cid-v2esdv87Hx .nav-item .nav-link:focus {
  opacity: 1;
  color: #4f4af3 !important;
}
.cid-v2esdv87Hx .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v2esdv87Hx .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-v2esdv87Hx .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-v2esdv87Hx .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v2esdv87Hx .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-v2esdv87Hx .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v2esdv87Hx .offcanvas_box {
    display: none;
  }
}
.cid-v2esdv87Hx .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v2esdv87Hx .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v2esdv87Hx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-v2esdv87Hx .container {
  display: flex;
  margin: auto;
}
.cid-v2esdv87Hx .iconfont-wrapper {
  color: #222222;
  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-v2esdv87Hx .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v2esdv87Hx .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v2esdv87Hx .navbar-caption {
  color: #222222;
}
.cid-v2esdv87Hx .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v2esdv87Hx .navbar-nav {
    margin: 0;
  }
}
.cid-v2esdv87Hx .dropdown-menu,
.cid-v2esdv87Hx .navbar.opened {
  background-color: false !important;
}
.cid-v2esdv87Hx .nav-item:focus,
.cid-v2esdv87Hx .nav-link:focus {
  outline: none;
}
.cid-v2esdv87Hx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2esdv87Hx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2esdv87Hx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2esdv87Hx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2esdv87Hx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2esdv87Hx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2esdv87Hx .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-v2esdv87Hx .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-v2esdv87Hx .navbar.opened {
  transition: all 0.3s;
}
.cid-v2esdv87Hx .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v2esdv87Hx .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 8px;
}
.cid-v2esdv87Hx .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-v2esdv87Hx .navbar.collapsed {
  justify-content: center;
}
.cid-v2esdv87Hx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2esdv87Hx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2esdv87Hx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2esdv87Hx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2esdv87Hx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2esdv87Hx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v2esdv87Hx .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v2esdv87Hx .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v2esdv87Hx .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v2esdv87Hx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2esdv87Hx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2esdv87Hx .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v2esdv87Hx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2esdv87Hx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-v2esdv87Hx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2esdv87Hx .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v2esdv87Hx .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v2esdv87Hx .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v2esdv87Hx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-v2esdv87Hx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2esdv87Hx .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v2esdv87Hx .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2esdv87Hx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2esdv87Hx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2esdv87Hx .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-v2esdv87Hx .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v2esdv87Hx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2esdv87Hx .dropdown-item.active,
.cid-v2esdv87Hx .dropdown-item:active {
  background-color: transparent;
}
.cid-v2esdv87Hx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2esdv87Hx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2esdv87Hx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2esdv87Hx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2esdv87Hx ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-v2esdv87Hx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2esdv87Hx button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #853c18;
  background: #ffffff;
}
.cid-v2esdv87Hx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-v2esdv87Hx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2esdv87Hx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2esdv87Hx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2esdv87Hx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2esdv87Hx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2esdv87Hx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2esdv87Hx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2esdv87Hx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2esdv87Hx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v2esdv87Hx .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-v2esdv87Hx .navbar {
    height: 70px;
  }
  .cid-v2esdv87Hx .navbar.opened {
    height: auto;
  }
  .cid-v2esdv87Hx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2esdv87Hx .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v2esdv87Hx .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v2esdv87Hx .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-v2esdv87Hx .mbr-section-btn-main .btn {
  margin: 0 12px 8px 12px;
  padding: 10px 16px;
}
@media (max-width: 992px) {
  .cid-v2esdv87Hx .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-v2esdv87Hx .navbar-caption:hover {
  color: #4f4af3;
}
@media (min-width: 992px) {
  .cid-v2esdv87Hx .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-v2esdv87Hx .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-v2esdv87Hx .text_widget {
  margin-bottom: 24px;
}
.cid-v2esdv87Hx .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-v2esdv87Hx .text_widget a:hover {
  color: #ff6928 !important;
}
.cid-v2esdv87Hx .mbr-section-subtitle {
  color: #222222;
  text-align: center;
}
.cid-v2esdv87Hx .mbr-text {
  color: #222222;
  text-align: center;
}
.cid-v2esdv87Hx .mbr-section-subtitle,
.cid-v2esdv87Hx .text_widget,
.cid-v2esdv87Hx .mbr-section-btn {
  text-align: center;
}
.cid-v2esdv87Hx a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v2fbJgv2HG {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ececec;
}
.cid-v2fbJgv2HG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2fbJgv2HG .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-v2fbJgv2HG .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-v2fbJgv2HG img {
  border-radius: 1rem;
}
.cid-v2fbJgv2HG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2fbJgv2HG .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v2fbJgv2HG .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v2fbJgv2HG .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2fbJgv2HG .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2fbJgv2HG .mbr-section-subtitle,
.cid-v2fbJgv2HG .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-v2fbJgv2HG .mbr-text,
.cid-v2fbJgv2HG .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-v2esdy8Fm3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2esdy8Fm3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2esdy8Fm3 .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-v2esdy8Fm3 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v2esdy8Fm3 .container {
    padding: 0 12px;
  }
}
.cid-v2esdy8Fm3 .row {
  padding: 60px 44px;
  background-color: #ffffff;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-v2esdy8Fm3 .row {
    padding: 24px 12px;
    border-radius: 32px;
  }
}
.cid-v2esdy8Fm3 .row .card {
  justify-content: center;
}
.cid-v2esdy8Fm3 .row .card .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2esdy8Fm3 .row .card .text-wrapper .mbr-text {
    margin-bottom: 24px;
    text-align: center;
  }
}
.cid-v2esdy8Fm3 .mbr-text {
  color: #ffffff;
}
.cid-v2esdy8Fm3 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v2esdy8Fm3 .mbr-section-btn {
    text-align: center;
  }
}
.cid-v2esdy8Fm3 .mbr-text,
.cid-v2esdy8Fm3 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-v2esdzdjeM {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: #151515;
}
.cid-v2esdzdjeM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2esdzdjeM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2esdzdjeM .google-map {
  height: 35rem;
  position: relative;
}
.cid-v2esdzdjeM .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-v2esdzdjeM .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v2esdzdjeM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v2esdzdjeM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v2esdzdjeM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2esdzdjeM .mbr-section-title {
  color: #ffffff;
}
.cid-v2esdAeoaZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #853c18;
}
.cid-v2esdAeoaZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2esdAeoaZ .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-v2esdAeoaZ .container {
    padding: 0 16px;
  }
}
.cid-v2esdAeoaZ .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v2esdAeoaZ .card {
    margin-bottom: 40px;
  }
}
.cid-v2esdAeoaZ .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v2esdAeoaZ .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-v2esdAeoaZ .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-v2esdAeoaZ .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2esdAeoaZ .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v2esdAeoaZ .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-v2esdAeoaZ .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v2esdAeoaZ .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-v2esdAeoaZ .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-v2esdAeoaZ .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-v2esdAeoaZ .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v2esdAeoaZ .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-v2esdAeoaZ .mbr-section-title {
  color: #ffffff;
}
.cid-v2esdAeoaZ .copyright {
  color: #ffffff;
}
.cid-v2esdAeoaZ .mbr-card-title {
  color: #ffffff;
}
.cid-v2esdAeoaZ .list {
  color: #ffffff;
}
.cid-v2esdAeoaZ .mbr-section-title,
.cid-v2esdAeoaZ .title-wrapper,
.cid-v2esdAeoaZ .social-wrapper {
  color: #000000;
}
.cid-v2f4aJ84zn .navbar-dropdown {
  background-color: #853c18 !important;
  padding: 0;
}
.cid-v2f4aJ84zn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #853c18 !important;
  background: #853c18;
}
.cid-v2f4aJ84zn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2f4aJ84zn .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v2f4aJ84zn .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-v2f4aJ84zn .menu_box .navbar.opened,
  .cid-v2f4aJ84zn .menu_box .navbar-collapse {
    background-color: #853c18 !important;
    transition: all 0s ease 0s;
  }
}
.cid-v2f4aJ84zn .navbar-dropdown {
  position: relative !important;
}
.cid-v2f4aJ84zn .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v2f4aJ84zn .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v2f4aJ84zn .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v2f4aJ84zn .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-v2f4aJ84zn .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v2f4aJ84zn .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #ffcd9f;
  }
  .cid-v2f4aJ84zn .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v2f4aJ84zn .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v2f4aJ84zn .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v2f4aJ84zn .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v2f4aJ84zn .offcanvas-body .mbr-text,
  .cid-v2f4aJ84zn .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-v2f4aJ84zn .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-v2f4aJ84zn .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v2f4aJ84zn .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #222222;
  }
  .cid-v2f4aJ84zn .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v2f4aJ84zn .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v2f4aJ84zn .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v2f4aJ84zn .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v2f4aJ84zn ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v2f4aJ84zn .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v2f4aJ84zn .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-v2f4aJ84zn .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v2f4aJ84zn li.nav-item {
    position: relative;
    display: inline-block;
    padding: 10px 14px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
    margin: 0;
    border-radius: 8px;
    border: 2px solid transparent;
  }
  .cid-v2f4aJ84zn .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v2f4aJ84zn .nav-item {
  margin: 4px 15px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .cid-v2f4aJ84zn .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v2f4aJ84zn .nav-item {
    margin: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-v2f4aJ84zn .nav-item:hover,
  .cid-v2f4aJ84zn .nav-item:focus {
    background-color: #ffffff;
    border-color: #ff6928;
  }
}
.cid-v2f4aJ84zn .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-v2f4aJ84zn .nav-item .nav-link:hover,
.cid-v2f4aJ84zn .nav-item .nav-link:focus {
  opacity: 1;
  color: #4f4af3 !important;
}
.cid-v2f4aJ84zn .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v2f4aJ84zn .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-v2f4aJ84zn .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-v2f4aJ84zn .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v2f4aJ84zn .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-v2f4aJ84zn .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v2f4aJ84zn .offcanvas_box {
    display: none;
  }
}
.cid-v2f4aJ84zn .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v2f4aJ84zn .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v2f4aJ84zn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-v2f4aJ84zn .container {
  display: flex;
  margin: auto;
}
.cid-v2f4aJ84zn .iconfont-wrapper {
  color: #222222;
  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-v2f4aJ84zn .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v2f4aJ84zn .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v2f4aJ84zn .navbar-caption {
  color: #222222;
}
.cid-v2f4aJ84zn .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v2f4aJ84zn .navbar-nav {
    margin: 0;
  }
}
.cid-v2f4aJ84zn .dropdown-menu,
.cid-v2f4aJ84zn .navbar.opened {
  background-color: false !important;
}
.cid-v2f4aJ84zn .nav-item:focus,
.cid-v2f4aJ84zn .nav-link:focus {
  outline: none;
}
.cid-v2f4aJ84zn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2f4aJ84zn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2f4aJ84zn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2f4aJ84zn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2f4aJ84zn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2f4aJ84zn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2f4aJ84zn .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-v2f4aJ84zn .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-v2f4aJ84zn .navbar.opened {
  transition: all 0.3s;
}
.cid-v2f4aJ84zn .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v2f4aJ84zn .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 8px;
}
.cid-v2f4aJ84zn .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-v2f4aJ84zn .navbar.collapsed {
  justify-content: center;
}
.cid-v2f4aJ84zn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2f4aJ84zn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2f4aJ84zn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2f4aJ84zn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2f4aJ84zn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2f4aJ84zn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v2f4aJ84zn .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v2f4aJ84zn .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v2f4aJ84zn .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v2f4aJ84zn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2f4aJ84zn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2f4aJ84zn .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v2f4aJ84zn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2f4aJ84zn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-v2f4aJ84zn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2f4aJ84zn .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v2f4aJ84zn .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v2f4aJ84zn .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v2f4aJ84zn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-v2f4aJ84zn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2f4aJ84zn .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v2f4aJ84zn .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2f4aJ84zn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2f4aJ84zn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2f4aJ84zn .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-v2f4aJ84zn .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v2f4aJ84zn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2f4aJ84zn .dropdown-item.active,
.cid-v2f4aJ84zn .dropdown-item:active {
  background-color: transparent;
}
.cid-v2f4aJ84zn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2f4aJ84zn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2f4aJ84zn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2f4aJ84zn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2f4aJ84zn ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-v2f4aJ84zn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2f4aJ84zn button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #853c18;
  background: #ffffff;
}
.cid-v2f4aJ84zn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-v2f4aJ84zn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2f4aJ84zn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2f4aJ84zn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2f4aJ84zn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2f4aJ84zn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2f4aJ84zn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2f4aJ84zn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2f4aJ84zn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2f4aJ84zn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v2f4aJ84zn .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-v2f4aJ84zn .navbar {
    height: 70px;
  }
  .cid-v2f4aJ84zn .navbar.opened {
    height: auto;
  }
  .cid-v2f4aJ84zn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2f4aJ84zn .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v2f4aJ84zn .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v2f4aJ84zn .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-v2f4aJ84zn .mbr-section-btn-main .btn {
  margin: 0 12px 8px 12px;
  padding: 10px 16px;
}
@media (max-width: 992px) {
  .cid-v2f4aJ84zn .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-v2f4aJ84zn .navbar-caption:hover {
  color: #4f4af3;
}
@media (min-width: 992px) {
  .cid-v2f4aJ84zn .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-v2f4aJ84zn .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-v2f4aJ84zn .text_widget {
  margin-bottom: 24px;
}
.cid-v2f4aJ84zn .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-v2f4aJ84zn .text_widget a:hover {
  color: #ff6928 !important;
}
.cid-v2f4aJ84zn .mbr-section-subtitle {
  color: #222222;
  text-align: center;
}
.cid-v2f4aJ84zn .mbr-text {
  color: #222222;
  text-align: center;
}
.cid-v2f4aJ84zn .mbr-section-subtitle,
.cid-v2f4aJ84zn .text_widget,
.cid-v2f4aJ84zn .mbr-section-btn {
  text-align: center;
}
.cid-v2f4aJ84zn a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v2f4aKQci2 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ececec;
}
.cid-v2f4aKQci2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f4aKQci2 .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-v2f4aKQci2 .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-v2f4aKQci2 img {
  border-radius: 1rem;
}
.cid-v2f4aKQci2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2f4aKQci2 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v2f4aKQci2 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v2f4aKQci2 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2f4aKQci2 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2f4aKQci2 .mbr-section-subtitle,
.cid-v2f4aKQci2 .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-v2f4aKQci2 .mbr-text,
.cid-v2f4aKQci2 .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-v2f4aM1wAu {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2f4aM1wAu .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-v2f4aM1wAu .container {
    max-width: 1040px;
  }
}
.cid-v2f4aM1wAu .row {
  justify-content: center;
}
.cid-v2f4aM1wAu .item:focus,
.cid-v2f4aM1wAu span:focus {
  outline: none;
}
.cid-v2f4aM1wAu .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-v2f4aM1wAu .col-items {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v2f4aM1wAu .item {
    width: 100%;
  }
  .cid-v2f4aM1wAu .item:first-child {
    padding-bottom: 0.5rem;
  }
  .cid-v2f4aM1wAu .item:last-child {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-v2f4aM1wAu .item:first-child {
    padding-right: 0.5rem;
  }
  .cid-v2f4aM1wAu .item:last-child {
    padding-left: 0.5rem;
  }
}
.cid-v2f4aM1wAu .item-wrap {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 24px;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-v2f4aM1wAu .item-wrap {
    padding: 27px;
  }
}
@media (min-width: 992px) {
  .cid-v2f4aM1wAu .item-wrap {
    padding: 50px;
  }
}
.cid-v2f4aM1wAu .item-content {
  width: 100%;
}
.cid-v2f4aM1wAu .label-text {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-bottom: 16px;
}
.cid-v2f4aM1wAu .mbr-text {
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-v2f4aM1wAu .item-title {
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 0;
}
.cid-v2f4aM1wAu .list-container {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}
.cid-v2f4aM1wAu .list-item {
  display: flex;
  align-items: center;
}
.cid-v2f4aM1wAu .list-item:not(:last-child) {
  margin-bottom: 16px;
}
.cid-v2f4aM1wAu .icon-box {
  padding-right: 14px;
}
.cid-v2f4aM1wAu .list-text {
  flex-grow: 1;
  color: #000000;
  margin-bottom: 0;
}
.cid-v2f4aM1wAu .link-container {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
@media (min-width: 992px) {
  .cid-v2f4aM1wAu .link-container {
    margin-top: 72px;
  }
}
.cid-v2f4aM1wAu .link-container .link:first-child {
  margin-bottom: 16px;
}
.cid-v2f4aM1wAu .link-container .link span {
  padding-right: 10px;
}
.cid-v2f4aM1wAu .item-title,
.cid-v2f4aM1wAu .mbr-section-btn {
  color: #000000;
}
.cid-v2f4aNbiEe {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2f4aNbiEe .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #853c18;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-v2f4aNbiEe .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-v2f4aNbiEe .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-v2f4aNbiEe .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-v2f4aNbiEe .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-v2f4aNbiEe .items-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-left: 1.736vw;
}
@media (max-width: 991px) {
  .cid-v2f4aNbiEe .items-container {
    padding-left: 6.66vw;
  }
}
.cid-v2f4aNbiEe .item {
  position: relative;
  margin-bottom: 0.83vw;
}
@media (max-width: 991px) {
  .cid-v2f4aNbiEe .item {
    margin-bottom: 3.2vw;
  }
}
.cid-v2f4aNbiEe .item:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -1.4vw;
  width: 0.6vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-v2f4aNbiEe .item:before {
    left: -2.5vw;
    width: 1.2vw;
  }
}
@media (max-width: 575px) {
  .cid-v2f4aNbiEe .item:before {
    left: -2.7vw;
    width: 1.6vw;
  }
}
.cid-v2f4aNbiEe .mbr-text {
  color: #000000;
}
.cid-v2f4aOdTr4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2f4aOdTr4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f4aOdTr4 .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-v2f4aOdTr4 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v2f4aOdTr4 .container {
    padding: 0 12px;
  }
}
.cid-v2f4aOdTr4 .row {
  justify-content: center;
}
.cid-v2f4aOdTr4 .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  background-color: #ffffff;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-v2f4aOdTr4 .card-wrapper {
    display: block;
    padding: 24px;
    border-radius: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v2f4aOdTr4 .card-wrapper .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-v2f4aOdTr4 .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-v2f4aOdTr4 .card-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2f4aOdTr4 .card-wrapper .title-wrapper .mbr-text span {
  background-color: #ffffff;
  padding: 2px 6px;
  border-radius: 8px;
}
.cid-v2f4aOdTr4 .card-wrapper .mbr-section-btn {
  height: 100%;
}
.cid-v2f4aOdTr4 .card-wrapper .mbr-section-btn .btn {
  min-width: 200px;
}
.cid-v2f4aOdTr4 .mbr-section-title {
  color: #000000;
}
.cid-v2f4aOdTr4 .mbr-text {
  color: #222222;
}
.cid-v2f4aOdTr4 .mbr-text,
.cid-v2f4aOdTr4 .mbr-section-btn {
  color: #000000;
}
.cid-v2f4aPiB6L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #853c18;
}
.cid-v2f4aPiB6L .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f4aPiB6L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2f4aPiB6L .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-v2f4aPiB6L .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v2f4aPiB6L .items-wrapper {
  justify-content: center;
  margin: 0 -10px;
}
.cid-v2f4aPiB6L .items-wrapper .item {
  padding: 0 10px;
}
.cid-v2f4aPiB6L .item {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v2f4aPiB6L .item {
    margin-bottom: 16px;
  }
}
.cid-v2f4aPiB6L .item .item-wrapper {
  padding: 10px;
  background-color: #ffffff;
  height: 100%;
}
.cid-v2f4aPiB6L .item .item-wrapper .item-img {
  margin-bottom: 32px;
}
.cid-v2f4aPiB6L .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
}
.cid-v2f4aPiB6L .item .item-wrapper .item-content {
  padding: 0 40px 20px;
}
@media (max-width: 992px) {
  .cid-v2f4aPiB6L .item .item-wrapper .item-content {
    padding: 0 10px;
  }
}
.cid-v2f4aPiB6L .item .item-wrapper .item-content .item-title {
  margin-bottom: 20px;
}
.cid-v2f4aPiB6L .item .item-wrapper .item-content .item-text {
  margin-bottom: 20px;
}
.cid-v2f4aPiB6L .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v2f4aPiB6L .item-title {
  color: #000c3f;
}
.cid-v2f4aPiB6L .item-text {
  color: #000c3f;
}
.cid-v2f4aPiB6L .item-title,
.cid-v2f4aPiB6L .mbr-section-btn {
  color: #02050a;
  text-align: center;
}
.cid-v2f4aQG19k {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ececec;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-v2f4aQG19k .container {
    padding: 0 24px;
  }
}
.cid-v2f4aQG19k .card {
  justify-content: center;
}
.cid-v2f4aQG19k .title-wrapper {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-v2f4aQG19k .title-wrapper {
    padding: 0 24px 24px;
  }
}
.cid-v2f4aQG19k .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v2f4aQG19k .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-v2f4aQG19k .text-wrapper {
  border-top: 1px solid #72716b;
  display: flex;
  justify-content: space-between;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-v2f4aQG19k .text-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-v2f4aQG19k .text-wrapper .mbr-text {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-v2f4aQG19k .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v2f4aQG19k .text-wrapper .mbr-text:last-child {
    margin-bottom: 0;
  }
}
.cid-v2f4aQG19k .mbr-section-title {
  color: #F9F6E0;
}
.cid-v2f4aQG19k .mbr-desc {
  color: #F9F6E0;
}
.cid-v2f4aQG19k .mbr-text {
  color: #000000;
}
.cid-v2f4aQG19k .mbr-section-btn {
  text-align: right;
}
.cid-v2f4aQG19k .mbr-section-title,
.cid-v2f4aQG19k .mbr-section-btn {
  color: #000000;
}
.cid-v2f4aRHJ5Y {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v2f4aRHJ5Y .mbr-section-subtitle {
  margin-bottom: 6px;
  color: #000000;
}
.cid-v2f4aRHJ5Y .mbr-section-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v2f4aRHJ5Y .card_wrapper {
  margin-top: 40px;
  padding: 60px 40px;
  background-color: #ffffff;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 3px 4px 0 rgba(38, 59, 94, 0.1);
}
.cid-v2f4aRHJ5Y .card_wrapper:hover {
  transform: translateY(-16px);
  box-shadow: 0 30px 60px 0 rgba(38, 59, 94, 0.1);
}
.cid-v2f4aRHJ5Y .card_wrapper:hover .card_title {
  color: #4f4af3;
}
.cid-v2f4aRHJ5Y .card_wrapper:hover .card_link .mbr-iconfont {
  color: #4f4af3 !important;
}
.cid-v2f4aRHJ5Y .card_wrapper:hover .shape {
  opacity: 1;
}
.cid-v2f4aRHJ5Y .card_wrapper:hover .shape_1 {
  top: -5px;
  left: -6px;
}
.cid-v2f4aRHJ5Y .card_wrapper:hover .shape_2 {
  transform: rotate(360deg);
  top: -6px;
  right: -2px;
}
.cid-v2f4aRHJ5Y .card_wrapper:hover .shape_3 {
  left: -6px;
  bottom: -6px;
  transform: rotate(360deg);
}
.cid-v2f4aRHJ5Y .card_wrapper:hover .shape_4 {
  right: -20px;
  bottom: 24px;
}
.cid-v2f4aRHJ5Y .icon_block {
  margin-bottom: 40px;
}
.cid-v2f4aRHJ5Y .icon_block .iconfont-wrapper {
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  position: relative;
  box-shadow: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  background-image: linear-gradient(40deg, #2f1508 0%, rgba(133, 60, 24, 0.8) 100%);
}
.cid-v2f4aRHJ5Y .icon_block .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-v2f4aRHJ5Y .card_title {
  margin-bottom: 20px;
  color: #051441;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v2f4aRHJ5Y .card_text {
  margin-bottom: 50px;
}
.cid-v2f4aRHJ5Y .card_link {
  display: block;
}
.cid-v2f4aRHJ5Y .card_link a {
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
}
.cid-v2f4aRHJ5Y .card_link a:hover {
  transform: translateX(6px);
}
.cid-v2f4aRHJ5Y .card_link .mbr-iconfont {
  line-height: 1;
  font-size: 48px;
  color: #afb8ce;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v2f4aRHJ5Y .shape {
  opacity: 0;
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-v2f4aRHJ5Y .shape_1 {
  top: 9px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: #ffcd9f;
  border-radius: 50%;
}
.cid-v2f4aRHJ5Y .shape_2 {
  top: 9px;
  right: 12px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #b4dcfa;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.cid-v2f4aRHJ5Y .shape_3 {
  left: 12px;
  bottom: 9px;
  width: 10px;
  height: 10px;
  background-color: #e3b4fa;
}
.cid-v2f4aRHJ5Y .shape_4 {
  right: 12px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  background: #fd282d;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .cid-v2f4aRHJ5Y .card_wrapper {
    padding: 40px 30px;
    max-width: 370px;
    margin: 30px auto 0;
  }
  .cid-v2f4aRHJ5Y .card_title {
    margin-bottom: 15px;
  }
  .cid-v2f4aRHJ5Y .card_text {
    margin-bottom: 20px;
  }
  .cid-v2f4aRHJ5Y .card_link .mbr-iconfont {
    font-size: 42px;
  }
}
.cid-v2f4aRHJ5Y .card_title,
.cid-v2f4aRHJ5Y .icon_block {
  color: #191c2f;
  text-align: center;
}
.cid-v2f4aRHJ5Y .card_text,
.cid-v2f4aRHJ5Y .card_link {
  color: #000000;
}
.cid-v2f4aTorkD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ececec;
}
.cid-v2f4aTorkD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f4aTorkD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-v2f4aTorkD .container {
    padding: 0 24px;
  }
}
.cid-v2f4aTorkD .row {
  justify-content: center;
  border-top: 1px solid #72716b;
}
@media (min-width: 992px) {
  .cid-v2f4aTorkD .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-v2f4aTorkD .row {
    border: none;
  }
}
.cid-v2f4aTorkD .row .item {
  padding: 0 32px 0 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v2f4aTorkD .row .item {
    padding: 0 16px;
  }
}
.cid-v2f4aTorkD .item-wrapper {
  height: 100%;
}
.cid-v2f4aTorkD .item-wrapper .card-box {
  display: flex;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v2f4aTorkD .item-wrapper .card-box {
    display: block;
  }
}
.cid-v2f4aTorkD .subtitle-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-v2f4aTorkD .subtitle-wrap {
    display: block;
  }
}
.cid-v2f4aTorkD .subtitle-wrap .mbr-section-subtitle {
  padding: 32px;
  writing-mode: tb;
  transform: rotate(180deg);
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v2f4aTorkD .subtitle-wrap .mbr-section-subtitle {
    transform: rotate(0);
    writing-mode: horizontal-tb;
    padding: 24px;
    border-left: 1px solid #72716b;
    text-align: left;
  }
}
.cid-v2f4aTorkD .content-wrapper {
  padding: 32px;
  border-left: 1px solid #72716b;
}
@media (max-width: 992px) {
  .cid-v2f4aTorkD .content-wrapper {
    padding: 24px;
    border-top: 1px solid #72716b;
    border-left: 1px solid #72716b;
  }
}
.cid-v2f4aTorkD .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v2f4aTorkD .content-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2f4aTorkD .content-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-v2f4aTorkD .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-v2f4aTorkD .content-wrapper .mbr-section-btn {
    text-align: left;
    margin-top: 24px;
  }
}
.cid-v2f4aTorkD .mbr-section-title {
  color: #F9F6E0;
}
.cid-v2f4aTorkD .mbr-section-subtitle {
  color: #E0B548;
  text-align: center;
}
.cid-v2f4aTorkD .mbr-text {
  color: #000000;
}
.cid-v2f4aTorkD .mbr-section-title,
.cid-v2f4aTorkD .mbr-section-btn {
  color: #000000;
}
.cid-v2f4aUTRIL {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-color: #ffffff;
}
.cid-v2f4aUTRIL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f4aUTRIL .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-v2f4aUTRIL .container {
    padding: 0 20px;
  }
}
.cid-v2f4aUTRIL .row {
  margin: 0;
}
.cid-v2f4aUTRIL .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2f4aUTRIL .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v2f4aUTRIL .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v2f4aUTRIL .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v2f4aUTRIL .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v2f4aUTRIL .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v2f4aUTRIL .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2f4aW56gw {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-v2f4aW56gw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f4aW56gw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2f4aW56gw .row {
  justify-content: flex-start;
}
.cid-v2f4aW56gw .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v2f4aW56gw .mbr-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-v2f4aXfPDZ {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2f4aXfPDZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f4aXfPDZ .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-v2f4aXfPDZ .container {
    padding: 0 22px;
  }
}
.cid-v2f4aXfPDZ .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v2f4aXfPDZ .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v2f4aXfPDZ .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-v2f4aXfPDZ .image-wrapper img {
    height: 350px;
  }
}
.cid-v2f4aXfPDZ .mbr-section-title {
  margin-bottom: 16px;
  color: #000000;
}
.cid-v2f4aXfPDZ .panel-group {
  border-bottom: 1px solid #d4d3d3;
}
.cid-v2f4aXfPDZ .panel-group .card {
  border-top: 1px solid #d4d3d3;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-v2f4aXfPDZ .panel-group .card:hover,
.cid-v2f4aXfPDZ .panel-group .card:focus {
  border-top: 1px solid #000000;
}
.cid-v2f4aXfPDZ .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v2f4aXfPDZ .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-v2f4aXfPDZ .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v2f4aXfPDZ .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 25px;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 16px;
}
.cid-v2f4aXfPDZ .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-v2f4aXfPDZ .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-v2f4aXfPDZ .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-v2f4aXfPDZ .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v2f4aXfPDZ .panel-title-edit {
  color: #000000;
}
.cid-v2f4aXfPDZ .panel-text {
  color: #8a8588;
}
.cid-v2f4aYRb0O {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #853c18;
}
.cid-v2f4aYRb0O .row {
  flex-direction: row-reverse;
}
.cid-v2f4aYRb0O .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-v2f4aYRb0O .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #4f4af3;
}
.cid-v2f4aYRb0O .svg-top .st0 {
  fill: #853c18;
}
@media (max-width: 992px) {
  .cid-v2f4aYRb0O .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-v2f4aYRb0O .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-v2f4aYRb0O .col-12 {
    padding: 0 2rem;
  }
  .cid-v2f4aYRb0O .row {
    margin: 0 -2rem;
  }
}
.cid-v2f4aYRb0O .mbr-text,
.cid-v2f4aYRb0O .mbr-section-btn {
  color: #ffffff;
}
.cid-v2f5SkZz8Z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2f5SkZz8Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f5SkZz8Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2f5SkZz8Z .row {
  justify-content: space-between;
}
.cid-v2f5SkZz8Z .content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v2f5SkZz8Z .content-wrapper {
    margin-bottom: 22px;
    height: auto;
  }
}
.cid-v2f5SkZz8Z .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-v2f5SkZz8Z .content-wrapper .card-wrapper {
  -webkit-flex: inherit;
}
.cid-v2f5SkZz8Z .content-wrapper .card-wrapper .card-wrap {
  display: inline-block;
  padding: 32px 26px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v2f5SkZz8Z .content-wrapper .card-wrapper .card-wrap {
    padding: 16px;
  }
}
.cid-v2f5SkZz8Z .content-wrapper .card-wrapper .card-wrap .mbr-desc {
  margin-bottom: 10px;
}
.cid-v2f5SkZz8Z .content-wrapper .card-wrapper .card-wrap .mbr-email {
  margin-bottom: 0;
}
.cid-v2f5SkZz8Z .panel-group .card {
  position: relative;
  padding: 22px 0 26px 0;
  background-color: transparent;
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v2f5SkZz8Z .panel-group .card {
    padding: 16px 0 16px 0;
  }
}
.cid-v2f5SkZz8Z .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-v2f5SkZz8Z .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v2f5SkZz8Z .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v2f5SkZz8Z .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v2f5SkZz8Z .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  background-color: #ffffff;
}
.cid-v2f5SkZz8Z .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  color: #853c18;
}
.cid-v2f5SkZz8Z .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-v2f5SkZz8Z .panel-group .card .panel-collapse .panel-body {
  margin-top: 22px;
}
.cid-v2f5SkZz8Z .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v2f5SkZz8Z .mbr-section-title {
  color: #000000;
}
.cid-v2f5SkZz8Z .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-v2f5SkZz8Z .mbr-email {
  color: #ffffff;
  text-align: center;
}
.cid-v2f5SkZz8Z .panel-title-edit {
  color: #000000;
}
.cid-v2f5SkZz8Z .panel-text {
  color: #000000;
}
.cid-v2f4b03eY9 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: #ffffff;
}
.cid-v2f4b03eY9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f4b03eY9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2f4b03eY9 .google-map {
  height: 35rem;
  position: relative;
}
.cid-v2f4b03eY9 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-v2f4b03eY9 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v2f4b03eY9 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v2f4b03eY9 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v2f4b03eY9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2f4b03eY9 .mbr-section-title {
  color: #ffffff;
}
.cid-v2f4b1t0Rr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #853c18;
}
.cid-v2f4b1t0Rr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f4b1t0Rr .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-v2f4b1t0Rr .container {
    padding: 0 16px;
  }
}
.cid-v2f4b1t0Rr .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v2f4b1t0Rr .card {
    margin-bottom: 40px;
  }
}
.cid-v2f4b1t0Rr .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v2f4b1t0Rr .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-v2f4b1t0Rr .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-v2f4b1t0Rr .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2f4b1t0Rr .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v2f4b1t0Rr .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-v2f4b1t0Rr .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v2f4b1t0Rr .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-v2f4b1t0Rr .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-v2f4b1t0Rr .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-v2f4b1t0Rr .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v2f4b1t0Rr .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-v2f4b1t0Rr .mbr-section-title {
  color: #ffffff;
}
.cid-v2f4b1t0Rr .copyright {
  color: #ffffff;
}
.cid-v2f4b1t0Rr .mbr-card-title {
  color: #ffffff;
}
.cid-v2f4b1t0Rr .list {
  color: #ffffff;
}
.cid-v2f4b1t0Rr .mbr-section-title,
.cid-v2f4b1t0Rr .title-wrapper,
.cid-v2f4b1t0Rr .social-wrapper {
  color: #000000;
}
.cid-v2f6r1ZbZN .navbar-dropdown {
  background-color: #853c18 !important;
  padding: 0;
}
.cid-v2f6r1ZbZN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #853c18 !important;
  background: #853c18;
}
.cid-v2f6r1ZbZN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2f6r1ZbZN .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v2f6r1ZbZN .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-v2f6r1ZbZN .menu_box .navbar.opened,
  .cid-v2f6r1ZbZN .menu_box .navbar-collapse {
    background-color: #853c18 !important;
    transition: all 0s ease 0s;
  }
}
.cid-v2f6r1ZbZN .navbar-dropdown {
  position: relative !important;
}
.cid-v2f6r1ZbZN .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v2f6r1ZbZN .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v2f6r1ZbZN .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v2f6r1ZbZN .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-v2f6r1ZbZN .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v2f6r1ZbZN .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #ffcd9f;
  }
  .cid-v2f6r1ZbZN .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v2f6r1ZbZN .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v2f6r1ZbZN .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v2f6r1ZbZN .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v2f6r1ZbZN .offcanvas-body .mbr-text,
  .cid-v2f6r1ZbZN .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-v2f6r1ZbZN .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-v2f6r1ZbZN .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v2f6r1ZbZN .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #222222;
  }
  .cid-v2f6r1ZbZN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v2f6r1ZbZN .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v2f6r1ZbZN .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v2f6r1ZbZN .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v2f6r1ZbZN ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v2f6r1ZbZN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v2f6r1ZbZN .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-v2f6r1ZbZN .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v2f6r1ZbZN li.nav-item {
    position: relative;
    display: inline-block;
    padding: 10px 14px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
    margin: 0;
    border-radius: 8px;
    border: 2px solid transparent;
  }
  .cid-v2f6r1ZbZN .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v2f6r1ZbZN .nav-item {
  margin: 4px 15px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .cid-v2f6r1ZbZN .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v2f6r1ZbZN .nav-item {
    margin: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-v2f6r1ZbZN .nav-item:hover,
  .cid-v2f6r1ZbZN .nav-item:focus {
    background-color: #ffffff;
    border-color: #ff6928;
  }
}
.cid-v2f6r1ZbZN .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-v2f6r1ZbZN .nav-item .nav-link:hover,
.cid-v2f6r1ZbZN .nav-item .nav-link:focus {
  opacity: 1;
  color: #4f4af3 !important;
}
.cid-v2f6r1ZbZN .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v2f6r1ZbZN .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-v2f6r1ZbZN .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-v2f6r1ZbZN .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v2f6r1ZbZN .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-v2f6r1ZbZN .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v2f6r1ZbZN .offcanvas_box {
    display: none;
  }
}
.cid-v2f6r1ZbZN .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v2f6r1ZbZN .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v2f6r1ZbZN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-v2f6r1ZbZN .container {
  display: flex;
  margin: auto;
}
.cid-v2f6r1ZbZN .iconfont-wrapper {
  color: #222222;
  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-v2f6r1ZbZN .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v2f6r1ZbZN .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v2f6r1ZbZN .navbar-caption {
  color: #222222;
}
.cid-v2f6r1ZbZN .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v2f6r1ZbZN .navbar-nav {
    margin: 0;
  }
}
.cid-v2f6r1ZbZN .dropdown-menu,
.cid-v2f6r1ZbZN .navbar.opened {
  background-color: false !important;
}
.cid-v2f6r1ZbZN .nav-item:focus,
.cid-v2f6r1ZbZN .nav-link:focus {
  outline: none;
}
.cid-v2f6r1ZbZN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2f6r1ZbZN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2f6r1ZbZN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2f6r1ZbZN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2f6r1ZbZN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2f6r1ZbZN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2f6r1ZbZN .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-v2f6r1ZbZN .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-v2f6r1ZbZN .navbar.opened {
  transition: all 0.3s;
}
.cid-v2f6r1ZbZN .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v2f6r1ZbZN .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 8px;
}
.cid-v2f6r1ZbZN .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-v2f6r1ZbZN .navbar.collapsed {
  justify-content: center;
}
.cid-v2f6r1ZbZN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2f6r1ZbZN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2f6r1ZbZN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2f6r1ZbZN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2f6r1ZbZN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2f6r1ZbZN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v2f6r1ZbZN .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v2f6r1ZbZN .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v2f6r1ZbZN .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v2f6r1ZbZN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2f6r1ZbZN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2f6r1ZbZN .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v2f6r1ZbZN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2f6r1ZbZN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-v2f6r1ZbZN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2f6r1ZbZN .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v2f6r1ZbZN .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v2f6r1ZbZN .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v2f6r1ZbZN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-v2f6r1ZbZN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2f6r1ZbZN .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v2f6r1ZbZN .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2f6r1ZbZN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2f6r1ZbZN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2f6r1ZbZN .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-v2f6r1ZbZN .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v2f6r1ZbZN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2f6r1ZbZN .dropdown-item.active,
.cid-v2f6r1ZbZN .dropdown-item:active {
  background-color: transparent;
}
.cid-v2f6r1ZbZN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2f6r1ZbZN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2f6r1ZbZN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2f6r1ZbZN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2f6r1ZbZN ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-v2f6r1ZbZN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2f6r1ZbZN button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #853c18;
  background: #ffffff;
}
.cid-v2f6r1ZbZN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-v2f6r1ZbZN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2f6r1ZbZN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2f6r1ZbZN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2f6r1ZbZN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2f6r1ZbZN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2f6r1ZbZN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2f6r1ZbZN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2f6r1ZbZN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2f6r1ZbZN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v2f6r1ZbZN .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-v2f6r1ZbZN .navbar {
    height: 70px;
  }
  .cid-v2f6r1ZbZN .navbar.opened {
    height: auto;
  }
  .cid-v2f6r1ZbZN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2f6r1ZbZN .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v2f6r1ZbZN .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v2f6r1ZbZN .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-v2f6r1ZbZN .mbr-section-btn-main .btn {
  margin: 0 12px 8px 12px;
  padding: 10px 16px;
}
@media (max-width: 992px) {
  .cid-v2f6r1ZbZN .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-v2f6r1ZbZN .navbar-caption:hover {
  color: #4f4af3;
}
@media (min-width: 992px) {
  .cid-v2f6r1ZbZN .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-v2f6r1ZbZN .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-v2f6r1ZbZN .text_widget {
  margin-bottom: 24px;
}
.cid-v2f6r1ZbZN .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-v2f6r1ZbZN .text_widget a:hover {
  color: #ff6928 !important;
}
.cid-v2f6r1ZbZN .mbr-section-subtitle {
  color: #222222;
  text-align: center;
}
.cid-v2f6r1ZbZN .mbr-text {
  color: #222222;
  text-align: center;
}
.cid-v2f6r1ZbZN .mbr-section-subtitle,
.cid-v2f6r1ZbZN .text_widget,
.cid-v2f6r1ZbZN .mbr-section-btn {
  text-align: center;
}
.cid-v2f6r1ZbZN a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v2f6r4dSKE {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ececec;
}
.cid-v2f6r4dSKE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f6r4dSKE .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-v2f6r4dSKE .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-v2f6r4dSKE img {
  border-radius: 1rem;
}
.cid-v2f6r4dSKE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2f6r4dSKE .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v2f6r4dSKE .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v2f6r4dSKE .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2f6r4dSKE .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2f6r4dSKE .mbr-section-subtitle,
.cid-v2f6r4dSKE .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-v2f6r4dSKE .mbr-text,
.cid-v2f6r4dSKE .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-v2f6r5gaeK {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2f6r5gaeK .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-v2f6r5gaeK .container {
    max-width: 1040px;
  }
}
.cid-v2f6r5gaeK .row {
  justify-content: center;
}
.cid-v2f6r5gaeK .item:focus,
.cid-v2f6r5gaeK span:focus {
  outline: none;
}
.cid-v2f6r5gaeK .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-v2f6r5gaeK .col-items {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v2f6r5gaeK .item {
    width: 100%;
  }
  .cid-v2f6r5gaeK .item:first-child {
    padding-bottom: 0.5rem;
  }
  .cid-v2f6r5gaeK .item:last-child {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-v2f6r5gaeK .item:first-child {
    padding-right: 0.5rem;
  }
  .cid-v2f6r5gaeK .item:last-child {
    padding-left: 0.5rem;
  }
}
.cid-v2f6r5gaeK .item-wrap {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 24px;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-v2f6r5gaeK .item-wrap {
    padding: 27px;
  }
}
@media (min-width: 992px) {
  .cid-v2f6r5gaeK .item-wrap {
    padding: 50px;
  }
}
.cid-v2f6r5gaeK .item-content {
  width: 100%;
}
.cid-v2f6r5gaeK .label-text {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-bottom: 16px;
}
.cid-v2f6r5gaeK .mbr-text {
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-v2f6r5gaeK .item-title {
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 0;
}
.cid-v2f6r5gaeK .list-container {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}
.cid-v2f6r5gaeK .list-item {
  display: flex;
  align-items: center;
}
.cid-v2f6r5gaeK .list-item:not(:last-child) {
  margin-bottom: 16px;
}
.cid-v2f6r5gaeK .icon-box {
  padding-right: 14px;
}
.cid-v2f6r5gaeK .list-text {
  flex-grow: 1;
  color: #000000;
  margin-bottom: 0;
}
.cid-v2f6r5gaeK .link-container {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
@media (min-width: 992px) {
  .cid-v2f6r5gaeK .link-container {
    margin-top: 72px;
  }
}
.cid-v2f6r5gaeK .link-container .link:first-child {
  margin-bottom: 16px;
}
.cid-v2f6r5gaeK .link-container .link span {
  padding-right: 10px;
}
.cid-v2f6r5gaeK .item-title,
.cid-v2f6r5gaeK .mbr-section-btn {
  color: #000000;
}
.cid-v2f6r6BaEQ {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2f6r6BaEQ .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #853c18;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-v2f6r6BaEQ .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-v2f6r6BaEQ .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-v2f6r6BaEQ .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-v2f6r6BaEQ .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-v2f6r6BaEQ .items-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-left: 1.736vw;
}
@media (max-width: 991px) {
  .cid-v2f6r6BaEQ .items-container {
    padding-left: 6.66vw;
  }
}
.cid-v2f6r6BaEQ .item {
  position: relative;
  margin-bottom: 0.83vw;
}
@media (max-width: 991px) {
  .cid-v2f6r6BaEQ .item {
    margin-bottom: 3.2vw;
  }
}
.cid-v2f6r6BaEQ .item:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -1.4vw;
  width: 0.6vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-v2f6r6BaEQ .item:before {
    left: -2.5vw;
    width: 1.2vw;
  }
}
@media (max-width: 575px) {
  .cid-v2f6r6BaEQ .item:before {
    left: -2.7vw;
    width: 1.6vw;
  }
}
.cid-v2f6r6BaEQ .mbr-text {
  color: #000000;
}
.cid-v2f6r7OAGH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2f6r7OAGH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f6r7OAGH .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-v2f6r7OAGH .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v2f6r7OAGH .container {
    padding: 0 12px;
  }
}
.cid-v2f6r7OAGH .row {
  justify-content: center;
}
.cid-v2f6r7OAGH .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  background-color: #ffffff;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-v2f6r7OAGH .card-wrapper {
    display: block;
    padding: 24px;
    border-radius: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v2f6r7OAGH .card-wrapper .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-v2f6r7OAGH .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-v2f6r7OAGH .card-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2f6r7OAGH .card-wrapper .title-wrapper .mbr-text span {
  background-color: #ffffff;
  padding: 2px 6px;
  border-radius: 8px;
}
.cid-v2f6r7OAGH .card-wrapper .mbr-section-btn {
  height: 100%;
}
.cid-v2f6r7OAGH .card-wrapper .mbr-section-btn .btn {
  min-width: 200px;
}
.cid-v2f6r7OAGH .mbr-section-title {
  color: #000000;
}
.cid-v2f6r7OAGH .mbr-text {
  color: #222222;
}
.cid-v2f6r7OAGH .mbr-text,
.cid-v2f6r7OAGH .mbr-section-btn {
  color: #000000;
}
.cid-v2f6r96VvG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #853c18;
}
.cid-v2f6r96VvG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f6r96VvG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2f6r96VvG .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-v2f6r96VvG .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v2f6r96VvG .items-wrapper {
  justify-content: center;
  margin: 0 -10px;
}
.cid-v2f6r96VvG .items-wrapper .item {
  padding: 0 10px;
}
.cid-v2f6r96VvG .item {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v2f6r96VvG .item {
    margin-bottom: 16px;
  }
}
.cid-v2f6r96VvG .item .item-wrapper {
  padding: 10px;
  background-color: #ffffff;
  height: 100%;
}
.cid-v2f6r96VvG .item .item-wrapper .item-img {
  margin-bottom: 32px;
}
.cid-v2f6r96VvG .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
}
.cid-v2f6r96VvG .item .item-wrapper .item-content {
  padding: 0 40px 20px;
}
@media (max-width: 992px) {
  .cid-v2f6r96VvG .item .item-wrapper .item-content {
    padding: 0 10px;
  }
}
.cid-v2f6r96VvG .item .item-wrapper .item-content .item-title {
  margin-bottom: 20px;
}
.cid-v2f6r96VvG .item .item-wrapper .item-content .item-text {
  margin-bottom: 20px;
}
.cid-v2f6r96VvG .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v2f6r96VvG .item-title {
  color: #000c3f;
}
.cid-v2f6r96VvG .item-text {
  color: #000c3f;
}
.cid-v2f6r96VvG .item-title,
.cid-v2f6r96VvG .mbr-section-btn {
  color: #02050a;
  text-align: center;
}
.cid-v2f6rawzFp {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ececec;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-v2f6rawzFp .container {
    padding: 0 24px;
  }
}
.cid-v2f6rawzFp .card {
  justify-content: center;
}
.cid-v2f6rawzFp .title-wrapper {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-v2f6rawzFp .title-wrapper {
    padding: 0 24px 24px;
  }
}
.cid-v2f6rawzFp .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v2f6rawzFp .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-v2f6rawzFp .text-wrapper {
  border-top: 1px solid #72716b;
  display: flex;
  justify-content: space-between;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-v2f6rawzFp .text-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-v2f6rawzFp .text-wrapper .mbr-text {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-v2f6rawzFp .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v2f6rawzFp .text-wrapper .mbr-text:last-child {
    margin-bottom: 0;
  }
}
.cid-v2f6rawzFp .mbr-section-title {
  color: #F9F6E0;
}
.cid-v2f6rawzFp .mbr-desc {
  color: #F9F6E0;
}
.cid-v2f6rawzFp .mbr-text {
  color: #000000;
}
.cid-v2f6rawzFp .mbr-section-btn {
  text-align: right;
}
.cid-v2f6rawzFp .mbr-section-title,
.cid-v2f6rawzFp .mbr-section-btn {
  color: #000000;
}
.cid-v2f6rbGCbi {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v2f6rbGCbi .mbr-section-subtitle {
  margin-bottom: 6px;
  color: #000000;
}
.cid-v2f6rbGCbi .mbr-section-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v2f6rbGCbi .card_wrapper {
  margin-top: 40px;
  padding: 60px 40px;
  background-color: #ffffff;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 3px 4px 0 rgba(38, 59, 94, 0.1);
}
.cid-v2f6rbGCbi .card_wrapper:hover {
  transform: translateY(-16px);
  box-shadow: 0 30px 60px 0 rgba(38, 59, 94, 0.1);
}
.cid-v2f6rbGCbi .card_wrapper:hover .card_title {
  color: #4f4af3;
}
.cid-v2f6rbGCbi .card_wrapper:hover .card_link .mbr-iconfont {
  color: #4f4af3 !important;
}
.cid-v2f6rbGCbi .card_wrapper:hover .shape {
  opacity: 1;
}
.cid-v2f6rbGCbi .card_wrapper:hover .shape_1 {
  top: -5px;
  left: -6px;
}
.cid-v2f6rbGCbi .card_wrapper:hover .shape_2 {
  transform: rotate(360deg);
  top: -6px;
  right: -2px;
}
.cid-v2f6rbGCbi .card_wrapper:hover .shape_3 {
  left: -6px;
  bottom: -6px;
  transform: rotate(360deg);
}
.cid-v2f6rbGCbi .card_wrapper:hover .shape_4 {
  right: -20px;
  bottom: 24px;
}
.cid-v2f6rbGCbi .icon_block {
  margin-bottom: 40px;
}
.cid-v2f6rbGCbi .icon_block .iconfont-wrapper {
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  position: relative;
  box-shadow: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  background-image: linear-gradient(40deg, #2f1508 0%, rgba(133, 60, 24, 0.8) 100%);
}
.cid-v2f6rbGCbi .icon_block .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-v2f6rbGCbi .card_title {
  margin-bottom: 20px;
  color: #051441;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v2f6rbGCbi .card_text {
  margin-bottom: 50px;
}
.cid-v2f6rbGCbi .card_link {
  display: block;
}
.cid-v2f6rbGCbi .card_link a {
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
}
.cid-v2f6rbGCbi .card_link a:hover {
  transform: translateX(6px);
}
.cid-v2f6rbGCbi .card_link .mbr-iconfont {
  line-height: 1;
  font-size: 48px;
  color: #afb8ce;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v2f6rbGCbi .shape {
  opacity: 0;
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-v2f6rbGCbi .shape_1 {
  top: 9px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: #ffcd9f;
  border-radius: 50%;
}
.cid-v2f6rbGCbi .shape_2 {
  top: 9px;
  right: 12px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #b4dcfa;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.cid-v2f6rbGCbi .shape_3 {
  left: 12px;
  bottom: 9px;
  width: 10px;
  height: 10px;
  background-color: #e3b4fa;
}
.cid-v2f6rbGCbi .shape_4 {
  right: 12px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  background: #fd282d;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .cid-v2f6rbGCbi .card_wrapper {
    padding: 40px 30px;
    max-width: 370px;
    margin: 30px auto 0;
  }
  .cid-v2f6rbGCbi .card_title {
    margin-bottom: 15px;
  }
  .cid-v2f6rbGCbi .card_text {
    margin-bottom: 20px;
  }
  .cid-v2f6rbGCbi .card_link .mbr-iconfont {
    font-size: 42px;
  }
}
.cid-v2f6rbGCbi .card_title,
.cid-v2f6rbGCbi .icon_block {
  color: #191c2f;
  text-align: center;
}
.cid-v2f6rbGCbi .card_text,
.cid-v2f6rbGCbi .card_link {
  color: #000000;
}
.cid-v2f6rdospf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ececec;
}
.cid-v2f6rdospf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f6rdospf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-v2f6rdospf .container {
    padding: 0 24px;
  }
}
.cid-v2f6rdospf .row {
  justify-content: center;
  border-top: 1px solid #72716b;
}
@media (min-width: 992px) {
  .cid-v2f6rdospf .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-v2f6rdospf .row {
    border: none;
  }
}
.cid-v2f6rdospf .row .item {
  padding: 0 32px 0 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v2f6rdospf .row .item {
    padding: 0 16px;
  }
}
.cid-v2f6rdospf .item-wrapper {
  height: 100%;
}
.cid-v2f6rdospf .item-wrapper .card-box {
  display: flex;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v2f6rdospf .item-wrapper .card-box {
    display: block;
  }
}
.cid-v2f6rdospf .subtitle-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-v2f6rdospf .subtitle-wrap {
    display: block;
  }
}
.cid-v2f6rdospf .subtitle-wrap .mbr-section-subtitle {
  padding: 32px;
  writing-mode: tb;
  transform: rotate(180deg);
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v2f6rdospf .subtitle-wrap .mbr-section-subtitle {
    transform: rotate(0);
    writing-mode: horizontal-tb;
    padding: 24px;
    border-left: 1px solid #72716b;
    text-align: left;
  }
}
.cid-v2f6rdospf .content-wrapper {
  padding: 32px;
  border-left: 1px solid #72716b;
}
@media (max-width: 992px) {
  .cid-v2f6rdospf .content-wrapper {
    padding: 24px;
    border-top: 1px solid #72716b;
    border-left: 1px solid #72716b;
  }
}
.cid-v2f6rdospf .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v2f6rdospf .content-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2f6rdospf .content-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-v2f6rdospf .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-v2f6rdospf .content-wrapper .mbr-section-btn {
    text-align: left;
    margin-top: 24px;
  }
}
.cid-v2f6rdospf .mbr-section-title {
  color: #F9F6E0;
}
.cid-v2f6rdospf .mbr-section-subtitle {
  color: #E0B548;
  text-align: center;
}
.cid-v2f6rdospf .mbr-text {
  color: #000000;
}
.cid-v2f6rdospf .mbr-section-title,
.cid-v2f6rdospf .mbr-section-btn {
  color: #000000;
}
.cid-v2f6reSLqO {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-color: #ffffff;
}
.cid-v2f6reSLqO .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f6reSLqO .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-v2f6reSLqO .container {
    padding: 0 20px;
  }
}
.cid-v2f6reSLqO .row {
  margin: 0;
}
.cid-v2f6reSLqO .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2f6reSLqO .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v2f6reSLqO .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v2f6reSLqO .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v2f6reSLqO .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v2f6reSLqO .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v2f6reSLqO .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2f6rgMXIM {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-v2f6rgMXIM .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f6rgMXIM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2f6rgMXIM .row {
  justify-content: flex-start;
}
.cid-v2f6rgMXIM .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v2f6rgMXIM .mbr-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-v2f6rjdt21 {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2f6rjdt21 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f6rjdt21 .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-v2f6rjdt21 .container {
    padding: 0 22px;
  }
}
.cid-v2f6rjdt21 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v2f6rjdt21 .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v2f6rjdt21 .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-v2f6rjdt21 .image-wrapper img {
    height: 350px;
  }
}
.cid-v2f6rjdt21 .mbr-section-title {
  margin-bottom: 16px;
  color: #000000;
}
.cid-v2f6rjdt21 .panel-group {
  border-bottom: 1px solid #d4d3d3;
}
.cid-v2f6rjdt21 .panel-group .card {
  border-top: 1px solid #d4d3d3;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-v2f6rjdt21 .panel-group .card:hover,
.cid-v2f6rjdt21 .panel-group .card:focus {
  border-top: 1px solid #000000;
}
.cid-v2f6rjdt21 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v2f6rjdt21 .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-v2f6rjdt21 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v2f6rjdt21 .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 25px;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 16px;
}
.cid-v2f6rjdt21 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-v2f6rjdt21 .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-v2f6rjdt21 .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-v2f6rjdt21 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v2f6rjdt21 .panel-title-edit {
  color: #000000;
}
.cid-v2f6rjdt21 .panel-text {
  color: #8a8588;
}
.cid-v2f6rmtOdk {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #853c18;
}
.cid-v2f6rmtOdk .row {
  flex-direction: row-reverse;
}
.cid-v2f6rmtOdk .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-v2f6rmtOdk .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #4f4af3;
}
.cid-v2f6rmtOdk .svg-top .st0 {
  fill: #853c18;
}
@media (max-width: 992px) {
  .cid-v2f6rmtOdk .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-v2f6rmtOdk .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-v2f6rmtOdk .col-12 {
    padding: 0 2rem;
  }
  .cid-v2f6rmtOdk .row {
    margin: 0 -2rem;
  }
}
.cid-v2f6rmtOdk .mbr-text,
.cid-v2f6rmtOdk .mbr-section-btn {
  color: #ffffff;
}
.cid-v2f6rputfr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2f6rputfr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f6rputfr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2f6rputfr .row {
  justify-content: space-between;
}
.cid-v2f6rputfr .content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v2f6rputfr .content-wrapper {
    margin-bottom: 22px;
    height: auto;
  }
}
.cid-v2f6rputfr .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-v2f6rputfr .content-wrapper .card-wrapper {
  -webkit-flex: inherit;
}
.cid-v2f6rputfr .content-wrapper .card-wrapper .card-wrap {
  display: inline-block;
  padding: 32px 26px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v2f6rputfr .content-wrapper .card-wrapper .card-wrap {
    padding: 16px;
  }
}
.cid-v2f6rputfr .content-wrapper .card-wrapper .card-wrap .mbr-desc {
  margin-bottom: 10px;
}
.cid-v2f6rputfr .content-wrapper .card-wrapper .card-wrap .mbr-email {
  margin-bottom: 0;
}
.cid-v2f6rputfr .panel-group .card {
  position: relative;
  padding: 22px 0 26px 0;
  background-color: transparent;
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v2f6rputfr .panel-group .card {
    padding: 16px 0 16px 0;
  }
}
.cid-v2f6rputfr .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-v2f6rputfr .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v2f6rputfr .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v2f6rputfr .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v2f6rputfr .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  background-color: #ffffff;
}
.cid-v2f6rputfr .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  color: #853c18;
}
.cid-v2f6rputfr .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-v2f6rputfr .panel-group .card .panel-collapse .panel-body {
  margin-top: 22px;
}
.cid-v2f6rputfr .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v2f6rputfr .mbr-section-title {
  color: #000000;
}
.cid-v2f6rputfr .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-v2f6rputfr .mbr-email {
  color: #ffffff;
  text-align: center;
}
.cid-v2f6rputfr .panel-title-edit {
  color: #000000;
}
.cid-v2f6rputfr .panel-text {
  color: #000000;
}
.cid-v2f6rrN5rv {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: #ffffff;
}
.cid-v2f6rrN5rv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f6rrN5rv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2f6rrN5rv .google-map {
  height: 35rem;
  position: relative;
}
.cid-v2f6rrN5rv .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-v2f6rrN5rv .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v2f6rrN5rv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v2f6rrN5rv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v2f6rrN5rv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2f6rrN5rv .mbr-section-title {
  color: #ffffff;
}
.cid-v2f6rtPli9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #853c18;
}
.cid-v2f6rtPli9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f6rtPli9 .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-v2f6rtPli9 .container {
    padding: 0 16px;
  }
}
.cid-v2f6rtPli9 .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v2f6rtPli9 .card {
    margin-bottom: 40px;
  }
}
.cid-v2f6rtPli9 .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v2f6rtPli9 .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-v2f6rtPli9 .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-v2f6rtPli9 .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2f6rtPli9 .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v2f6rtPli9 .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-v2f6rtPli9 .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v2f6rtPli9 .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-v2f6rtPli9 .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-v2f6rtPli9 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-v2f6rtPli9 .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v2f6rtPli9 .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-v2f6rtPli9 .mbr-section-title {
  color: #ffffff;
}
.cid-v2f6rtPli9 .copyright {
  color: #ffffff;
}
.cid-v2f6rtPli9 .mbr-card-title {
  color: #ffffff;
}
.cid-v2f6rtPli9 .list {
  color: #ffffff;
}
.cid-v2f6rtPli9 .mbr-section-title,
.cid-v2f6rtPli9 .title-wrapper,
.cid-v2f6rtPli9 .social-wrapper {
  color: #000000;
}
.cid-v2f8lx0aHU .navbar-dropdown {
  background-color: #853c18 !important;
  padding: 0;
}
.cid-v2f8lx0aHU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #853c18 !important;
  background: #853c18;
}
.cid-v2f8lx0aHU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v2f8lx0aHU .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v2f8lx0aHU .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-v2f8lx0aHU .menu_box .navbar.opened,
  .cid-v2f8lx0aHU .menu_box .navbar-collapse {
    background-color: #853c18 !important;
    transition: all 0s ease 0s;
  }
}
.cid-v2f8lx0aHU .navbar-dropdown {
  position: relative !important;
}
.cid-v2f8lx0aHU .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v2f8lx0aHU .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v2f8lx0aHU .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v2f8lx0aHU .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-v2f8lx0aHU .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v2f8lx0aHU .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #ffcd9f;
  }
  .cid-v2f8lx0aHU .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v2f8lx0aHU .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v2f8lx0aHU .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v2f8lx0aHU .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v2f8lx0aHU .offcanvas-body .mbr-text,
  .cid-v2f8lx0aHU .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-v2f8lx0aHU .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-v2f8lx0aHU .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v2f8lx0aHU .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #222222;
  }
  .cid-v2f8lx0aHU .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v2f8lx0aHU .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v2f8lx0aHU .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v2f8lx0aHU .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v2f8lx0aHU ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v2f8lx0aHU .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v2f8lx0aHU .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-v2f8lx0aHU .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v2f8lx0aHU li.nav-item {
    position: relative;
    display: inline-block;
    padding: 10px 14px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
    margin: 0;
    border-radius: 8px;
    border: 2px solid transparent;
  }
  .cid-v2f8lx0aHU .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v2f8lx0aHU .nav-item {
  margin: 4px 15px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .cid-v2f8lx0aHU .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v2f8lx0aHU .nav-item {
    margin: 0 !important;
  }
}
@media (min-width: 992px) {
  .cid-v2f8lx0aHU .nav-item:hover,
  .cid-v2f8lx0aHU .nav-item:focus {
    background-color: #ffffff;
    border-color: #ff6928;
  }
}
.cid-v2f8lx0aHU .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-v2f8lx0aHU .nav-item .nav-link:hover,
.cid-v2f8lx0aHU .nav-item .nav-link:focus {
  opacity: 1;
  color: #4f4af3 !important;
}
.cid-v2f8lx0aHU .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v2f8lx0aHU .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-v2f8lx0aHU .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-v2f8lx0aHU .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v2f8lx0aHU .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-v2f8lx0aHU .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v2f8lx0aHU .offcanvas_box {
    display: none;
  }
}
.cid-v2f8lx0aHU .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v2f8lx0aHU .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v2f8lx0aHU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-v2f8lx0aHU .container {
  display: flex;
  margin: auto;
}
.cid-v2f8lx0aHU .iconfont-wrapper {
  color: #222222;
  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-v2f8lx0aHU .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v2f8lx0aHU .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v2f8lx0aHU .navbar-caption {
  color: #222222;
}
.cid-v2f8lx0aHU .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v2f8lx0aHU .navbar-nav {
    margin: 0;
  }
}
.cid-v2f8lx0aHU .dropdown-menu,
.cid-v2f8lx0aHU .navbar.opened {
  background-color: false !important;
}
.cid-v2f8lx0aHU .nav-item:focus,
.cid-v2f8lx0aHU .nav-link:focus {
  outline: none;
}
.cid-v2f8lx0aHU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v2f8lx0aHU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v2f8lx0aHU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v2f8lx0aHU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v2f8lx0aHU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v2f8lx0aHU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v2f8lx0aHU .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-v2f8lx0aHU .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-v2f8lx0aHU .navbar.opened {
  transition: all 0.3s;
}
.cid-v2f8lx0aHU .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v2f8lx0aHU .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 8px;
}
.cid-v2f8lx0aHU .navbar .navbar-collapse {
  justify-content: center;
  justify-content: space-between;
  z-index: 1;
}
.cid-v2f8lx0aHU .navbar.collapsed {
  justify-content: center;
}
.cid-v2f8lx0aHU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v2f8lx0aHU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v2f8lx0aHU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v2f8lx0aHU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v2f8lx0aHU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v2f8lx0aHU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v2f8lx0aHU .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v2f8lx0aHU .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v2f8lx0aHU .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v2f8lx0aHU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v2f8lx0aHU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v2f8lx0aHU .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v2f8lx0aHU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v2f8lx0aHU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-v2f8lx0aHU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v2f8lx0aHU .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v2f8lx0aHU .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v2f8lx0aHU .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v2f8lx0aHU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-v2f8lx0aHU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v2f8lx0aHU .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v2f8lx0aHU .navbar.navbar-short {
  min-height: 60px;
}
.cid-v2f8lx0aHU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v2f8lx0aHU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v2f8lx0aHU .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-v2f8lx0aHU .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v2f8lx0aHU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v2f8lx0aHU .dropdown-item.active,
.cid-v2f8lx0aHU .dropdown-item:active {
  background-color: transparent;
}
.cid-v2f8lx0aHU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v2f8lx0aHU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v2f8lx0aHU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v2f8lx0aHU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v2f8lx0aHU ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-v2f8lx0aHU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v2f8lx0aHU button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #853c18;
  background: #ffffff;
}
.cid-v2f8lx0aHU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #222222;
}
.cid-v2f8lx0aHU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v2f8lx0aHU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2f8lx0aHU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v2f8lx0aHU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v2f8lx0aHU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2f8lx0aHU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v2f8lx0aHU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v2f8lx0aHU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v2f8lx0aHU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v2f8lx0aHU .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-v2f8lx0aHU .navbar {
    height: 70px;
  }
  .cid-v2f8lx0aHU .navbar.opened {
    height: auto;
  }
  .cid-v2f8lx0aHU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v2f8lx0aHU .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v2f8lx0aHU .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v2f8lx0aHU .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-v2f8lx0aHU .mbr-section-btn-main .btn {
  margin: 0 12px 8px 12px;
  padding: 10px 16px;
}
@media (max-width: 992px) {
  .cid-v2f8lx0aHU .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-v2f8lx0aHU .navbar-caption:hover {
  color: #4f4af3;
}
@media (min-width: 992px) {
  .cid-v2f8lx0aHU .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
@media (min-width: 992px) {
  .cid-v2f8lx0aHU .nav-dropdown {
    margin: 0 auto;
  }
}
.cid-v2f8lx0aHU .text_widget {
  margin-bottom: 24px;
}
.cid-v2f8lx0aHU .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-v2f8lx0aHU .text_widget a:hover {
  color: #ff6928 !important;
}
.cid-v2f8lx0aHU .mbr-section-subtitle {
  color: #222222;
  text-align: center;
}
.cid-v2f8lx0aHU .mbr-text {
  color: #222222;
  text-align: center;
}
.cid-v2f8lx0aHU .mbr-section-subtitle,
.cid-v2f8lx0aHU .text_widget,
.cid-v2f8lx0aHU .mbr-section-btn {
  text-align: center;
}
.cid-v2f8lx0aHU a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v2f8lz7lkN {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ececec;
}
.cid-v2f8lz7lkN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f8lz7lkN .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-v2f8lz7lkN .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-v2f8lz7lkN img {
  border-radius: 1rem;
}
.cid-v2f8lz7lkN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2f8lz7lkN .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-v2f8lz7lkN .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-v2f8lz7lkN .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-v2f8lz7lkN .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2f8lz7lkN .mbr-section-subtitle,
.cid-v2f8lz7lkN .subtitle-wrap {
  color: #19303d;
  text-align: center;
}
.cid-v2f8lz7lkN .mbr-text,
.cid-v2f8lz7lkN .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-v2f8lAdOC3 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-v2f8lAdOC3 .container {
  max-width: 1240px;
}
@media (max-width: 1199px) {
  .cid-v2f8lAdOC3 .container {
    max-width: 1040px;
  }
}
.cid-v2f8lAdOC3 .row {
  justify-content: center;
}
.cid-v2f8lAdOC3 .item:focus,
.cid-v2f8lAdOC3 span:focus {
  outline: none;
}
.cid-v2f8lAdOC3 .col-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-v2f8lAdOC3 .col-items {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .cid-v2f8lAdOC3 .item {
    width: 100%;
  }
  .cid-v2f8lAdOC3 .item:first-child {
    padding-bottom: 0.5rem;
  }
  .cid-v2f8lAdOC3 .item:last-child {
    padding-top: 0.5rem;
  }
}
@media (min-width: 992px) {
  .cid-v2f8lAdOC3 .item:first-child {
    padding-right: 0.5rem;
  }
  .cid-v2f8lAdOC3 .item:last-child {
    padding-left: 0.5rem;
  }
}
.cid-v2f8lAdOC3 .item-wrap {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  padding: 24px;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .cid-v2f8lAdOC3 .item-wrap {
    padding: 27px;
  }
}
@media (min-width: 992px) {
  .cid-v2f8lAdOC3 .item-wrap {
    padding: 50px;
  }
}
.cid-v2f8lAdOC3 .item-content {
  width: 100%;
}
.cid-v2f8lAdOC3 .label-text {
  color: #ffffff;
  opacity: 0.8;
  width: 100%;
  margin-bottom: 16px;
}
.cid-v2f8lAdOC3 .mbr-text {
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 0;
  opacity: 0.8;
}
.cid-v2f8lAdOC3 .item-title {
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 0;
}
.cid-v2f8lAdOC3 .list-container {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}
.cid-v2f8lAdOC3 .list-item {
  display: flex;
  align-items: center;
}
.cid-v2f8lAdOC3 .list-item:not(:last-child) {
  margin-bottom: 16px;
}
.cid-v2f8lAdOC3 .icon-box {
  padding-right: 14px;
}
.cid-v2f8lAdOC3 .list-text {
  flex-grow: 1;
  color: #000000;
  margin-bottom: 0;
}
.cid-v2f8lAdOC3 .link-container {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
@media (min-width: 992px) {
  .cid-v2f8lAdOC3 .link-container {
    margin-top: 72px;
  }
}
.cid-v2f8lAdOC3 .link-container .link:first-child {
  margin-bottom: 16px;
}
.cid-v2f8lAdOC3 .link-container .link span {
  padding-right: 10px;
}
.cid-v2f8lAdOC3 .item-title,
.cid-v2f8lAdOC3 .mbr-section-btn {
  color: #000000;
}
.cid-v2f8lBAsrl {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2f8lBAsrl .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #853c18;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-v2f8lBAsrl .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-v2f8lBAsrl .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-v2f8lBAsrl .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-v2f8lBAsrl .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-v2f8lBAsrl .items-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-left: 1.736vw;
}
@media (max-width: 991px) {
  .cid-v2f8lBAsrl .items-container {
    padding-left: 6.66vw;
  }
}
.cid-v2f8lBAsrl .item {
  position: relative;
  margin-bottom: 0.83vw;
}
@media (max-width: 991px) {
  .cid-v2f8lBAsrl .item {
    margin-bottom: 3.2vw;
  }
}
.cid-v2f8lBAsrl .item:before {
  content: "";
  position: absolute;
  top: 8px;
  left: -1.4vw;
  width: 0.6vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-v2f8lBAsrl .item:before {
    left: -2.5vw;
    width: 1.2vw;
  }
}
@media (max-width: 575px) {
  .cid-v2f8lBAsrl .item:before {
    left: -2.7vw;
    width: 1.6vw;
  }
}
.cid-v2f8lBAsrl .mbr-text {
  color: #000000;
}
.cid-v2f8lCMB4Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2f8lCMB4Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f8lCMB4Y .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-v2f8lCMB4Y .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-v2f8lCMB4Y .container {
    padding: 0 12px;
  }
}
.cid-v2f8lCMB4Y .row {
  justify-content: center;
}
.cid-v2f8lCMB4Y .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  background-color: #ffffff;
  border-radius: 50px;
}
@media (max-width: 992px) {
  .cid-v2f8lCMB4Y .card-wrapper {
    display: block;
    padding: 24px;
    border-radius: 32px;
  }
}
@media (max-width: 992px) {
  .cid-v2f8lCMB4Y .card-wrapper .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-v2f8lCMB4Y .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-v2f8lCMB4Y .card-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v2f8lCMB4Y .card-wrapper .title-wrapper .mbr-text span {
  background-color: #ffffff;
  padding: 2px 6px;
  border-radius: 8px;
}
.cid-v2f8lCMB4Y .card-wrapper .mbr-section-btn {
  height: 100%;
}
.cid-v2f8lCMB4Y .card-wrapper .mbr-section-btn .btn {
  min-width: 200px;
}
.cid-v2f8lCMB4Y .mbr-section-title {
  color: #000000;
}
.cid-v2f8lCMB4Y .mbr-text {
  color: #222222;
}
.cid-v2f8lCMB4Y .mbr-text,
.cid-v2f8lCMB4Y .mbr-section-btn {
  color: #000000;
}
.cid-v2f8lDRkGH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #853c18;
}
.cid-v2f8lDRkGH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f8lDRkGH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2f8lDRkGH .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-v2f8lDRkGH .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v2f8lDRkGH .items-wrapper {
  justify-content: center;
  margin: 0 -10px;
}
.cid-v2f8lDRkGH .items-wrapper .item {
  padding: 0 10px;
}
.cid-v2f8lDRkGH .item {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v2f8lDRkGH .item {
    margin-bottom: 16px;
  }
}
.cid-v2f8lDRkGH .item .item-wrapper {
  padding: 10px;
  background-color: #ffffff;
  height: 100%;
}
.cid-v2f8lDRkGH .item .item-wrapper .item-img {
  margin-bottom: 32px;
}
.cid-v2f8lDRkGH .item .item-wrapper .item-img img {
  height: 310px;
  object-fit: cover;
}
.cid-v2f8lDRkGH .item .item-wrapper .item-content {
  padding: 0 40px 20px;
}
@media (max-width: 992px) {
  .cid-v2f8lDRkGH .item .item-wrapper .item-content {
    padding: 0 10px;
  }
}
.cid-v2f8lDRkGH .item .item-wrapper .item-content .item-title {
  margin-bottom: 20px;
}
.cid-v2f8lDRkGH .item .item-wrapper .item-content .item-text {
  margin-bottom: 20px;
}
.cid-v2f8lDRkGH .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v2f8lDRkGH .item-title {
  color: #000c3f;
}
.cid-v2f8lDRkGH .item-text {
  color: #000c3f;
}
.cid-v2f8lDRkGH .item-title,
.cid-v2f8lDRkGH .mbr-section-btn {
  color: #02050a;
  text-align: center;
}
.cid-v2f8lFjWKV {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ececec;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-v2f8lFjWKV .container {
    padding: 0 24px;
  }
}
.cid-v2f8lFjWKV .card {
  justify-content: center;
}
.cid-v2f8lFjWKV .title-wrapper {
  padding: 0 32px 32px;
}
@media (max-width: 992px) {
  .cid-v2f8lFjWKV .title-wrapper {
    padding: 0 24px 24px;
  }
}
.cid-v2f8lFjWKV .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v2f8lFjWKV .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-v2f8lFjWKV .text-wrapper {
  border-top: 1px solid #72716b;
  display: flex;
  justify-content: space-between;
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-v2f8lFjWKV .text-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-v2f8lFjWKV .text-wrapper .mbr-text {
  width: 45%;
}
@media (max-width: 992px) {
  .cid-v2f8lFjWKV .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-v2f8lFjWKV .text-wrapper .mbr-text:last-child {
    margin-bottom: 0;
  }
}
.cid-v2f8lFjWKV .mbr-section-title {
  color: #F9F6E0;
}
.cid-v2f8lFjWKV .mbr-desc {
  color: #F9F6E0;
}
.cid-v2f8lFjWKV .mbr-text {
  color: #000000;
}
.cid-v2f8lFjWKV .mbr-section-btn {
  text-align: right;
}
.cid-v2f8lFjWKV .mbr-section-title,
.cid-v2f8lFjWKV .mbr-section-btn {
  color: #000000;
}
.cid-v2f8lGxR5O {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v2f8lGxR5O .mbr-section-subtitle {
  margin-bottom: 6px;
  color: #000000;
}
.cid-v2f8lGxR5O .mbr-section-title {
  margin-bottom: 0;
  color: #000000;
}
.cid-v2f8lGxR5O .card_wrapper {
  margin-top: 40px;
  padding: 60px 40px;
  background-color: #ffffff;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 3px 4px 0 rgba(38, 59, 94, 0.1);
}
.cid-v2f8lGxR5O .card_wrapper:hover {
  transform: translateY(-16px);
  box-shadow: 0 30px 60px 0 rgba(38, 59, 94, 0.1);
}
.cid-v2f8lGxR5O .card_wrapper:hover .card_title {
  color: #4f4af3;
}
.cid-v2f8lGxR5O .card_wrapper:hover .card_link .mbr-iconfont {
  color: #4f4af3 !important;
}
.cid-v2f8lGxR5O .card_wrapper:hover .shape {
  opacity: 1;
}
.cid-v2f8lGxR5O .card_wrapper:hover .shape_1 {
  top: -5px;
  left: -6px;
}
.cid-v2f8lGxR5O .card_wrapper:hover .shape_2 {
  transform: rotate(360deg);
  top: -6px;
  right: -2px;
}
.cid-v2f8lGxR5O .card_wrapper:hover .shape_3 {
  left: -6px;
  bottom: -6px;
  transform: rotate(360deg);
}
.cid-v2f8lGxR5O .card_wrapper:hover .shape_4 {
  right: -20px;
  bottom: 24px;
}
.cid-v2f8lGxR5O .icon_block {
  margin-bottom: 40px;
}
.cid-v2f8lGxR5O .icon_block .iconfont-wrapper {
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  position: relative;
  box-shadow: 0 10px 30px 0 rgba(44, 130, 237, 0.4);
  background-image: linear-gradient(40deg, #2f1508 0%, rgba(133, 60, 24, 0.8) 100%);
}
.cid-v2f8lGxR5O .icon_block .mbr-iconfont {
  color: #ffffff;
  font-size: 42px;
  line-height: 80px;
}
.cid-v2f8lGxR5O .card_title {
  margin-bottom: 20px;
  color: #051441;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v2f8lGxR5O .card_text {
  margin-bottom: 50px;
}
.cid-v2f8lGxR5O .card_link {
  display: block;
}
.cid-v2f8lGxR5O .card_link a {
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
}
.cid-v2f8lGxR5O .card_link a:hover {
  transform: translateX(6px);
}
.cid-v2f8lGxR5O .card_link .mbr-iconfont {
  line-height: 1;
  font-size: 48px;
  color: #afb8ce;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-v2f8lGxR5O .shape {
  opacity: 0;
  z-index: -1;
  line-height: 1;
  position: absolute;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 10px;
}
.cid-v2f8lGxR5O .shape_1 {
  top: 9px;
  left: 12px;
  width: 10px;
  height: 10px;
  background: #ffcd9f;
  border-radius: 50%;
}
.cid-v2f8lGxR5O .shape_2 {
  top: 9px;
  right: 12px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #b4dcfa;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}
.cid-v2f8lGxR5O .shape_3 {
  left: 12px;
  bottom: 9px;
  width: 10px;
  height: 10px;
  background-color: #e3b4fa;
}
.cid-v2f8lGxR5O .shape_4 {
  right: 12px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  background: #fd282d;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .cid-v2f8lGxR5O .card_wrapper {
    padding: 40px 30px;
    max-width: 370px;
    margin: 30px auto 0;
  }
  .cid-v2f8lGxR5O .card_title {
    margin-bottom: 15px;
  }
  .cid-v2f8lGxR5O .card_text {
    margin-bottom: 20px;
  }
  .cid-v2f8lGxR5O .card_link .mbr-iconfont {
    font-size: 42px;
  }
}
.cid-v2f8lGxR5O .card_title,
.cid-v2f8lGxR5O .icon_block {
  color: #191c2f;
  text-align: center;
}
.cid-v2f8lGxR5O .card_text,
.cid-v2f8lGxR5O .card_link {
  color: #000000;
}
.cid-v2f8lIe3Db {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ececec;
}
.cid-v2f8lIe3Db .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f8lIe3Db .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-v2f8lIe3Db .container {
    padding: 0 24px;
  }
}
.cid-v2f8lIe3Db .row {
  justify-content: center;
  border-top: 1px solid #72716b;
}
@media (min-width: 992px) {
  .cid-v2f8lIe3Db .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-v2f8lIe3Db .row {
    border: none;
  }
}
.cid-v2f8lIe3Db .row .item {
  padding: 0 32px 0 0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v2f8lIe3Db .row .item {
    padding: 0 16px;
  }
}
.cid-v2f8lIe3Db .item-wrapper {
  height: 100%;
}
.cid-v2f8lIe3Db .item-wrapper .card-box {
  display: flex;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v2f8lIe3Db .item-wrapper .card-box {
    display: block;
  }
}
.cid-v2f8lIe3Db .subtitle-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-v2f8lIe3Db .subtitle-wrap {
    display: block;
  }
}
.cid-v2f8lIe3Db .subtitle-wrap .mbr-section-subtitle {
  padding: 32px;
  writing-mode: tb;
  transform: rotate(180deg);
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v2f8lIe3Db .subtitle-wrap .mbr-section-subtitle {
    transform: rotate(0);
    writing-mode: horizontal-tb;
    padding: 24px;
    border-left: 1px solid #72716b;
    text-align: left;
  }
}
.cid-v2f8lIe3Db .content-wrapper {
  padding: 32px;
  border-left: 1px solid #72716b;
}
@media (max-width: 992px) {
  .cid-v2f8lIe3Db .content-wrapper {
    padding: 24px;
    border-top: 1px solid #72716b;
    border-left: 1px solid #72716b;
  }
}
.cid-v2f8lIe3Db .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v2f8lIe3Db .content-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2f8lIe3Db .content-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-v2f8lIe3Db .content-wrapper .mbr-section-btn {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-v2f8lIe3Db .content-wrapper .mbr-section-btn {
    text-align: left;
    margin-top: 24px;
  }
}
.cid-v2f8lIe3Db .mbr-section-title {
  color: #F9F6E0;
}
.cid-v2f8lIe3Db .mbr-section-subtitle {
  color: #E0B548;
  text-align: center;
}
.cid-v2f8lIe3Db .mbr-text {
  color: #000000;
}
.cid-v2f8lIe3Db .mbr-section-title,
.cid-v2f8lIe3Db .mbr-section-btn {
  color: #000000;
}
.cid-v2f8lJNAbE {
  padding-top: 5rem;
  padding-bottom: 9rem;
  background-color: #ffffff;
}
.cid-v2f8lJNAbE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f8lJNAbE .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-v2f8lJNAbE .container {
    padding: 0 20px;
  }
}
.cid-v2f8lJNAbE .row {
  margin: 0;
}
.cid-v2f8lJNAbE .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v2f8lJNAbE .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-v2f8lJNAbE .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-v2f8lJNAbE .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-v2f8lJNAbE .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-v2f8lJNAbE .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-v2f8lJNAbE .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-v2f8lKYjab {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
.cid-v2f8lKYjab .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f8lKYjab .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2f8lKYjab .row {
  justify-content: flex-start;
}
.cid-v2f8lKYjab .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-v2f8lKYjab .mbr-text {
  color: #000000;
  margin-bottom: 0;
  margin-top: 40px;
}
.cid-v2f8lMiBBY {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2f8lMiBBY .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f8lMiBBY .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-v2f8lMiBBY .container {
    padding: 0 22px;
  }
}
.cid-v2f8lMiBBY .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v2f8lMiBBY .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-v2f8lMiBBY .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-v2f8lMiBBY .image-wrapper img {
    height: 350px;
  }
}
.cid-v2f8lMiBBY .mbr-section-title {
  margin-bottom: 16px;
  color: #000000;
}
.cid-v2f8lMiBBY .panel-group {
  border-bottom: 1px solid #d4d3d3;
}
.cid-v2f8lMiBBY .panel-group .card {
  border-top: 1px solid #d4d3d3;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-v2f8lMiBBY .panel-group .card:hover,
.cid-v2f8lMiBBY .panel-group .card:focus {
  border-top: 1px solid #000000;
}
.cid-v2f8lMiBBY .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v2f8lMiBBY .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-v2f8lMiBBY .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v2f8lMiBBY .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 25px;
  width: 25px;
  height: 25px;
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
  color: #000000;
  margin-left: 16px;
}
.cid-v2f8lMiBBY .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-v2f8lMiBBY .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-v2f8lMiBBY .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-v2f8lMiBBY .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v2f8lMiBBY .panel-title-edit {
  color: #000000;
}
.cid-v2f8lMiBBY .panel-text {
  color: #8a8588;
}
.cid-v2f8lOF1RC {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-color: #853c18;
}
.cid-v2f8lOF1RC .row {
  flex-direction: row-reverse;
}
.cid-v2f8lOF1RC .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-v2f8lOF1RC .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #4f4af3;
}
.cid-v2f8lOF1RC .svg-top .st0 {
  fill: #853c18;
}
@media (max-width: 992px) {
  .cid-v2f8lOF1RC .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-v2f8lOF1RC .mbr-section-title {
  color: #ffffff;
}
@media (min-width: 1400px) {
  .cid-v2f8lOF1RC .col-12 {
    padding: 0 2rem;
  }
  .cid-v2f8lOF1RC .row {
    margin: 0 -2rem;
  }
}
.cid-v2f8lOF1RC .mbr-text,
.cid-v2f8lOF1RC .mbr-section-btn {
  color: #ffffff;
}
.cid-v2f8lQf4EW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v2f8lQf4EW .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f8lQf4EW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2f8lQf4EW .row {
  justify-content: space-between;
}
.cid-v2f8lQf4EW .content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v2f8lQf4EW .content-wrapper {
    margin-bottom: 22px;
    height: auto;
  }
}
.cid-v2f8lQf4EW .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-v2f8lQf4EW .content-wrapper .card-wrapper {
  -webkit-flex: inherit;
}
.cid-v2f8lQf4EW .content-wrapper .card-wrapper .card-wrap {
  display: inline-block;
  padding: 32px 26px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v2f8lQf4EW .content-wrapper .card-wrapper .card-wrap {
    padding: 16px;
  }
}
.cid-v2f8lQf4EW .content-wrapper .card-wrapper .card-wrap .mbr-desc {
  margin-bottom: 10px;
}
.cid-v2f8lQf4EW .content-wrapper .card-wrapper .card-wrap .mbr-email {
  margin-bottom: 0;
}
.cid-v2f8lQf4EW .panel-group .card {
  position: relative;
  padding: 22px 0 26px 0;
  background-color: transparent;
  border-bottom: 1px solid #000000;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-v2f8lQf4EW .panel-group .card {
    padding: 16px 0 16px 0;
  }
}
.cid-v2f8lQf4EW .panel-group .card:first-child {
  border-top: 1px solid #000000;
}
.cid-v2f8lQf4EW .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-v2f8lQf4EW .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-v2f8lQf4EW .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-v2f8lQf4EW .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
  background-color: #ffffff;
}
.cid-v2f8lQf4EW .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  color: #853c18;
}
.cid-v2f8lQf4EW .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-v2f8lQf4EW .panel-group .card .panel-collapse .panel-body {
  margin-top: 22px;
}
.cid-v2f8lQf4EW .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-v2f8lQf4EW .mbr-section-title {
  color: #000000;
}
.cid-v2f8lQf4EW .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-v2f8lQf4EW .mbr-email {
  color: #ffffff;
  text-align: center;
}
.cid-v2f8lQf4EW .panel-title-edit {
  color: #000000;
}
.cid-v2f8lQf4EW .panel-text {
  color: #000000;
}
.cid-v2f8lROcn8 {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background: #ffffff;
}
.cid-v2f8lROcn8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f8lROcn8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2f8lROcn8 .google-map {
  height: 35rem;
  position: relative;
}
.cid-v2f8lROcn8 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-v2f8lROcn8 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-v2f8lROcn8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v2f8lROcn8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v2f8lROcn8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v2f8lROcn8 .mbr-section-title {
  color: #ffffff;
}
.cid-v2f8lTg5OT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #853c18;
}
.cid-v2f8lTg5OT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2f8lTg5OT .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-v2f8lTg5OT .container {
    padding: 0 16px;
  }
}
.cid-v2f8lTg5OT .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-v2f8lTg5OT .card {
    margin-bottom: 40px;
  }
}
.cid-v2f8lTg5OT .card .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v2f8lTg5OT .card .content-wrapper .title-wrapper .title-wrap {
    margin-bottom: 40px;
  }
}
.cid-v2f8lTg5OT .card .content-wrapper .title-wrapper .title-wrap img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 1rem;
}
.cid-v2f8lTg5OT .card .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2f8lTg5OT .card .content-wrapper .copyright {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v2f8lTg5OT .card .content-wrapper .copyright {
    margin-bottom: 40px;
  }
}
.cid-v2f8lTg5OT .card .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v2f8lTg5OT .card .social-wrapper .social-wrap .mbr-iconfont {
  font-size: 20px;
  margin-right: 48px;
  color: #ffffff;
}
.cid-v2f8lTg5OT .list-wrapper .mbr-card-title {
  margin-bottom: 16px;
}
.cid-v2f8lTg5OT .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-v2f8lTg5OT .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v2f8lTg5OT .list-wrapper .list {
    margin-bottom: 40px;
  }
}
.cid-v2f8lTg5OT .mbr-section-title {
  color: #ffffff;
}
.cid-v2f8lTg5OT .copyright {
  color: #ffffff;
}
.cid-v2f8lTg5OT .mbr-card-title {
  color: #ffffff;
}
.cid-v2f8lTg5OT .list {
  color: #ffffff;
}
.cid-v2f8lTg5OT .mbr-section-title,
.cid-v2f8lTg5OT .title-wrapper,
.cid-v2f8lTg5OT .social-wrapper {
  color: #000000;
}
