.btn {
  border-width: 2px;
}
body {
  font-family: Figtree;
}
.display-1 {
  font-family: 'Figtree', sans-serif;
  font-size: 4.88rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.1rem;
}
.display-2 {
  font-family: 'Figtree', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Figtree', sans-serif;
  font-size: 1.1rem;
  line-height: 1.3;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Figtree', sans-serif;
  font-size: 2rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Figtree', sans-serif;
  font-size: 1.2rem;
  line-height: 1.3;
}
.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.904rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.416rem;
    font-size: calc( 2.358rem + (4.88 - 2.358) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.358rem + (4.88 - 2.358) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((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: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #f5a80c !important;
}
.bg-success {
  background-color: #279898 !important;
}
.bg-info {
  background-color: #a073ec !important;
}
.bg-warning {
  background-color: #bb442e !important;
}
.bg-danger {
  background-color: #ff310a !important;
}
.btn-primary,
.btn-primary:active {
  background: linear-gradient(to bottom, #f5a80c 0 33.33333333%, #f5a80c 33.33333333%, #bf442e 66.66666667%, #bf442e 66.66666667% 100%) !important;
  border: none !important;
  color: #ffffff !important;
  background-position: top !important;
  background-size: 100% 300% !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background: linear-gradient(to bottom, #f5a80c 0 33.33333333%, #f5a80c 33.33333333%, #bf442e 66.66666667%, #bf442e 66.66666667% 100%) !important;
  border: none !important;
  background-position: bottom !important;
  background-size: 100% 300% !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background: #a47007 !important;
  border: none !important;
}
.btn-secondary,
.btn-secondary:active {
  background: linear-gradient(to bottom, #2a1340 0 33.33333333%, #2a1340 33.33333333%, #a275ec 66.66666667%, #a275ec 66.66666667% 100%) !important;
  border: none !important;
  color: #ffffff !important;
  background-position: top !important;
  background-size: 100% 300% !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background: linear-gradient(to bottom, #2a1340 0 33.33333333%, #2a1340 33.33333333%, #a275ec 66.66666667%, #a275ec 66.66666667% 100%) !important;
  border: none !important;
  background-position: bottom !important;
  background-size: 100% 300% !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background: #000000 !important;
  border: none !important;
}
.btn-info,
.btn-info:active {
  background: linear-gradient(to bottom, #a073ec 0 33.33333333%, #a073ec 33.33333333%, #29133e 66.66666667%, #29133e 66.66666667% 100%) !important;
  border: none !important;
  color: #ffffff !important;
  background-position: top !important;
  background-size: 100% 300% !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background: linear-gradient(to bottom, #a073ec 0 33.33333333%, #a073ec 33.33333333%, #29133e 66.66666667%, #29133e 66.66666667% 100%) !important;
  border: none !important;
  background-position: bottom !important;
  background-size: 100% 300% !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background: #6c27e2 !important;
  border: none !important;
}
.btn-success,
.btn-success:active {
  background: linear-gradient(to bottom, #279898 0 33.33333333%, #279898 33.33333333%, #3d6d54 66.66666667%, #3d6d54 66.66666667% 100%) !important;
  border: none !important;
  color: #ffffff !important;
  background-position: top !important;
  background-size: 100% 300% !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background: linear-gradient(to bottom, #279898 0 33.33333333%, #279898 33.33333333%, #3d6d54 66.66666667%, #3d6d54 66.66666667% 100%) !important;
  border: none !important;
  background-position: bottom !important;
  background-size: 100% 300% !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background: #155353 !important;
  border: none !important;
}
.btn-warning,
.btn-warning:active {
  background: linear-gradient(to bottom, #bb442e 0 33.33333333%, #bb442e 33.33333333%, #f3a70b 66.66666667%, #f3a70b 66.66666667% 100%) !important;
  border: none !important;
  color: #ffffff !important;
  background-position: top !important;
  background-size: 100% 300% !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background: linear-gradient(to bottom, #bb442e 0 33.33333333%, #bb442e 33.33333333%, #f3a70b 66.66666667%, #f3a70b 66.66666667% 100%) !important;
  border: none !important;
  background-position: bottom !important;
  background-size: 100% 300% !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background: #752b1d !important;
  border: none !important;
}
.btn-danger,
.btn-danger:active {
  background: linear-gradient(to bottom, #ff310a 0 33.33333333%, #ff310a 33.33333333%, #ffb61e 66.66666667%, #ffb61e 66.66666667% 100%) !important;
  border: none !important;
  color: #ffffff !important;
  background-position: top !important;
  background-size: 100% 300% !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background: linear-gradient(to bottom, #ff310a 0 33.33333333%, #ff310a 33.33333333%, #ffb61e 66.66666667%, #ffb61e 66.66666667% 100%) !important;
  border: none !important;
  background-position: bottom !important;
  background-size: 100% 300% !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background: #b21c00 !important;
  border: none !important;
}
.btn-white,
.btn-white:active {
  background: linear-gradient(to bottom, #fafafa 0 33.33333333%, #fafafa 33.33333333%, #f0f0f0 66.66666667%, #f0f0f0 66.66666667% 100%) !important;
  border: none !important;
  color: #7a7a7a !important;
  background-position: top !important;
  background-size: 100% 300% !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #707070 !important;
  background: linear-gradient(to bottom, #fafafa 0 33.33333333%, #fafafa 33.33333333%, #f0f0f0 66.66666667%, #f0f0f0 66.66666667% 100%) !important;
  border: none !important;
  background-position: bottom !important;
  background-size: 100% 300% !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background: #cfcfcf !important;
  border: none !important;
}
.btn-black,
.btn-black:active {
  background: linear-gradient(to bottom, #161616 0 33.33333333%, #161616 33.33333333%, #2a2116 66.66666667%, #2a2116 66.66666667% 100%) !important;
  border: none !important;
  color: #ffffff !important;
  background-position: top !important;
  background-size: 100% 300% !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background: linear-gradient(to bottom, #161616 0 33.33333333%, #161616 33.33333333%, #2a2116 66.66666667%, #2a2116 66.66666667% 100%) !important;
  border: none !important;
  background-position: bottom !important;
  background-size: 100% 300% !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background: #000000 !important;
  border: none !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #f5a80c;
  color: #f5a80c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #a47007 !important;
  background-color: transparent!important;
  border-color: #a47007 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f5a80c !important;
  border-color: #f5a80c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #2a1340;
  color: #2a1340;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2a1340 !important;
  border-color: #2a1340 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #a073ec;
  color: #a073ec;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #6c27e2 !important;
  background-color: transparent!important;
  border-color: #6c27e2 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #a073ec !important;
  border-color: #a073ec !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #279898;
  color: #279898;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #155353 !important;
  background-color: transparent!important;
  border-color: #155353 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #279898 !important;
  border-color: #279898 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #bb442e;
  color: #bb442e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #752b1d !important;
  background-color: transparent!important;
  border-color: #752b1d !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #bb442e !important;
  border-color: #bb442e !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff310a;
  color: #ff310a;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b21c00 !important;
  background-color: transparent!important;
  border-color: #b21c00 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff310a !important;
  border-color: #ff310a !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #161616;
  color: #161616;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #161616 !important;
  border-color: #161616 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  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: #cfcfcf !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: #f5a80c !important;
}
.text-secondary {
  color: #2a1340 !important;
}
.text-success {
  color: #279898 !important;
}
.text-info {
  color: #a073ec !important;
}
.text-warning {
  color: #bb442e !important;
}
.text-danger {
  color: #ff310a !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #161616 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #956606 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #124747 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #641edb !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #69261a !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a31a00 !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: #f5a80c;
}
.nav-tabs .nav-link:not(.active) {
  color: #161616;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #a073ec;
}
.alert-warning {
  background-color: #bb442e;
}
.alert-danger {
  background-color: #ff310a;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f5a80c;
  border-color: #f5a80c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f5a80c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fdeed0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #67d8d8;
}
.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: #e19587;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffddd6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Figtree', sans-serif;
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #f5a80c !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Figtree', sans-serif;
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #f5a80c;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f5a80c;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f5a80c;
}
.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: #f5a80c;
  border-bottom-color: #f5a80c;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #f5a80c !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #2a1340 !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='%23f5a80c' %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-duration: .4s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: calc(1420px + 3vw);
  padding-left: 1.5vw;
  padding-right: 1.5vw;
}
.container-fluid {
  padding-left: 1.5vw;
  padding-right: 1.5vw;
}
.row {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.row {
  justify-content: center;
}
b,
strong {
  font-weight: 700 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 54px;
  padding: 25px 35px;
  border-radius: 80px;
  font-weight: 700 !important;
  transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
  box-shadow: none !important;
  overflow: hidden;
}
.cid-urUE5t0iz9 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-urUE5t0iz9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-urUE5t0iz9 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-urUE5t0iz9 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-urUE5t0iz9 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.cid-urUE5t0iz9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-urUE5t0iz9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-urUE5t0iz9 .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-urUE5t0iz9 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-urUE5t0iz9 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-urUE5t0iz9 .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
.cid-urUE5t0iz9 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-urUE5t0iz9 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-urUE5t0iz9 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-urUE5t0iz9 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-urUE5t0iz9 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-urUE5t0iz9 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-urUE5t0iz9 .nav-link:hover {
  color: #ed463f !important;
}
.cid-urUE5t0iz9 .navbar-logo {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-urUE5t0iz9 .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-urUE5t0iz9 .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.cid-urUE5t0iz9 .navbar-caption:hover,
.cid-urUE5t0iz9 .navbar-caption:focus {
  color: #ed463f !important;
}
@media (max-width: 767px) {
  .cid-urUE5t0iz9 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-urUE5t0iz9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-urUE5t0iz9 .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #ffffff;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.cid-urUE5t0iz9 .iconfont-wrapper {
  color: #404349 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-urUE5t0iz9 .iconfont-wrapper:hover,
.cid-urUE5t0iz9 .iconfont-wrapper:focus {
  color: #ed463f !important;
}
.cid-urUE5t0iz9 .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  border-radius: 4px !important;
}
.cid-urUE5t0iz9 .nav-item:focus,
.cid-urUE5t0iz9 .nav-link:focus {
  outline: none;
}
.cid-urUE5t0iz9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-urUE5t0iz9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-urUE5t0iz9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-urUE5t0iz9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-urUE5t0iz9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-urUE5t0iz9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-urUE5t0iz9 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-urUE5t0iz9 .navbar.opened {
  transition: all 0.3s;
}
.cid-urUE5t0iz9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-urUE5t0iz9 .navbar .navbar-logo img {
  width: auto;
}
.cid-urUE5t0iz9 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-urUE5t0iz9 .navbar .navbar-collapse {
    position: absolute;
  }
}
.cid-urUE5t0iz9 .navbar.collapsed {
  justify-content: center;
}
.cid-urUE5t0iz9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-urUE5t0iz9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-urUE5t0iz9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-urUE5t0iz9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-urUE5t0iz9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-urUE5t0iz9 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-urUE5t0iz9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-urUE5t0iz9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-urUE5t0iz9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-urUE5t0iz9 .navbar {
    min-height: 72px;
  }
  .cid-urUE5t0iz9 .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-urUE5t0iz9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-urUE5t0iz9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-urUE5t0iz9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-urUE5t0iz9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-urUE5t0iz9 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-urUE5t0iz9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-urUE5t0iz9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-urUE5t0iz9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-urUE5t0iz9 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-urUE5t0iz9 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-urUE5t0iz9 .dropdown-item.active,
.cid-urUE5t0iz9 .dropdown-item:active {
  background-color: transparent;
}
.cid-urUE5t0iz9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-urUE5t0iz9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-urUE5t0iz9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-urUE5t0iz9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-urUE5t0iz9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-urUE5t0iz9 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-urUE5t0iz9 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-urUE5t0iz9 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-urUE5t0iz9 .navbar-buttons {
    text-align: left;
  }
}
.cid-urUE5t0iz9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-urUE5t0iz9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #404349;
}
.cid-urUE5t0iz9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-urUE5t0iz9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urUE5t0iz9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-urUE5t0iz9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-urUE5t0iz9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urUE5t0iz9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-urUE5t0iz9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-urUE5t0iz9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-urUE5t0iz9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-urUE5t0iz9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-urUE5t0iz9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 0;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-urUE5t0iz9 .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-urUE5t0iz9 .navbar {
    height: 70px;
  }
  .cid-urUE5t0iz9 .navbar.opened {
    height: auto;
  }
  .cid-urUE5t0iz9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-urUE5t0iz9 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-urUE5t0iz9 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-urUE5t0iz9 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-urUE5t0iz9 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-urUE5t0iz9 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-urUE5t0iz9 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-urUE5t0iz9 .mbr-section-btn {
    padding-left: 0;
  }
}
.cid-urUE5t0iz9 .mbr-section-btn .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.cid-urUE5t0iz9 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-urUE5t0iz9 .navbar-brand {
    margin-right: auto;
  }
  .cid-urUE5t0iz9 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    border-radius: 4px !important;
  }
  .cid-urUE5t0iz9 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-urUE5t0iz9 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-urUE5t0iz9 .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-urUE5t0iz9 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-urUE5t0iz9 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-urUE5t0iz9 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-urUE5t0iz9 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-urUE5t0iz9 .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-urUE5t0iz9 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-urUE5t0iz9 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-urUE5t0iz9 .navbar-brand,
.cid-urUE5t0iz9 .navbar-toggler,
.cid-urUE5t0iz9 .navbar-collapse {
  position: relative;
  z-index: 1;
}
.cid-urUUxQw9Ud {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-urUUxQw9Ud .mbr-fallback-image.disabled {
  display: none;
}
.cid-urUUxQw9Ud .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urUUxQw9Ud .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-urUUxQw9Ud .container {
    padding: 10px 8px;
  }
}
.cid-urUUxQw9Ud .row {
  border-radius: 25px;
  background-color: #e5b762;
  padding: 100px 40px 40px;
  margin: 0;
  overflow: hidden;
  justify-content: center;
  box-shadow: inset -60px 0 30rem #fadd8a;
}
@media (max-width: 768px) {
  .cid-urUUxQw9Ud .row {
    padding: 50px 10px 40px;
  }
}
.cid-urUUxQw9Ud .row .card {
  padding: 0;
  justify-content: center;
}
.cid-urUUxQw9Ud .image-wrapper {
  position: relative;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-urUUxQw9Ud .image-wrapper {
    margin: 0 0 32px 0;
  }
}
.cid-urUUxQw9Ud .image-wrapper img {
  height: 650px;
  border-radius: 25px !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-urUUxQw9Ud .image-wrapper img {
    height: 350px;
  }
}
.cid-urUUxQw9Ud .image-wrapper .icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cid-urUUxQw9Ud .image-wrapper .icon-wrapper .mbr-iconfont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  font-size: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  color: #ffffff;
  background-color: #f85f32;
  transform: rotate(-20deg);
  pointer-events: visible;
}
.cid-urUUxQw9Ud .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(2) {
  left: auto;
  right: 0;
  background-color: #e354e3;
  transform: rotate(20deg);
}
.cid-urUUxQw9Ud .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(3) {
  top: auto;
  bottom: 0;
  background-color: #715edb;
  transform: rotate(-20deg);
}
@media (max-width: 768px) {
  .cid-urUUxQw9Ud .image-wrapper .icon-wrapper .mbr-iconfont {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}
.cid-urUUxQw9Ud .content-wrapper .mbr-section-subtitle {
  opacity: .5;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-urUUxQw9Ud .content-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-urUUxQw9Ud .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-urUUxQw9Ud .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-urUUxQw9Ud .content-wrapper .mbr-section-title span {
  opacity: .8;
}
.cid-urUUxQw9Ud .content-wrapper .mbr-text {
  opacity: .5;
  margin-bottom: 0;
}
.cid-urUUxQw9Ud .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-urUUxQw9Ud .mbr-section-title {
  color: #ffffff;
}
.cid-urUUxQw9Ud .mbr-section-subtitle {
  color: #ffffff;
}
.cid-urUUxQw9Ud .mbr-text {
  color: #000000;
}
.cid-urUUxQw9Ud .mbr-section-title,
.cid-urUUxQw9Ud .mbr-section-btn {
  color: #000000;
}
.cid-urUDKQS4Mc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5b762;
}
.cid-urUDKQS4Mc .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-urUDKQS4Mc .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-urUDKQS4Mc .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #e8f5e3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-urUDKQS4Mc .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-urUDKQS4Mc .mbr-text {
  color: #000000;
}
.cid-urUI6jIqLf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urUI6jIqLf .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-urUI6jIqLf .content_wrapper:hover .mbr-section-title a {
  color: #2a1340 !important;
}
.cid-urUI6jIqLf .mbr-section-title {
  margin-bottom: 12px;
}
.cid-urUI6jIqLf .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-urUI6jIqLf .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-urUI6jIqLf .mbr-section-btn .btn-secondary-outline:hover,
.cid-urUI6jIqLf .mbr-section-btn .btn-secondary-outline .active,
.cid-urUI6jIqLf .mbr-section-btn .btn-secondary-outline:focus {
  color: #f5a80c !important;
}
.cid-urUI6jIqLf .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-urUI6jIqLf .image_post {
  display: inline-block;
}
.cid-urUI6jIqLf .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-urUI6jIqLf .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-tw2DecmQdM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5b762;
  overflow: hidden;
}
.cid-tw2DecmQdM .mbr-section-head {
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-tw2DecmQdM .mbr-section-head {
    padding-bottom: 40px;
  }
}
.cid-tw2DecmQdM .mbr-section-title {
  color: #FFFFFF;
}
.cid-tw2DecmQdM .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-tw2DecmQdM .items-row {
  padding-top: 40px;
  row-gap: 60px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .cid-tw2DecmQdM .items-row {
    padding-top: 0;
    row-gap: 40px;
  }
}
@media (min-width: 576px) {
  .cid-tw2DecmQdM .item {
    width: 47%;
  }
  .cid-tw2DecmQdM .item:nth-child(1n) {
    transform: translateY(0);
  }
  .cid-tw2DecmQdM .item:nth-child(2n) {
    transform: translateY(-40px);
  }
  .cid-tw2DecmQdM .item:nth-child(3n) {
    transform: translateY(-10px);
  }
  .cid-tw2DecmQdM .item:nth-child(4n) {
    transform: translateY(-20px);
  }
  .cid-tw2DecmQdM .item:nth-child(5n) {
    transform: translateY(-10px);
  }
  .cid-tw2DecmQdM .item:nth-child(6n) {
    transform: translateY(-40px);
  }
}
@media (min-width: 768px) {
  .cid-tw2DecmQdM .item {
    width: 42%;
  }
}
@media (min-width: 992px) {
  .cid-tw2DecmQdM .item {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .cid-tw2DecmQdM .item {
    width: 27%;
  }
}
.cid-tw2DecmQdM .item-img {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tw2DecmQdM .item-img img {
  width: 100%;
  aspect-ratio: calc(2 / 3);
  object-fit: cover;
  transform: scale(1.01);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-tw2DecmQdM .item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-tw2DecmQdM .item-wrapper:hover .item-img {
  border-radius: 25px;
  transform: scale(0.95);
}
.cid-tw2DecmQdM .item-wrapper:hover .item-img img {
  transform: scale(1.2, 1.2);
}
.cid-tw2DecmQdM .item-content {
  flex-grow: 1;
  padding-top: 31px;
}
.cid-tw2DecmQdM .item-title {
  margin-bottom: 32px;
  color: #FFFFFF;
}
.cid-tw2DecmQdM .mbr-text {
  position: relative;
  margin-bottom: 0;
  color: #FFFFFF;
  padding-left: 85px;
}
.cid-tw2DecmQdM .mbr-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: 1px;
  background-image: linear-gradient(-90deg, currentColor 0, rgba(255, 255, 255, 0) 100%);
}
.cid-tw2DecmQdM .mbr-section-btn {
  margin-top: 12px;
}
.cid-tw2DecmQdM .item-title,
.cid-tw2DecmQdM .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-urUPNnzLmJ {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-urUPNnzLmJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-urUPNnzLmJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urUPNnzLmJ .mbr-section-title {
  color: #000000;
}
.cid-urUPNnzLmJ .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-urUPNnzLmJ .mbr-section-btn {
  margin-top: 20px;
}
.cid-urUPNnzLmJ .mbr-section-subtitle,
.cid-urUPNnzLmJ .mbr-section-btn {
  color: #000000;
}
.cid-tw2CiZnf9c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5b762;
}
.cid-tw2CiZnf9c .mbr-fallback-image.disabled {
  display: none;
}
.cid-tw2CiZnf9c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tw2CiZnf9c .row {
  margin-left: -1.5vw;
  margin-right: -1.5vw;
  background-color: #fadd8a;
  position: relative;
}
.cid-tw2CiZnf9c .row:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5rem;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  background-color: #fadd8a;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tw2CiZnf9c .row:before {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}
.cid-tw2CiZnf9c .row:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5rem;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  background-color: #fadd8a;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-tw2CiZnf9c .row:after {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}
.cid-tw2CiZnf9c .image-wrapper {
  position: sticky;
  top: 130px;
  padding-left: 1.4vw;
}
.cid-tw2CiZnf9c .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 230px;
}
.cid-tw2CiZnf9c .card-wrapper {
  padding-right: 1.4vw;
  padding-left: 132px;
}
@media (max-width: 1399px) {
  .cid-tw2CiZnf9c .card-wrapper {
    padding-left: 9.43vw;
  }
}
@media (max-width: 991px) {
  .cid-tw2CiZnf9c .card-wrapper {
    padding-right: 9.43vw;
    padding-left: 1.4vw;
  }
}
@media (max-width: 575px) {
  .cid-tw2CiZnf9c .card-wrapper {
    padding-right: 8vw;
    padding-left: 1.5vw;
  }
}
.cid-tw2CiZnf9c .card-title {
  color: #F5A80C;
  margin-bottom: 18px;
}
.cid-tw2CiZnf9c .card-subtitle {
  color: #000000;
  margin-bottom: 160px;
}
@media (max-width: 1399px) and (min-width: 768px) {
  .cid-tw2CiZnf9c .card-subtitle {
    margin-bottom: 11.78vw;
  }
  .cid-tw2CiZnf9c .card-subtitle.display-1 {
    font-size: 7.143vw !important;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .cid-tw2CiZnf9c .card-subtitle {
    margin-bottom: 40px;
  }
  .cid-tw2CiZnf9c .card-subtitle.display-1 {
    font-size: 50px !important;
    line-height: 1.2;
  }
}
.cid-tw2CiZnf9c .mbr-text {
  width: 23.2vw;
  margin-left: auto;
  color: #161616;
}
@media (max-width: 991px) {
  .cid-tw2CiZnf9c .mbr-text {
    width: 100%;
  }
}
.cid-tw2CiZnf9c .mbr-section-btn {
  margin-top: 20px;
}
.cid-uAdnlzINQ4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fadd8a;
}
.cid-uAdnlzINQ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdnlzINQ4 .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-uAdnlzINQ4 .container {
    padding: 0 20px;
  }
}
.cid-uAdnlzINQ4 .row {
  margin: 0;
}
.cid-uAdnlzINQ4 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uAdnlzINQ4 .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAdnlzINQ4 .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-uAdnlzINQ4 .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uAdnlzINQ4 .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uAdnlzINQ4 .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uAdnlzINQ4 .mbr-section-title {
  color: #ffffff;
}
.cid-tw2Ddu67kU {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tw2Ddu67kU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tw2Ddu67kU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tw2Ddu67kU .mbr-section-title {
  color: #000000;
}
.cid-tw2Ddu67kU .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-tw2Ddu67kU .mbr-section-btn {
  margin-top: 20px;
}
.cid-tw2Ddu67kU .mbr-section-subtitle,
.cid-tw2Ddu67kU .mbr-section-btn {
  color: #000000;
}
.cid-uAdo4vXom1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fadd8a;
}
.cid-uAdo4vXom1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdo4vXom1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdo4vXom1 .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uAdo4vXom1 .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uAdo4vXom1 .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uAdo4vXom1 .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uAdo4vXom1 .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #fadd8a;
  border: 3px solid #e5b762;
  box-shadow: 4px 4px 0 0 #e5b762;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uAdo4vXom1 .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uAdo4vXom1 .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uAdo4vXom1 .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uAdo4vXom1 .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uAdo4vXom1 .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uAdo4vXom1 .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uAdo4vXom1 .mbr-section-title,
.cid-uAdo4vXom1 .mbr-section-btn {
  color: #000000;
}
.cid-tw2AZEmFkX {
  padding-top: 0;
  padding-bottom: 0;
  background-image: linear-gradient(180deg, #fadd8a 0, #e5b762 100%);
}
.cid-tw2AZEmFkX .container-fluid {
  padding: 0;
}
.cid-tw2AZEmFkX .card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.cid-tw2AZEmFkX .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
@media (min-width: 992px) {
  .cid-tw2AZEmFkX .card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
  .cid-tw2AZEmFkX .card:hover:before {
    opacity: 0;
  }
  .cid-tw2AZEmFkX .card:hover:after {
    opacity: 1;
  }
  .cid-tw2AZEmFkX .card:hover .image-wrapper {
    border-radius: 40px;
  }
}
.cid-tw2AZEmFkX .card:nth-child(1) {
  background-image: linear-gradient(180deg, #fadd8a 0, #e5b762 100%);
}
.cid-tw2AZEmFkX .card:nth-child(1):before {
  background-image: linear-gradient(180deg, #fadd8a 0, #e5b762 100%);
}
.cid-tw2AZEmFkX .card:nth-child(1):after {
  background-image: linear-gradient(360deg, #fadd8a 0, #e5b762 100%);
}
.cid-tw2AZEmFkX .card:nth-child(2) {
  background-image: linear-gradient(180deg, #e5b762 0, #f77d06 100%);
}
.cid-tw2AZEmFkX .card:nth-child(2):before {
  background-image: linear-gradient(180deg, #e5b762 0, #f77d06 100%);
}
.cid-tw2AZEmFkX .card:nth-child(2):after {
  background-image: linear-gradient(360deg, #e5b762 0, #f77d06 100%);
}
.cid-tw2AZEmFkX .card-wrapper {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px 25px 60px;
}
.cid-tw2AZEmFkX .card-title {
  width: 100%;
  margin-bottom: 54px;
  color: #FFFFFF;
}
@media (max-width: 1399px) {
  .cid-tw2AZEmFkX .card-title {
    margin-bottom: 3.85vw;
  }
}
@media (max-width: 767px) {
  .cid-tw2AZEmFkX .card-title {
    margin-bottom: 45px;
  }
}
.cid-tw2AZEmFkX .image-wrapper {
  width: 39.92vw;
  max-width: 600px;
  border-radius: 50%;
  overflow: hidden;
  transition: border-radius 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
@media (max-width: 991px) {
  .cid-tw2AZEmFkX .image-wrapper {
    width: 70%;
    max-width: 70%;
  }
}
.cid-tw2AZEmFkX .image-wrapper img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.cid-tw2AZEmFkX .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .cid-tw2AZEmFkX .mbr-section-btn {
    margin-top: 3.85vw;
  }
}
@media (max-width: 767px) {
  .cid-tw2AZEmFkX .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-tw2AZEmFkX .card-title,
.cid-tw2AZEmFkX .mbr-section-btn {
  color: #000000;
}
.cid-urVzt4Dt3M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urVzt4Dt3M blockquote {
  border-color: #f77d06;
  border-radius: 4px;
  background-color: #fadd8a;
}
.cid-uAd2e2IpeH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5b762;
}
.cid-uAd2e2IpeH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAd2e2IpeH .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-uAd2e2IpeH .container {
    padding: 0 22px;
  }
}
.cid-uAd2e2IpeH .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAd2e2IpeH .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uAd2e2IpeH .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uAd2e2IpeH .image-wrapper img {
    height: 350px;
  }
}
.cid-uAd2e2IpeH .mbr-section-title {
  margin-bottom: 16px;
  color: #000000;
}
.cid-uAd2e2IpeH .panel-group {
  border-bottom: 1px solid #191c25;
}
.cid-uAd2e2IpeH .panel-group .card {
  border-top: 1px solid #191c25;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uAd2e2IpeH .panel-group .card:hover,
.cid-uAd2e2IpeH .panel-group .card:focus {
  border-top: 1px solid #000000;
}
.cid-uAd2e2IpeH .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uAd2e2IpeH .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uAd2e2IpeH .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uAd2e2IpeH .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-uAd2e2IpeH .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uAd2e2IpeH .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uAd2e2IpeH .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uAd2e2IpeH .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uAd2e2IpeH .panel-title-edit {
  color: #000000;
}
.cid-uAd2e2IpeH .panel-text {
  color: #8a8588;
}
.cid-tw2E1tr4vF {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tw2E1tr4vF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tw2E1tr4vF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tw2E1tr4vF .mbr-section-title {
  color: #000000;
}
.cid-tw2E1tr4vF .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-tw2E1tr4vF .mbr-section-btn {
  margin-top: 20px;
}
.cid-tw2E1tr4vF .mbr-section-subtitle,
.cid-tw2E1tr4vF .mbr-section-btn {
  color: #000000;
}
.cid-urV91zcJlV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-urV91zcJlV .mbr-fallback-image.disabled {
  display: none;
}
.cid-urV91zcJlV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urV91zcJlV .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-urV91zcJlV .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-urV91zcJlV .container {
    padding: 0 24px;
  }
}
.cid-urV91zcJlV .row {
  justify-content: center;
}
.cid-urV91zcJlV .content-wrapper {
  border-radius: 40px;
  background-color: #e5b762;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-urV91zcJlV .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-urV91zcJlV .content-wrapper {
    padding: 32px;
  }
}
.cid-urV91zcJlV .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-urV91zcJlV .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-urV91zcJlV .mbr-section-title {
  color: #000000;
}
.cid-urV91zcJlV .mbr-text {
  color: #000000;
}
.cid-uAd437wfZH {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #e5b762;
}
.cid-uAd437wfZH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAd437wfZH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAd437wfZH .container,
.cid-uAd437wfZH .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uAd437wfZH .container,
  .cid-uAd437wfZH .container-fluid {
    padding: 0 20px;
  }
}
.cid-uAd437wfZH .row {
  position: relative;
  padding: 100px 16px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background-color: #ffffff;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAd437wfZH .row {
    padding: 85px 8px;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uAd437wfZH .map-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .cid-uAd437wfZH .map-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAd437wfZH .map-wrapper .google-map iframe {
  height: 300px;
}
@media (max-width: 992px) {
  .cid-uAd437wfZH .map-wrapper .google-map iframe {
    height: 250px;
  }
}
.cid-uAd437wfZH .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAd437wfZH .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAd437wfZH .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAd437wfZH .mbr-iconfont {
  font-size: 32px;
  display: block;
  margin-right: 10px;
}
.cid-uAd437wfZH .address-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uAd437wfZH .address-wrapper {
    display: block;
  }
}
.cid-uAd437wfZH .address-wrapper .text-wrapper {
  display: flex;
  margin-bottom: 35px;
}
@media (max-width: 992px) {
  .cid-uAd437wfZH .address-wrapper .text-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAd437wfZH .address-wrapper .text-wrapper .text-wrap .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-uAd437wfZH .address-wrapper .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uAd437wfZH .links-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uAd437wfZH .links-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uAd437wfZH .links-wrapper .links-wrap {
    margin-bottom: 20px;
  }
}
.cid-uAd437wfZH .links-wrapper .links-wrap a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uAd437wfZH .links-wrapper .links-wrap a:hover .mbr-email,
.cid-uAd437wfZH .links-wrapper .links-wrap a:hover .mbr-phone {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .cid-uAd437wfZH .links-wrapper .links-wrap a {
    margin-bottom: 20px;
  }
}
.cid-uAd437wfZH .links-wrapper .links-wrap a .mbr-email,
.cid-uAd437wfZH .links-wrapper .links-wrap a .mbr-phone {
  margin-bottom: 0;
}
.cid-uAd437wfZH .mbr-section-title {
  color: #000000;
}
.cid-uAd437wfZH .mbr-section-subtitle,
.cid-uAd437wfZH .mbr-iconfont {
  color: #000000;
}
.cid-uAd437wfZH .mbr-email {
  color: #000000;
}
.cid-uAd437wfZH .mbr-phone {
  color: #3d4045;
}
.cid-uAd3mFndVp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e5b762;
}
.cid-uAd3mFndVp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAd3mFndVp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAd3mFndVp .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uAd3mFndVp .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uAd3mFndVp .container {
    padding: 0 6px;
  }
}
.cid-uAd3mFndVp .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #fadd8a;
}
@media (max-width: 1440px) {
  .cid-uAd3mFndVp .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .cid-uAd3mFndVp .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .cid-uAd3mFndVp .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .cid-uAd3mFndVp .row {
    padding: 50px 30px;
  }
}
.cid-uAd3mFndVp .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uAd3mFndVp .title-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAd3mFndVp .title-wrapper {
    padding: 0;
  }
}
.cid-uAd3mFndVp .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uAd3mFndVp .title-wrapper .mbr-section-title span {
  color: #009472;
}
.cid-uAd3mFndVp .title-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uAd3mFndVp .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAd3mFndVp .list-wrapper {
    padding: 0;
  }
}
.cid-uAd3mFndVp .list-wrapper .list-title {
  margin-bottom: 22px;
  opacity: .5;
}
.cid-uAd3mFndVp .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uAd3mFndVp .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.cid-uAd3mFndVp .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAd3mFndVp .list-wrapper .list .item-wrap:hover,
.cid-uAd3mFndVp .list-wrapper .list .item-wrap:focus {
  color: #009472;
}
.cid-uAd3mFndVp .border-wrap {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #000000;
}
.cid-uAd3mFndVp .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
}
.cid-uAd3mFndVp .mbr-section-title {
  color: #ffffff;
}
.cid-uAd3mFndVp .list-title {
  color: #000000;
}
.cid-uAd3mFndVp .list {
  color: #ffffff;
}
.cid-uAd3mFndVp .list,
.cid-uAd3mFndVp .item-wrap {
  color: #000000;
}
.cid-uAd3mFndVp .mbr-section-title,
.cid-uAd3mFndVp .mbr-section-btn {
  color: #000000;
}
.cid-uAd8qf8m3g {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uAd8qf8m3g .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uAd8qf8m3g .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uAd8qf8m3g .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAd8qf8m3g .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.cid-uAd8qf8m3g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAd8qf8m3g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAd8qf8m3g .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-uAd8qf8m3g .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uAd8qf8m3g .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAd8qf8m3g .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
.cid-uAd8qf8m3g .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uAd8qf8m3g .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uAd8qf8m3g .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAd8qf8m3g .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uAd8qf8m3g .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uAd8qf8m3g .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uAd8qf8m3g .nav-link:hover {
  color: #ed463f !important;
}
.cid-uAd8qf8m3g .navbar-logo {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uAd8qf8m3g .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uAd8qf8m3g .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.cid-uAd8qf8m3g .navbar-caption:hover,
.cid-uAd8qf8m3g .navbar-caption:focus {
  color: #ed463f !important;
}
@media (max-width: 767px) {
  .cid-uAd8qf8m3g .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uAd8qf8m3g .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uAd8qf8m3g .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #ffffff;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.cid-uAd8qf8m3g .iconfont-wrapper {
  color: #404349 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uAd8qf8m3g .iconfont-wrapper:hover,
.cid-uAd8qf8m3g .iconfont-wrapper:focus {
  color: #ed463f !important;
}
.cid-uAd8qf8m3g .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  border-radius: 4px !important;
}
.cid-uAd8qf8m3g .nav-item:focus,
.cid-uAd8qf8m3g .nav-link:focus {
  outline: none;
}
.cid-uAd8qf8m3g .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAd8qf8m3g .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAd8qf8m3g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAd8qf8m3g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAd8qf8m3g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAd8qf8m3g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAd8qf8m3g .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uAd8qf8m3g .navbar.opened {
  transition: all 0.3s;
}
.cid-uAd8qf8m3g .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAd8qf8m3g .navbar .navbar-logo img {
  width: auto;
}
.cid-uAd8qf8m3g .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uAd8qf8m3g .navbar .navbar-collapse {
    position: absolute;
  }
}
.cid-uAd8qf8m3g .navbar.collapsed {
  justify-content: center;
}
.cid-uAd8qf8m3g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAd8qf8m3g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAd8qf8m3g .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uAd8qf8m3g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAd8qf8m3g .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAd8qf8m3g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uAd8qf8m3g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAd8qf8m3g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAd8qf8m3g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uAd8qf8m3g .navbar {
    min-height: 72px;
  }
  .cid-uAd8qf8m3g .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uAd8qf8m3g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAd8qf8m3g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAd8qf8m3g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAd8qf8m3g .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAd8qf8m3g .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uAd8qf8m3g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAd8qf8m3g .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uAd8qf8m3g .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAd8qf8m3g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAd8qf8m3g .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uAd8qf8m3g .dropdown-item.active,
.cid-uAd8qf8m3g .dropdown-item:active {
  background-color: transparent;
}
.cid-uAd8qf8m3g .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAd8qf8m3g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAd8qf8m3g .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAd8qf8m3g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAd8qf8m3g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uAd8qf8m3g .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uAd8qf8m3g ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAd8qf8m3g .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uAd8qf8m3g .navbar-buttons {
    text-align: left;
  }
}
.cid-uAd8qf8m3g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAd8qf8m3g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #404349;
}
.cid-uAd8qf8m3g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAd8qf8m3g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAd8qf8m3g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAd8qf8m3g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAd8qf8m3g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAd8qf8m3g nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAd8qf8m3g nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAd8qf8m3g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAd8qf8m3g .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uAd8qf8m3g a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAd8qf8m3g .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 0;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uAd8qf8m3g .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAd8qf8m3g .navbar {
    height: 70px;
  }
  .cid-uAd8qf8m3g .navbar.opened {
    height: auto;
  }
  .cid-uAd8qf8m3g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAd8qf8m3g .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uAd8qf8m3g .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uAd8qf8m3g .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uAd8qf8m3g .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uAd8qf8m3g .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uAd8qf8m3g .mbr-section-btn {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-uAd8qf8m3g .mbr-section-btn {
    padding-left: 0;
  }
}
.cid-uAd8qf8m3g .mbr-section-btn .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.cid-uAd8qf8m3g .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uAd8qf8m3g .navbar-brand {
    margin-right: auto;
  }
  .cid-uAd8qf8m3g .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    border-radius: 4px !important;
  }
  .cid-uAd8qf8m3g .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uAd8qf8m3g .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uAd8qf8m3g .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAd8qf8m3g .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uAd8qf8m3g .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uAd8qf8m3g .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uAd8qf8m3g .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uAd8qf8m3g .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAd8qf8m3g .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uAd8qf8m3g .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uAd8qf8m3g .navbar-brand,
.cid-uAd8qf8m3g .navbar-toggler,
.cid-uAd8qf8m3g .navbar-collapse {
  position: relative;
  z-index: 1;
}
.cid-uAd8qg99Cf {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-uAd8qg99Cf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAd8qg99Cf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAd8qg99Cf .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-uAd8qg99Cf .container {
    padding: 10px 8px;
  }
}
.cid-uAd8qg99Cf .row {
  border-radius: 25px;
  background-color: #e5b762;
  padding: 100px 40px 40px;
  margin: 0;
  overflow: hidden;
  justify-content: center;
  box-shadow: inset -60px 0 30rem #fadd8a;
}
@media (max-width: 768px) {
  .cid-uAd8qg99Cf .row {
    padding: 50px 10px 40px;
  }
}
.cid-uAd8qg99Cf .row .card {
  padding: 0;
  justify-content: center;
}
.cid-uAd8qg99Cf .image-wrapper {
  position: relative;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-uAd8qg99Cf .image-wrapper {
    margin: 0 0 32px 0;
  }
}
.cid-uAd8qg99Cf .image-wrapper img {
  height: 650px;
  border-radius: 25px !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uAd8qg99Cf .image-wrapper img {
    height: 350px;
  }
}
.cid-uAd8qg99Cf .image-wrapper .icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cid-uAd8qg99Cf .image-wrapper .icon-wrapper .mbr-iconfont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  font-size: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  color: #ffffff;
  background-color: #f85f32;
  transform: rotate(-20deg);
  pointer-events: visible;
}
.cid-uAd8qg99Cf .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(2) {
  left: auto;
  right: 0;
  background-color: #e354e3;
  transform: rotate(20deg);
}
.cid-uAd8qg99Cf .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(3) {
  top: auto;
  bottom: 0;
  background-color: #715edb;
  transform: rotate(-20deg);
}
@media (max-width: 768px) {
  .cid-uAd8qg99Cf .image-wrapper .icon-wrapper .mbr-iconfont {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}
.cid-uAd8qg99Cf .content-wrapper .mbr-section-subtitle {
  opacity: .5;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uAd8qg99Cf .content-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-uAd8qg99Cf .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uAd8qg99Cf .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAd8qg99Cf .content-wrapper .mbr-section-title span {
  opacity: .8;
}
.cid-uAd8qg99Cf .content-wrapper .mbr-text {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uAd8qg99Cf .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uAd8qg99Cf .mbr-section-title {
  color: #ffffff;
}
.cid-uAd8qg99Cf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAd8qg99Cf .mbr-text {
  color: #000000;
}
.cid-uAd8qg99Cf .mbr-section-title,
.cid-uAd8qg99Cf .mbr-section-btn {
  color: #000000;
}
.cid-uAd8qgVlBH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5b762;
}
.cid-uAd8qgVlBH .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uAd8qgVlBH .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uAd8qgVlBH .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #e8f5e3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uAd8qgVlBH .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uAd8qgVlBH .mbr-text {
  color: #000000;
}
.cid-uAd8qhv4yu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAd8qhv4yu .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uAd8qhv4yu .content_wrapper:hover .mbr-section-title a {
  color: #2a1340 !important;
}
.cid-uAd8qhv4yu .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uAd8qhv4yu .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uAd8qhv4yu .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uAd8qhv4yu .mbr-section-btn .btn-secondary-outline:hover,
.cid-uAd8qhv4yu .mbr-section-btn .btn-secondary-outline .active,
.cid-uAd8qhv4yu .mbr-section-btn .btn-secondary-outline:focus {
  color: #f5a80c !important;
}
.cid-uAd8qhv4yu .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uAd8qhv4yu .image_post {
  display: inline-block;
}
.cid-uAd8qhv4yu .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uAd8qhv4yu .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uAd8qibkoM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5b762;
  overflow: hidden;
}
.cid-uAd8qibkoM .mbr-section-head {
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uAd8qibkoM .mbr-section-head {
    padding-bottom: 40px;
  }
}
.cid-uAd8qibkoM .mbr-section-title {
  color: #FFFFFF;
}
.cid-uAd8qibkoM .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-uAd8qibkoM .items-row {
  padding-top: 40px;
  row-gap: 60px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .cid-uAd8qibkoM .items-row {
    padding-top: 0;
    row-gap: 40px;
  }
}
@media (min-width: 576px) {
  .cid-uAd8qibkoM .item {
    width: 47%;
  }
  .cid-uAd8qibkoM .item:nth-child(1n) {
    transform: translateY(0);
  }
  .cid-uAd8qibkoM .item:nth-child(2n) {
    transform: translateY(-40px);
  }
  .cid-uAd8qibkoM .item:nth-child(3n) {
    transform: translateY(-10px);
  }
  .cid-uAd8qibkoM .item:nth-child(4n) {
    transform: translateY(-20px);
  }
  .cid-uAd8qibkoM .item:nth-child(5n) {
    transform: translateY(-10px);
  }
  .cid-uAd8qibkoM .item:nth-child(6n) {
    transform: translateY(-40px);
  }
}
@media (min-width: 768px) {
  .cid-uAd8qibkoM .item {
    width: 42%;
  }
}
@media (min-width: 992px) {
  .cid-uAd8qibkoM .item {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .cid-uAd8qibkoM .item {
    width: 27%;
  }
}
.cid-uAd8qibkoM .item-img {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uAd8qibkoM .item-img img {
  width: 100%;
  aspect-ratio: calc(2 / 3);
  object-fit: cover;
  transform: scale(1.01);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uAd8qibkoM .item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-uAd8qibkoM .item-wrapper:hover .item-img {
  border-radius: 25px;
  transform: scale(0.95);
}
.cid-uAd8qibkoM .item-wrapper:hover .item-img img {
  transform: scale(1.2, 1.2);
}
.cid-uAd8qibkoM .item-content {
  flex-grow: 1;
  padding-top: 31px;
}
.cid-uAd8qibkoM .item-title {
  margin-bottom: 32px;
  color: #FFFFFF;
}
.cid-uAd8qibkoM .mbr-text {
  position: relative;
  margin-bottom: 0;
  color: #FFFFFF;
  padding-left: 85px;
}
.cid-uAd8qibkoM .mbr-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: 1px;
  background-image: linear-gradient(-90deg, currentColor 0, rgba(255, 255, 255, 0) 100%);
}
.cid-uAd8qibkoM .mbr-section-btn {
  margin-top: 12px;
}
.cid-uAd8qibkoM .item-title,
.cid-uAd8qibkoM .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uAd8qiZ2VP {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uAd8qiZ2VP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAd8qiZ2VP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAd8qiZ2VP .mbr-section-title {
  color: #000000;
}
.cid-uAd8qiZ2VP .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-uAd8qiZ2VP .mbr-section-btn {
  margin-top: 20px;
}
.cid-uAd8qiZ2VP .mbr-section-subtitle,
.cid-uAd8qiZ2VP .mbr-section-btn {
  color: #000000;
}
.cid-uAd8qjHJ3K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5b762;
}
.cid-uAd8qjHJ3K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAd8qjHJ3K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAd8qjHJ3K .row {
  margin-left: -1.5vw;
  margin-right: -1.5vw;
  background-color: #fadd8a;
  position: relative;
}
.cid-uAd8qjHJ3K .row:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5rem;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  background-color: #fadd8a;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uAd8qjHJ3K .row:before {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}
.cid-uAd8qjHJ3K .row:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5rem;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  background-color: #fadd8a;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uAd8qjHJ3K .row:after {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}
.cid-uAd8qjHJ3K .image-wrapper {
  position: sticky;
  top: 130px;
  padding-left: 1.4vw;
}
.cid-uAd8qjHJ3K .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 230px;
}
.cid-uAd8qjHJ3K .card-wrapper {
  padding-right: 1.4vw;
  padding-left: 132px;
}
@media (max-width: 1399px) {
  .cid-uAd8qjHJ3K .card-wrapper {
    padding-left: 9.43vw;
  }
}
@media (max-width: 991px) {
  .cid-uAd8qjHJ3K .card-wrapper {
    padding-right: 9.43vw;
    padding-left: 1.4vw;
  }
}
@media (max-width: 575px) {
  .cid-uAd8qjHJ3K .card-wrapper {
    padding-right: 8vw;
    padding-left: 1.5vw;
  }
}
.cid-uAd8qjHJ3K .card-title {
  color: #F5A80C;
  margin-bottom: 18px;
}
.cid-uAd8qjHJ3K .card-subtitle {
  color: #000000;
  margin-bottom: 160px;
}
@media (max-width: 1399px) and (min-width: 768px) {
  .cid-uAd8qjHJ3K .card-subtitle {
    margin-bottom: 11.78vw;
  }
  .cid-uAd8qjHJ3K .card-subtitle.display-1 {
    font-size: 7.143vw !important;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .cid-uAd8qjHJ3K .card-subtitle {
    margin-bottom: 40px;
  }
  .cid-uAd8qjHJ3K .card-subtitle.display-1 {
    font-size: 50px !important;
    line-height: 1.2;
  }
}
.cid-uAd8qjHJ3K .mbr-text {
  width: 23.2vw;
  margin-left: auto;
  color: #161616;
}
@media (max-width: 991px) {
  .cid-uAd8qjHJ3K .mbr-text {
    width: 100%;
  }
}
.cid-uAd8qjHJ3K .mbr-section-btn {
  margin-top: 20px;
}
.cid-uAd8qkRZM7 {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAd8qkRZM7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAd8qkRZM7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAd8qkRZM7 .mbr-section-title {
  color: #000000;
}
.cid-uAd8qkRZM7 .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-uAd8qkRZM7 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uAd8qkRZM7 .mbr-section-subtitle,
.cid-uAd8qkRZM7 .mbr-section-btn {
  color: #000000;
}
.cid-uAdoHBEXko {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fadd8a;
}
.cid-uAdoHBEXko .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdoHBEXko .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdoHBEXko .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uAdoHBEXko .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uAdoHBEXko .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uAdoHBEXko .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uAdoHBEXko .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #fadd8a;
  border: 3px solid #e5b762;
  box-shadow: 4px 4px 0 0 #e5b762;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uAdoHBEXko .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uAdoHBEXko .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uAdoHBEXko .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uAdoHBEXko .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uAdoHBEXko .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uAdoHBEXko .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uAdoHBEXko .mbr-section-title,
.cid-uAdoHBEXko .mbr-section-btn {
  color: #000000;
}
.cid-uAd8qm1pmJ {
  padding-top: 0;
  padding-bottom: 0;
  background-image: linear-gradient(180deg, #fadd8a 0, #e5b762 100%);
}
.cid-uAd8qm1pmJ .container-fluid {
  padding: 0;
}
.cid-uAd8qm1pmJ .card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.cid-uAd8qm1pmJ .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
@media (min-width: 992px) {
  .cid-uAd8qm1pmJ .card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
  .cid-uAd8qm1pmJ .card:hover:before {
    opacity: 0;
  }
  .cid-uAd8qm1pmJ .card:hover:after {
    opacity: 1;
  }
  .cid-uAd8qm1pmJ .card:hover .image-wrapper {
    border-radius: 40px;
  }
}
.cid-uAd8qm1pmJ .card:nth-child(1) {
  background-image: linear-gradient(180deg, #fadd8a 0, #e5b762 100%);
}
.cid-uAd8qm1pmJ .card:nth-child(1):before {
  background-image: linear-gradient(180deg, #fadd8a 0, #e5b762 100%);
}
.cid-uAd8qm1pmJ .card:nth-child(1):after {
  background-image: linear-gradient(360deg, #fadd8a 0, #e5b762 100%);
}
.cid-uAd8qm1pmJ .card:nth-child(2) {
  background-image: linear-gradient(180deg, #e5b762 0, #f77d06 100%);
}
.cid-uAd8qm1pmJ .card:nth-child(2):before {
  background-image: linear-gradient(180deg, #e5b762 0, #f77d06 100%);
}
.cid-uAd8qm1pmJ .card:nth-child(2):after {
  background-image: linear-gradient(360deg, #e5b762 0, #f77d06 100%);
}
.cid-uAd8qm1pmJ .card-wrapper {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px 25px 60px;
}
.cid-uAd8qm1pmJ .card-title {
  width: 100%;
  margin-bottom: 54px;
  color: #FFFFFF;
}
@media (max-width: 1399px) {
  .cid-uAd8qm1pmJ .card-title {
    margin-bottom: 3.85vw;
  }
}
@media (max-width: 767px) {
  .cid-uAd8qm1pmJ .card-title {
    margin-bottom: 45px;
  }
}
.cid-uAd8qm1pmJ .image-wrapper {
  width: 39.92vw;
  max-width: 600px;
  border-radius: 50%;
  overflow: hidden;
  transition: border-radius 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
@media (max-width: 991px) {
  .cid-uAd8qm1pmJ .image-wrapper {
    width: 70%;
    max-width: 70%;
  }
}
.cid-uAd8qm1pmJ .image-wrapper img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.cid-uAd8qm1pmJ .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .cid-uAd8qm1pmJ .mbr-section-btn {
    margin-top: 3.85vw;
  }
}
@media (max-width: 767px) {
  .cid-uAd8qm1pmJ .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uAd8qm1pmJ .card-title,
.cid-uAd8qm1pmJ .mbr-section-btn {
  color: #000000;
}
.cid-uAd8qn92gJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAd8qn92gJ blockquote {
  border-color: #f77d06;
  border-radius: 4px;
  background-color: #fadd8a;
}
.cid-uAd8qnTBFm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5b762;
}
.cid-uAd8qnTBFm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAd8qnTBFm .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-uAd8qnTBFm .container {
    padding: 0 22px;
  }
}
.cid-uAd8qnTBFm .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAd8qnTBFm .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uAd8qnTBFm .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uAd8qnTBFm .image-wrapper img {
    height: 350px;
  }
}
.cid-uAd8qnTBFm .mbr-section-title {
  margin-bottom: 16px;
  color: #000000;
}
.cid-uAd8qnTBFm .panel-group {
  border-bottom: 1px solid #191c25;
}
.cid-uAd8qnTBFm .panel-group .card {
  border-top: 1px solid #191c25;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uAd8qnTBFm .panel-group .card:hover,
.cid-uAd8qnTBFm .panel-group .card:focus {
  border-top: 1px solid #000000;
}
.cid-uAd8qnTBFm .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uAd8qnTBFm .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uAd8qnTBFm .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uAd8qnTBFm .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-uAd8qnTBFm .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uAd8qnTBFm .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uAd8qnTBFm .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uAd8qnTBFm .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uAd8qnTBFm .panel-title-edit {
  color: #000000;
}
.cid-uAd8qnTBFm .panel-text {
  color: #8a8588;
}
.cid-uAd8qpt001 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uAd8qpt001 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAd8qpt001 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAd8qpt001 .mbr-section-title {
  color: #000000;
}
.cid-uAd8qpt001 .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-uAd8qpt001 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uAd8qpt001 .mbr-section-subtitle,
.cid-uAd8qpt001 .mbr-section-btn {
  color: #000000;
}
.cid-uAd8qqaMM0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAd8qqaMM0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAd8qqaMM0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAd8qqaMM0 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uAd8qqaMM0 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uAd8qqaMM0 .container {
    padding: 0 24px;
  }
}
.cid-uAd8qqaMM0 .row {
  justify-content: center;
}
.cid-uAd8qqaMM0 .content-wrapper {
  border-radius: 40px;
  background-color: #e5b762;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uAd8qqaMM0 .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uAd8qqaMM0 .content-wrapper {
    padding: 32px;
  }
}
.cid-uAd8qqaMM0 .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAd8qqaMM0 .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-uAd8qqaMM0 .mbr-section-title {
  color: #000000;
}
.cid-uAd8qqaMM0 .mbr-text {
  color: #000000;
}
.cid-uAdbFurJRu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fadd8a;
}
.cid-uAdbFurJRu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdbFurJRu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdbFurJRu .container-fluid {
  padding: 0 50px;
}
@media (max-width: 1440px) {
  .cid-uAdbFurJRu .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uAdbFurJRu .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uAdbFurJRu .container {
    padding: 0 20px;
  }
}
.cid-uAdbFurJRu .row {
  justify-content: center;
}
.cid-uAdbFurJRu .desc-wrapper .mbr-desc {
  display: inline-flex;
  border-radius: 100vw;
  padding: 14px 15px;
  margin-bottom: 80px;
  background-color: #e5b762;
}
@media (max-width: 992px) {
  .cid-uAdbFurJRu .desc-wrapper .mbr-desc {
    margin-bottom: 40px;
  }
}
.cid-uAdbFurJRu .panel-group .card {
  border-radius: 20px !important;
  background-color: #ffffff;
  margin-top: 40px;
  padding: 50px;
}
.cid-uAdbFurJRu .panel-group .card:first-child {
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-uAdbFurJRu .panel-group .card {
    padding: 20px;
  }
}
.cid-uAdbFurJRu .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uAdbFurJRu .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uAdbFurJRu .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uAdbFurJRu .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  transition: all 0.3s ease-in-out;
  color: #0f1d07;
  margin-left: 20px;
}
.cid-uAdbFurJRu .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uAdbFurJRu .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uAdbFurJRu .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uAdbFurJRu .mbr-desc {
  color: #ffffff;
}
.cid-uAdbFurJRu .panel-title-edit {
  color: #0f1d07;
}
.cid-uAdbFurJRu .panel-text {
  color: #0f1d07;
}
.cid-uAdbFurJRu .mbr-desc,
.cid-uAdbFurJRu .desc-wrapper {
  color: #000000;
}
.cid-uAd8qqV0kk {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #e5b762;
}
.cid-uAd8qqV0kk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAd8qqV0kk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAd8qqV0kk .container,
.cid-uAd8qqV0kk .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uAd8qqV0kk .container,
  .cid-uAd8qqV0kk .container-fluid {
    padding: 0 20px;
  }
}
.cid-uAd8qqV0kk .row {
  position: relative;
  padding: 100px 16px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background-color: #ffffff;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAd8qqV0kk .row {
    padding: 85px 8px;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uAd8qqV0kk .map-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .cid-uAd8qqV0kk .map-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAd8qqV0kk .map-wrapper .google-map iframe {
  height: 300px;
}
@media (max-width: 992px) {
  .cid-uAd8qqV0kk .map-wrapper .google-map iframe {
    height: 250px;
  }
}
.cid-uAd8qqV0kk .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAd8qqV0kk .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAd8qqV0kk .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAd8qqV0kk .mbr-iconfont {
  font-size: 32px;
  display: block;
  margin-right: 10px;
}
.cid-uAd8qqV0kk .address-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uAd8qqV0kk .address-wrapper {
    display: block;
  }
}
.cid-uAd8qqV0kk .address-wrapper .text-wrapper {
  display: flex;
  margin-bottom: 35px;
}
@media (max-width: 992px) {
  .cid-uAd8qqV0kk .address-wrapper .text-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAd8qqV0kk .address-wrapper .text-wrapper .text-wrap .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-uAd8qqV0kk .address-wrapper .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uAd8qqV0kk .links-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uAd8qqV0kk .links-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uAd8qqV0kk .links-wrapper .links-wrap {
    margin-bottom: 20px;
  }
}
.cid-uAd8qqV0kk .links-wrapper .links-wrap a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uAd8qqV0kk .links-wrapper .links-wrap a:hover .mbr-email,
.cid-uAd8qqV0kk .links-wrapper .links-wrap a:hover .mbr-phone {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .cid-uAd8qqV0kk .links-wrapper .links-wrap a {
    margin-bottom: 20px;
  }
}
.cid-uAd8qqV0kk .links-wrapper .links-wrap a .mbr-email,
.cid-uAd8qqV0kk .links-wrapper .links-wrap a .mbr-phone {
  margin-bottom: 0;
}
.cid-uAd8qqV0kk .mbr-section-title {
  color: #000000;
}
.cid-uAd8qqV0kk .mbr-section-subtitle,
.cid-uAd8qqV0kk .mbr-iconfont {
  color: #000000;
}
.cid-uAd8qqV0kk .mbr-email {
  color: #000000;
}
.cid-uAd8qqV0kk .mbr-phone {
  color: #3d4045;
}
.cid-uAd8qrQras {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e5b762;
}
.cid-uAd8qrQras .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAd8qrQras .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAd8qrQras .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uAd8qrQras .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uAd8qrQras .container {
    padding: 0 6px;
  }
}
.cid-uAd8qrQras .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #fadd8a;
}
@media (max-width: 1440px) {
  .cid-uAd8qrQras .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .cid-uAd8qrQras .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .cid-uAd8qrQras .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .cid-uAd8qrQras .row {
    padding: 50px 30px;
  }
}
.cid-uAd8qrQras .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uAd8qrQras .title-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAd8qrQras .title-wrapper {
    padding: 0;
  }
}
.cid-uAd8qrQras .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uAd8qrQras .title-wrapper .mbr-section-title span {
  color: #009472;
}
.cid-uAd8qrQras .title-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uAd8qrQras .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAd8qrQras .list-wrapper {
    padding: 0;
  }
}
.cid-uAd8qrQras .list-wrapper .list-title {
  margin-bottom: 22px;
  opacity: .5;
}
.cid-uAd8qrQras .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uAd8qrQras .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.cid-uAd8qrQras .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAd8qrQras .list-wrapper .list .item-wrap:hover,
.cid-uAd8qrQras .list-wrapper .list .item-wrap:focus {
  color: #009472;
}
.cid-uAd8qrQras .border-wrap {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #000000;
}
.cid-uAd8qrQras .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
}
.cid-uAd8qrQras .mbr-section-title {
  color: #ffffff;
}
.cid-uAd8qrQras .list-title {
  color: #000000;
}
.cid-uAd8qrQras .list {
  color: #ffffff;
}
.cid-uAd8qrQras .list,
.cid-uAd8qrQras .item-wrap {
  color: #000000;
}
.cid-uAd8qrQras .mbr-section-title,
.cid-uAd8qrQras .mbr-section-btn {
  color: #000000;
}
.cid-uAdbZPRQPq {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uAdbZPRQPq .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uAdbZPRQPq .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uAdbZPRQPq .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAdbZPRQPq .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.cid-uAdbZPRQPq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAdbZPRQPq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAdbZPRQPq .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-uAdbZPRQPq .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uAdbZPRQPq .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAdbZPRQPq .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
.cid-uAdbZPRQPq .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uAdbZPRQPq .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uAdbZPRQPq .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAdbZPRQPq .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uAdbZPRQPq .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uAdbZPRQPq .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uAdbZPRQPq .nav-link:hover {
  color: #ed463f !important;
}
.cid-uAdbZPRQPq .navbar-logo {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uAdbZPRQPq .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uAdbZPRQPq .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.cid-uAdbZPRQPq .navbar-caption:hover,
.cid-uAdbZPRQPq .navbar-caption:focus {
  color: #ed463f !important;
}
@media (max-width: 767px) {
  .cid-uAdbZPRQPq .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uAdbZPRQPq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uAdbZPRQPq .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #ffffff;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.cid-uAdbZPRQPq .iconfont-wrapper {
  color: #404349 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uAdbZPRQPq .iconfont-wrapper:hover,
.cid-uAdbZPRQPq .iconfont-wrapper:focus {
  color: #ed463f !important;
}
.cid-uAdbZPRQPq .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  border-radius: 4px !important;
}
.cid-uAdbZPRQPq .nav-item:focus,
.cid-uAdbZPRQPq .nav-link:focus {
  outline: none;
}
.cid-uAdbZPRQPq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAdbZPRQPq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAdbZPRQPq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAdbZPRQPq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAdbZPRQPq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAdbZPRQPq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAdbZPRQPq .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uAdbZPRQPq .navbar.opened {
  transition: all 0.3s;
}
.cid-uAdbZPRQPq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAdbZPRQPq .navbar .navbar-logo img {
  width: auto;
}
.cid-uAdbZPRQPq .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uAdbZPRQPq .navbar .navbar-collapse {
    position: absolute;
  }
}
.cid-uAdbZPRQPq .navbar.collapsed {
  justify-content: center;
}
.cid-uAdbZPRQPq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAdbZPRQPq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAdbZPRQPq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uAdbZPRQPq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAdbZPRQPq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAdbZPRQPq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uAdbZPRQPq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAdbZPRQPq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAdbZPRQPq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uAdbZPRQPq .navbar {
    min-height: 72px;
  }
  .cid-uAdbZPRQPq .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uAdbZPRQPq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAdbZPRQPq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAdbZPRQPq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAdbZPRQPq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAdbZPRQPq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uAdbZPRQPq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAdbZPRQPq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uAdbZPRQPq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAdbZPRQPq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAdbZPRQPq .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uAdbZPRQPq .dropdown-item.active,
.cid-uAdbZPRQPq .dropdown-item:active {
  background-color: transparent;
}
.cid-uAdbZPRQPq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAdbZPRQPq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAdbZPRQPq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAdbZPRQPq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAdbZPRQPq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uAdbZPRQPq .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uAdbZPRQPq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAdbZPRQPq .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uAdbZPRQPq .navbar-buttons {
    text-align: left;
  }
}
.cid-uAdbZPRQPq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAdbZPRQPq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #404349;
}
.cid-uAdbZPRQPq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAdbZPRQPq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAdbZPRQPq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAdbZPRQPq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAdbZPRQPq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAdbZPRQPq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAdbZPRQPq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAdbZPRQPq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAdbZPRQPq .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uAdbZPRQPq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAdbZPRQPq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 0;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uAdbZPRQPq .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAdbZPRQPq .navbar {
    height: 70px;
  }
  .cid-uAdbZPRQPq .navbar.opened {
    height: auto;
  }
  .cid-uAdbZPRQPq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAdbZPRQPq .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uAdbZPRQPq .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uAdbZPRQPq .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uAdbZPRQPq .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uAdbZPRQPq .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uAdbZPRQPq .mbr-section-btn {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-uAdbZPRQPq .mbr-section-btn {
    padding-left: 0;
  }
}
.cid-uAdbZPRQPq .mbr-section-btn .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.cid-uAdbZPRQPq .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uAdbZPRQPq .navbar-brand {
    margin-right: auto;
  }
  .cid-uAdbZPRQPq .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    border-radius: 4px !important;
  }
  .cid-uAdbZPRQPq .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uAdbZPRQPq .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uAdbZPRQPq .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAdbZPRQPq .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uAdbZPRQPq .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uAdbZPRQPq .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uAdbZPRQPq .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uAdbZPRQPq .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAdbZPRQPq .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uAdbZPRQPq .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uAdbZPRQPq .navbar-brand,
.cid-uAdbZPRQPq .navbar-toggler,
.cid-uAdbZPRQPq .navbar-collapse {
  position: relative;
  z-index: 1;
}
.cid-uAdbZR17j5 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-uAdbZR17j5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdbZR17j5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdbZR17j5 .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-uAdbZR17j5 .container {
    padding: 10px 8px;
  }
}
.cid-uAdbZR17j5 .row {
  border-radius: 25px;
  background-color: #e5b762;
  padding: 100px 40px 40px;
  margin: 0;
  overflow: hidden;
  justify-content: center;
  box-shadow: inset -60px 0 30rem #fadd8a;
}
@media (max-width: 768px) {
  .cid-uAdbZR17j5 .row {
    padding: 50px 10px 40px;
  }
}
.cid-uAdbZR17j5 .row .card {
  padding: 0;
  justify-content: center;
}
.cid-uAdbZR17j5 .image-wrapper {
  position: relative;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-uAdbZR17j5 .image-wrapper {
    margin: 0 0 32px 0;
  }
}
.cid-uAdbZR17j5 .image-wrapper img {
  height: 650px;
  border-radius: 25px !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uAdbZR17j5 .image-wrapper img {
    height: 350px;
  }
}
.cid-uAdbZR17j5 .image-wrapper .icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cid-uAdbZR17j5 .image-wrapper .icon-wrapper .mbr-iconfont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  font-size: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  color: #ffffff;
  background-color: #f85f32;
  transform: rotate(-20deg);
  pointer-events: visible;
}
.cid-uAdbZR17j5 .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(2) {
  left: auto;
  right: 0;
  background-color: #e354e3;
  transform: rotate(20deg);
}
.cid-uAdbZR17j5 .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(3) {
  top: auto;
  bottom: 0;
  background-color: #715edb;
  transform: rotate(-20deg);
}
@media (max-width: 768px) {
  .cid-uAdbZR17j5 .image-wrapper .icon-wrapper .mbr-iconfont {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}
.cid-uAdbZR17j5 .content-wrapper .mbr-section-subtitle {
  opacity: .5;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uAdbZR17j5 .content-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-uAdbZR17j5 .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uAdbZR17j5 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAdbZR17j5 .content-wrapper .mbr-section-title span {
  opacity: .8;
}
.cid-uAdbZR17j5 .content-wrapper .mbr-text {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uAdbZR17j5 .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uAdbZR17j5 .mbr-section-title {
  color: #ffffff;
}
.cid-uAdbZR17j5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAdbZR17j5 .mbr-text {
  color: #000000;
}
.cid-uAdbZR17j5 .mbr-section-title,
.cid-uAdbZR17j5 .mbr-section-btn {
  color: #000000;
}
.cid-uAdbZS9hKe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5b762;
}
.cid-uAdbZS9hKe .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uAdbZS9hKe .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uAdbZS9hKe .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #e8f5e3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uAdbZS9hKe .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uAdbZS9hKe .mbr-text {
  color: #000000;
}
.cid-uAdbZSOPO0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAdbZSOPO0 .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uAdbZSOPO0 .content_wrapper:hover .mbr-section-title a {
  color: #2a1340 !important;
}
.cid-uAdbZSOPO0 .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uAdbZSOPO0 .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uAdbZSOPO0 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uAdbZSOPO0 .mbr-section-btn .btn-secondary-outline:hover,
.cid-uAdbZSOPO0 .mbr-section-btn .btn-secondary-outline .active,
.cid-uAdbZSOPO0 .mbr-section-btn .btn-secondary-outline:focus {
  color: #f5a80c !important;
}
.cid-uAdbZSOPO0 .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uAdbZSOPO0 .image_post {
  display: inline-block;
}
.cid-uAdbZSOPO0 .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uAdbZSOPO0 .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uAdbZTAZlu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5b762;
  overflow: hidden;
}
.cid-uAdbZTAZlu .mbr-section-head {
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uAdbZTAZlu .mbr-section-head {
    padding-bottom: 40px;
  }
}
.cid-uAdbZTAZlu .mbr-section-title {
  color: #FFFFFF;
}
.cid-uAdbZTAZlu .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-uAdbZTAZlu .items-row {
  padding-top: 40px;
  row-gap: 60px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .cid-uAdbZTAZlu .items-row {
    padding-top: 0;
    row-gap: 40px;
  }
}
@media (min-width: 576px) {
  .cid-uAdbZTAZlu .item {
    width: 47%;
  }
  .cid-uAdbZTAZlu .item:nth-child(1n) {
    transform: translateY(0);
  }
  .cid-uAdbZTAZlu .item:nth-child(2n) {
    transform: translateY(-40px);
  }
  .cid-uAdbZTAZlu .item:nth-child(3n) {
    transform: translateY(-10px);
  }
  .cid-uAdbZTAZlu .item:nth-child(4n) {
    transform: translateY(-20px);
  }
  .cid-uAdbZTAZlu .item:nth-child(5n) {
    transform: translateY(-10px);
  }
  .cid-uAdbZTAZlu .item:nth-child(6n) {
    transform: translateY(-40px);
  }
}
@media (min-width: 768px) {
  .cid-uAdbZTAZlu .item {
    width: 42%;
  }
}
@media (min-width: 992px) {
  .cid-uAdbZTAZlu .item {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .cid-uAdbZTAZlu .item {
    width: 27%;
  }
}
.cid-uAdbZTAZlu .item-img {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uAdbZTAZlu .item-img img {
  width: 100%;
  aspect-ratio: calc(2 / 3);
  object-fit: cover;
  transform: scale(1.01);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uAdbZTAZlu .item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-uAdbZTAZlu .item-wrapper:hover .item-img {
  border-radius: 25px;
  transform: scale(0.95);
}
.cid-uAdbZTAZlu .item-wrapper:hover .item-img img {
  transform: scale(1.2, 1.2);
}
.cid-uAdbZTAZlu .item-content {
  flex-grow: 1;
  padding-top: 31px;
}
.cid-uAdbZTAZlu .item-title {
  margin-bottom: 32px;
  color: #FFFFFF;
}
.cid-uAdbZTAZlu .mbr-text {
  position: relative;
  margin-bottom: 0;
  color: #FFFFFF;
  padding-left: 85px;
}
.cid-uAdbZTAZlu .mbr-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: 1px;
  background-image: linear-gradient(-90deg, currentColor 0, rgba(255, 255, 255, 0) 100%);
}
.cid-uAdbZTAZlu .mbr-section-btn {
  margin-top: 12px;
}
.cid-uAdbZTAZlu .item-title,
.cid-uAdbZTAZlu .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uAdbZUEhVY {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uAdbZUEhVY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdbZUEhVY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdbZUEhVY .mbr-section-title {
  color: #000000;
}
.cid-uAdbZUEhVY .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-uAdbZUEhVY .mbr-section-btn {
  margin-top: 20px;
}
.cid-uAdbZUEhVY .mbr-section-subtitle,
.cid-uAdbZUEhVY .mbr-section-btn {
  color: #000000;
}
.cid-uAdbZVu39V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5b762;
}
.cid-uAdbZVu39V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdbZVu39V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdbZVu39V .row {
  margin-left: -1.5vw;
  margin-right: -1.5vw;
  background-color: #fadd8a;
  position: relative;
}
.cid-uAdbZVu39V .row:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5rem;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  background-color: #fadd8a;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uAdbZVu39V .row:before {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}
.cid-uAdbZVu39V .row:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5rem;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  background-color: #fadd8a;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uAdbZVu39V .row:after {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}
.cid-uAdbZVu39V .image-wrapper {
  position: sticky;
  top: 130px;
  padding-left: 1.4vw;
}
.cid-uAdbZVu39V .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 230px;
}
.cid-uAdbZVu39V .card-wrapper {
  padding-right: 1.4vw;
  padding-left: 132px;
}
@media (max-width: 1399px) {
  .cid-uAdbZVu39V .card-wrapper {
    padding-left: 9.43vw;
  }
}
@media (max-width: 991px) {
  .cid-uAdbZVu39V .card-wrapper {
    padding-right: 9.43vw;
    padding-left: 1.4vw;
  }
}
@media (max-width: 575px) {
  .cid-uAdbZVu39V .card-wrapper {
    padding-right: 8vw;
    padding-left: 1.5vw;
  }
}
.cid-uAdbZVu39V .card-title {
  color: #F5A80C;
  margin-bottom: 18px;
}
.cid-uAdbZVu39V .card-subtitle {
  color: #000000;
  margin-bottom: 160px;
}
@media (max-width: 1399px) and (min-width: 768px) {
  .cid-uAdbZVu39V .card-subtitle {
    margin-bottom: 11.78vw;
  }
  .cid-uAdbZVu39V .card-subtitle.display-1 {
    font-size: 7.143vw !important;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .cid-uAdbZVu39V .card-subtitle {
    margin-bottom: 40px;
  }
  .cid-uAdbZVu39V .card-subtitle.display-1 {
    font-size: 50px !important;
    line-height: 1.2;
  }
}
.cid-uAdbZVu39V .mbr-text {
  width: 23.2vw;
  margin-left: auto;
  color: #161616;
}
@media (max-width: 991px) {
  .cid-uAdbZVu39V .mbr-text {
    width: 100%;
  }
}
.cid-uAdbZVu39V .mbr-section-btn {
  margin-top: 20px;
}
.cid-uAdbZWmdin {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAdbZWmdin .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdbZWmdin .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdbZWmdin .mbr-section-title {
  color: #000000;
}
.cid-uAdbZWmdin .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-uAdbZWmdin .mbr-section-btn {
  margin-top: 20px;
}
.cid-uAdbZWmdin .mbr-section-subtitle,
.cid-uAdbZWmdin .mbr-section-btn {
  color: #000000;
}
.cid-uAdoNxbSHo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fadd8a;
}
.cid-uAdoNxbSHo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdoNxbSHo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdoNxbSHo .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uAdoNxbSHo .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uAdoNxbSHo .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uAdoNxbSHo .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uAdoNxbSHo .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #fadd8a;
  border: 3px solid #e5b762;
  box-shadow: 4px 4px 0 0 #e5b762;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uAdoNxbSHo .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uAdoNxbSHo .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uAdoNxbSHo .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uAdoNxbSHo .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uAdoNxbSHo .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uAdoNxbSHo .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uAdoNxbSHo .mbr-section-title,
.cid-uAdoNxbSHo .mbr-section-btn {
  color: #000000;
}
.cid-uAdbZX7Drg {
  padding-top: 0;
  padding-bottom: 0;
  background-image: linear-gradient(180deg, #fadd8a 0, #e5b762 100%);
}
.cid-uAdbZX7Drg .container-fluid {
  padding: 0;
}
.cid-uAdbZX7Drg .card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.cid-uAdbZX7Drg .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
@media (min-width: 992px) {
  .cid-uAdbZX7Drg .card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
  .cid-uAdbZX7Drg .card:hover:before {
    opacity: 0;
  }
  .cid-uAdbZX7Drg .card:hover:after {
    opacity: 1;
  }
  .cid-uAdbZX7Drg .card:hover .image-wrapper {
    border-radius: 40px;
  }
}
.cid-uAdbZX7Drg .card:nth-child(1) {
  background-image: linear-gradient(180deg, #fadd8a 0, #e5b762 100%);
}
.cid-uAdbZX7Drg .card:nth-child(1):before {
  background-image: linear-gradient(180deg, #fadd8a 0, #e5b762 100%);
}
.cid-uAdbZX7Drg .card:nth-child(1):after {
  background-image: linear-gradient(360deg, #fadd8a 0, #e5b762 100%);
}
.cid-uAdbZX7Drg .card:nth-child(2) {
  background-image: linear-gradient(180deg, #e5b762 0, #f77d06 100%);
}
.cid-uAdbZX7Drg .card:nth-child(2):before {
  background-image: linear-gradient(180deg, #e5b762 0, #f77d06 100%);
}
.cid-uAdbZX7Drg .card:nth-child(2):after {
  background-image: linear-gradient(360deg, #e5b762 0, #f77d06 100%);
}
.cid-uAdbZX7Drg .card-wrapper {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px 25px 60px;
}
.cid-uAdbZX7Drg .card-title {
  width: 100%;
  margin-bottom: 54px;
  color: #FFFFFF;
}
@media (max-width: 1399px) {
  .cid-uAdbZX7Drg .card-title {
    margin-bottom: 3.85vw;
  }
}
@media (max-width: 767px) {
  .cid-uAdbZX7Drg .card-title {
    margin-bottom: 45px;
  }
}
.cid-uAdbZX7Drg .image-wrapper {
  width: 39.92vw;
  max-width: 600px;
  border-radius: 50%;
  overflow: hidden;
  transition: border-radius 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
@media (max-width: 991px) {
  .cid-uAdbZX7Drg .image-wrapper {
    width: 70%;
    max-width: 70%;
  }
}
.cid-uAdbZX7Drg .image-wrapper img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.cid-uAdbZX7Drg .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .cid-uAdbZX7Drg .mbr-section-btn {
    margin-top: 3.85vw;
  }
}
@media (max-width: 767px) {
  .cid-uAdbZX7Drg .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uAdbZX7Drg .card-title,
.cid-uAdbZX7Drg .mbr-section-btn {
  color: #000000;
}
.cid-uAdbZY1unS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAdbZY1unS blockquote {
  border-color: #f77d06;
  border-radius: 4px;
  background-color: #fadd8a;
}
.cid-uAdbZYNJa1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5b762;
}
.cid-uAdbZYNJa1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdbZYNJa1 .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-uAdbZYNJa1 .container {
    padding: 0 22px;
  }
}
.cid-uAdbZYNJa1 .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAdbZYNJa1 .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uAdbZYNJa1 .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uAdbZYNJa1 .image-wrapper img {
    height: 350px;
  }
}
.cid-uAdbZYNJa1 .mbr-section-title {
  margin-bottom: 16px;
  color: #000000;
}
.cid-uAdbZYNJa1 .panel-group {
  border-bottom: 1px solid #191c25;
}
.cid-uAdbZYNJa1 .panel-group .card {
  border-top: 1px solid #191c25;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uAdbZYNJa1 .panel-group .card:hover,
.cid-uAdbZYNJa1 .panel-group .card:focus {
  border-top: 1px solid #000000;
}
.cid-uAdbZYNJa1 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uAdbZYNJa1 .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uAdbZYNJa1 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uAdbZYNJa1 .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-uAdbZYNJa1 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uAdbZYNJa1 .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uAdbZYNJa1 .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uAdbZYNJa1 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uAdbZYNJa1 .panel-title-edit {
  color: #000000;
}
.cid-uAdbZYNJa1 .panel-text {
  color: #8a8588;
}
.cid-uAdbZZWla2 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uAdbZZWla2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdbZZWla2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdbZZWla2 .mbr-section-title {
  color: #000000;
}
.cid-uAdbZZWla2 .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-uAdbZZWla2 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uAdbZZWla2 .mbr-section-subtitle,
.cid-uAdbZZWla2 .mbr-section-btn {
  color: #000000;
}
.cid-uAdn68kn1s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-uAdn68kn1s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdn68kn1s .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-uAdn68kn1s .container {
    padding: 0 20px;
  }
}
.cid-uAdn68kn1s .row {
  margin: 0;
}
.cid-uAdn68kn1s .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uAdn68kn1s .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAdn68kn1s .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-uAdn68kn1s .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uAdn68kn1s .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uAdn68kn1s .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uAdn68kn1s .mbr-section-title {
  color: #ffffff;
}
.cid-uAdc00G3GA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAdc00G3GA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdc00G3GA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdc00G3GA .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uAdc00G3GA .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uAdc00G3GA .container {
    padding: 0 24px;
  }
}
.cid-uAdc00G3GA .row {
  justify-content: center;
}
.cid-uAdc00G3GA .content-wrapper {
  border-radius: 40px;
  background-color: #e5b762;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uAdc00G3GA .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uAdc00G3GA .content-wrapper {
    padding: 32px;
  }
}
.cid-uAdc00G3GA .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAdc00G3GA .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-uAdc00G3GA .mbr-section-title {
  color: #000000;
}
.cid-uAdc00G3GA .mbr-text {
  color: #000000;
}
.cid-uAdc01t9Ik {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fadd8a;
}
.cid-uAdc01t9Ik .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdc01t9Ik .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdc01t9Ik .container-fluid {
  padding: 0 50px;
}
@media (max-width: 1440px) {
  .cid-uAdc01t9Ik .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uAdc01t9Ik .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uAdc01t9Ik .container {
    padding: 0 20px;
  }
}
.cid-uAdc01t9Ik .row {
  justify-content: center;
}
.cid-uAdc01t9Ik .desc-wrapper .mbr-desc {
  display: inline-flex;
  border-radius: 100vw;
  padding: 14px 15px;
  margin-bottom: 80px;
  background-color: #e5b762;
}
@media (max-width: 992px) {
  .cid-uAdc01t9Ik .desc-wrapper .mbr-desc {
    margin-bottom: 40px;
  }
}
.cid-uAdc01t9Ik .panel-group .card {
  border-radius: 20px !important;
  background-color: #ffffff;
  margin-top: 40px;
  padding: 50px;
}
.cid-uAdc01t9Ik .panel-group .card:first-child {
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-uAdc01t9Ik .panel-group .card {
    padding: 20px;
  }
}
.cid-uAdc01t9Ik .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uAdc01t9Ik .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uAdc01t9Ik .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uAdc01t9Ik .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  transition: all 0.3s ease-in-out;
  color: #0f1d07;
  margin-left: 20px;
}
.cid-uAdc01t9Ik .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uAdc01t9Ik .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uAdc01t9Ik .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uAdc01t9Ik .mbr-desc {
  color: #ffffff;
}
.cid-uAdc01t9Ik .panel-title-edit {
  color: #0f1d07;
}
.cid-uAdc01t9Ik .panel-text {
  color: #0f1d07;
}
.cid-uAdc01t9Ik .mbr-desc,
.cid-uAdc01t9Ik .desc-wrapper {
  color: #000000;
}
.cid-uAdc02ltZ8 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #e5b762;
}
.cid-uAdc02ltZ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdc02ltZ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdc02ltZ8 .container,
.cid-uAdc02ltZ8 .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uAdc02ltZ8 .container,
  .cid-uAdc02ltZ8 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uAdc02ltZ8 .row {
  position: relative;
  padding: 100px 16px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background-color: #ffffff;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAdc02ltZ8 .row {
    padding: 85px 8px;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uAdc02ltZ8 .map-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .cid-uAdc02ltZ8 .map-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAdc02ltZ8 .map-wrapper .google-map iframe {
  height: 300px;
}
@media (max-width: 992px) {
  .cid-uAdc02ltZ8 .map-wrapper .google-map iframe {
    height: 250px;
  }
}
.cid-uAdc02ltZ8 .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAdc02ltZ8 .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAdc02ltZ8 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAdc02ltZ8 .mbr-iconfont {
  font-size: 32px;
  display: block;
  margin-right: 10px;
}
.cid-uAdc02ltZ8 .address-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uAdc02ltZ8 .address-wrapper {
    display: block;
  }
}
.cid-uAdc02ltZ8 .address-wrapper .text-wrapper {
  display: flex;
  margin-bottom: 35px;
}
@media (max-width: 992px) {
  .cid-uAdc02ltZ8 .address-wrapper .text-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAdc02ltZ8 .address-wrapper .text-wrapper .text-wrap .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-uAdc02ltZ8 .address-wrapper .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uAdc02ltZ8 .links-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uAdc02ltZ8 .links-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uAdc02ltZ8 .links-wrapper .links-wrap {
    margin-bottom: 20px;
  }
}
.cid-uAdc02ltZ8 .links-wrapper .links-wrap a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uAdc02ltZ8 .links-wrapper .links-wrap a:hover .mbr-email,
.cid-uAdc02ltZ8 .links-wrapper .links-wrap a:hover .mbr-phone {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .cid-uAdc02ltZ8 .links-wrapper .links-wrap a {
    margin-bottom: 20px;
  }
}
.cid-uAdc02ltZ8 .links-wrapper .links-wrap a .mbr-email,
.cid-uAdc02ltZ8 .links-wrapper .links-wrap a .mbr-phone {
  margin-bottom: 0;
}
.cid-uAdc02ltZ8 .mbr-section-title {
  color: #000000;
}
.cid-uAdc02ltZ8 .mbr-section-subtitle,
.cid-uAdc02ltZ8 .mbr-iconfont {
  color: #000000;
}
.cid-uAdc02ltZ8 .mbr-email {
  color: #000000;
}
.cid-uAdc02ltZ8 .mbr-phone {
  color: #3d4045;
}
.cid-uAdc03mKpF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e5b762;
}
.cid-uAdc03mKpF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdc03mKpF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdc03mKpF .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uAdc03mKpF .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uAdc03mKpF .container {
    padding: 0 6px;
  }
}
.cid-uAdc03mKpF .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #fadd8a;
}
@media (max-width: 1440px) {
  .cid-uAdc03mKpF .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .cid-uAdc03mKpF .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .cid-uAdc03mKpF .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .cid-uAdc03mKpF .row {
    padding: 50px 30px;
  }
}
.cid-uAdc03mKpF .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uAdc03mKpF .title-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAdc03mKpF .title-wrapper {
    padding: 0;
  }
}
.cid-uAdc03mKpF .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uAdc03mKpF .title-wrapper .mbr-section-title span {
  color: #009472;
}
.cid-uAdc03mKpF .title-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uAdc03mKpF .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAdc03mKpF .list-wrapper {
    padding: 0;
  }
}
.cid-uAdc03mKpF .list-wrapper .list-title {
  margin-bottom: 22px;
  opacity: .5;
}
.cid-uAdc03mKpF .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uAdc03mKpF .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.cid-uAdc03mKpF .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAdc03mKpF .list-wrapper .list .item-wrap:hover,
.cid-uAdc03mKpF .list-wrapper .list .item-wrap:focus {
  color: #009472;
}
.cid-uAdc03mKpF .border-wrap {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #000000;
}
.cid-uAdc03mKpF .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
}
.cid-uAdc03mKpF .mbr-section-title {
  color: #ffffff;
}
.cid-uAdc03mKpF .list-title {
  color: #000000;
}
.cid-uAdc03mKpF .list {
  color: #ffffff;
}
.cid-uAdc03mKpF .list,
.cid-uAdc03mKpF .item-wrap {
  color: #000000;
}
.cid-uAdc03mKpF .mbr-section-title,
.cid-uAdc03mKpF .mbr-section-btn {
  color: #000000;
}
.cid-uAde8dY8pb {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uAde8dY8pb .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uAde8dY8pb .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uAde8dY8pb .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAde8dY8pb .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.cid-uAde8dY8pb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAde8dY8pb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAde8dY8pb .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-uAde8dY8pb .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uAde8dY8pb .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAde8dY8pb .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
.cid-uAde8dY8pb .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uAde8dY8pb .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uAde8dY8pb .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAde8dY8pb .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uAde8dY8pb .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uAde8dY8pb .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uAde8dY8pb .nav-link:hover {
  color: #ed463f !important;
}
.cid-uAde8dY8pb .navbar-logo {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uAde8dY8pb .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uAde8dY8pb .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.cid-uAde8dY8pb .navbar-caption:hover,
.cid-uAde8dY8pb .navbar-caption:focus {
  color: #ed463f !important;
}
@media (max-width: 767px) {
  .cid-uAde8dY8pb .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uAde8dY8pb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uAde8dY8pb .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #ffffff;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.cid-uAde8dY8pb .iconfont-wrapper {
  color: #404349 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uAde8dY8pb .iconfont-wrapper:hover,
.cid-uAde8dY8pb .iconfont-wrapper:focus {
  color: #ed463f !important;
}
.cid-uAde8dY8pb .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  border-radius: 4px !important;
}
.cid-uAde8dY8pb .nav-item:focus,
.cid-uAde8dY8pb .nav-link:focus {
  outline: none;
}
.cid-uAde8dY8pb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAde8dY8pb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAde8dY8pb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAde8dY8pb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAde8dY8pb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAde8dY8pb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAde8dY8pb .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uAde8dY8pb .navbar.opened {
  transition: all 0.3s;
}
.cid-uAde8dY8pb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAde8dY8pb .navbar .navbar-logo img {
  width: auto;
}
.cid-uAde8dY8pb .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uAde8dY8pb .navbar .navbar-collapse {
    position: absolute;
  }
}
.cid-uAde8dY8pb .navbar.collapsed {
  justify-content: center;
}
.cid-uAde8dY8pb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAde8dY8pb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAde8dY8pb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uAde8dY8pb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAde8dY8pb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAde8dY8pb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uAde8dY8pb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAde8dY8pb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAde8dY8pb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uAde8dY8pb .navbar {
    min-height: 72px;
  }
  .cid-uAde8dY8pb .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uAde8dY8pb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAde8dY8pb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAde8dY8pb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAde8dY8pb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAde8dY8pb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uAde8dY8pb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAde8dY8pb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uAde8dY8pb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAde8dY8pb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAde8dY8pb .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uAde8dY8pb .dropdown-item.active,
.cid-uAde8dY8pb .dropdown-item:active {
  background-color: transparent;
}
.cid-uAde8dY8pb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAde8dY8pb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAde8dY8pb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAde8dY8pb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAde8dY8pb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uAde8dY8pb .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uAde8dY8pb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAde8dY8pb .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uAde8dY8pb .navbar-buttons {
    text-align: left;
  }
}
.cid-uAde8dY8pb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAde8dY8pb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #404349;
}
.cid-uAde8dY8pb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAde8dY8pb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAde8dY8pb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAde8dY8pb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAde8dY8pb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAde8dY8pb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAde8dY8pb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAde8dY8pb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAde8dY8pb .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uAde8dY8pb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAde8dY8pb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 0;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uAde8dY8pb .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAde8dY8pb .navbar {
    height: 70px;
  }
  .cid-uAde8dY8pb .navbar.opened {
    height: auto;
  }
  .cid-uAde8dY8pb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAde8dY8pb .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uAde8dY8pb .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uAde8dY8pb .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uAde8dY8pb .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uAde8dY8pb .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uAde8dY8pb .mbr-section-btn {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-uAde8dY8pb .mbr-section-btn {
    padding-left: 0;
  }
}
.cid-uAde8dY8pb .mbr-section-btn .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.cid-uAde8dY8pb .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uAde8dY8pb .navbar-brand {
    margin-right: auto;
  }
  .cid-uAde8dY8pb .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    border-radius: 4px !important;
  }
  .cid-uAde8dY8pb .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uAde8dY8pb .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uAde8dY8pb .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAde8dY8pb .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uAde8dY8pb .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uAde8dY8pb .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uAde8dY8pb .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uAde8dY8pb .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAde8dY8pb .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uAde8dY8pb .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uAde8dY8pb .navbar-brand,
.cid-uAde8dY8pb .navbar-toggler,
.cid-uAde8dY8pb .navbar-collapse {
  position: relative;
  z-index: 1;
}
.cid-uAde8fxByi {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-uAde8fxByi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAde8fxByi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAde8fxByi .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-uAde8fxByi .container {
    padding: 10px 8px;
  }
}
.cid-uAde8fxByi .row {
  border-radius: 25px;
  background-color: #e5b762;
  padding: 100px 40px 40px;
  margin: 0;
  overflow: hidden;
  justify-content: center;
  box-shadow: inset -60px 0 30rem #fadd8a;
}
@media (max-width: 768px) {
  .cid-uAde8fxByi .row {
    padding: 50px 10px 40px;
  }
}
.cid-uAde8fxByi .row .card {
  padding: 0;
  justify-content: center;
}
.cid-uAde8fxByi .image-wrapper {
  position: relative;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-uAde8fxByi .image-wrapper {
    margin: 0 0 32px 0;
  }
}
.cid-uAde8fxByi .image-wrapper img {
  height: 650px;
  border-radius: 25px !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uAde8fxByi .image-wrapper img {
    height: 350px;
  }
}
.cid-uAde8fxByi .image-wrapper .icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cid-uAde8fxByi .image-wrapper .icon-wrapper .mbr-iconfont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  font-size: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  color: #ffffff;
  background-color: #f85f32;
  transform: rotate(-20deg);
  pointer-events: visible;
}
.cid-uAde8fxByi .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(2) {
  left: auto;
  right: 0;
  background-color: #e354e3;
  transform: rotate(20deg);
}
.cid-uAde8fxByi .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(3) {
  top: auto;
  bottom: 0;
  background-color: #715edb;
  transform: rotate(-20deg);
}
@media (max-width: 768px) {
  .cid-uAde8fxByi .image-wrapper .icon-wrapper .mbr-iconfont {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}
.cid-uAde8fxByi .content-wrapper .mbr-section-subtitle {
  opacity: .5;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uAde8fxByi .content-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-uAde8fxByi .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uAde8fxByi .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAde8fxByi .content-wrapper .mbr-section-title span {
  opacity: .8;
}
.cid-uAde8fxByi .content-wrapper .mbr-text {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uAde8fxByi .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uAde8fxByi .mbr-section-title {
  color: #ffffff;
}
.cid-uAde8fxByi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAde8fxByi .mbr-text {
  color: #000000;
}
.cid-uAde8fxByi .mbr-section-title,
.cid-uAde8fxByi .mbr-section-btn {
  color: #000000;
}
.cid-uAde8gsqVe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5b762;
}
.cid-uAde8gsqVe .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uAde8gsqVe .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uAde8gsqVe .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #e8f5e3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uAde8gsqVe .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uAde8gsqVe .mbr-text {
  color: #000000;
}
.cid-uAde8h2Tsq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAde8h2Tsq .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uAde8h2Tsq .content_wrapper:hover .mbr-section-title a {
  color: #2a1340 !important;
}
.cid-uAde8h2Tsq .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uAde8h2Tsq .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uAde8h2Tsq .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uAde8h2Tsq .mbr-section-btn .btn-secondary-outline:hover,
.cid-uAde8h2Tsq .mbr-section-btn .btn-secondary-outline .active,
.cid-uAde8h2Tsq .mbr-section-btn .btn-secondary-outline:focus {
  color: #f5a80c !important;
}
.cid-uAde8h2Tsq .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uAde8h2Tsq .image_post {
  display: inline-block;
}
.cid-uAde8h2Tsq .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uAde8h2Tsq .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uAde8hMNsR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5b762;
  overflow: hidden;
}
.cid-uAde8hMNsR .mbr-section-head {
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  .cid-uAde8hMNsR .mbr-section-head {
    padding-bottom: 40px;
  }
}
.cid-uAde8hMNsR .mbr-section-title {
  color: #FFFFFF;
}
.cid-uAde8hMNsR .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 16px;
}
.cid-uAde8hMNsR .items-row {
  padding-top: 40px;
  row-gap: 60px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .cid-uAde8hMNsR .items-row {
    padding-top: 0;
    row-gap: 40px;
  }
}
@media (min-width: 576px) {
  .cid-uAde8hMNsR .item {
    width: 47%;
  }
  .cid-uAde8hMNsR .item:nth-child(1n) {
    transform: translateY(0);
  }
  .cid-uAde8hMNsR .item:nth-child(2n) {
    transform: translateY(-40px);
  }
  .cid-uAde8hMNsR .item:nth-child(3n) {
    transform: translateY(-10px);
  }
  .cid-uAde8hMNsR .item:nth-child(4n) {
    transform: translateY(-20px);
  }
  .cid-uAde8hMNsR .item:nth-child(5n) {
    transform: translateY(-10px);
  }
  .cid-uAde8hMNsR .item:nth-child(6n) {
    transform: translateY(-40px);
  }
}
@media (min-width: 768px) {
  .cid-uAde8hMNsR .item {
    width: 42%;
  }
}
@media (min-width: 992px) {
  .cid-uAde8hMNsR .item {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .cid-uAde8hMNsR .item {
    width: 27%;
  }
}
.cid-uAde8hMNsR .item-img {
  position: relative;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uAde8hMNsR .item-img img {
  width: 100%;
  aspect-ratio: calc(2 / 3);
  object-fit: cover;
  transform: scale(1.01);
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-uAde8hMNsR .item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-uAde8hMNsR .item-wrapper:hover .item-img {
  border-radius: 25px;
  transform: scale(0.95);
}
.cid-uAde8hMNsR .item-wrapper:hover .item-img img {
  transform: scale(1.2, 1.2);
}
.cid-uAde8hMNsR .item-content {
  flex-grow: 1;
  padding-top: 31px;
}
.cid-uAde8hMNsR .item-title {
  margin-bottom: 32px;
  color: #FFFFFF;
}
.cid-uAde8hMNsR .mbr-text {
  position: relative;
  margin-bottom: 0;
  color: #FFFFFF;
  padding-left: 85px;
}
.cid-uAde8hMNsR .mbr-text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 75px;
  height: 1px;
  background-image: linear-gradient(-90deg, currentColor 0, rgba(255, 255, 255, 0) 100%);
}
.cid-uAde8hMNsR .mbr-section-btn {
  margin-top: 12px;
}
.cid-uAde8hMNsR .item-title,
.cid-uAde8hMNsR .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uAde8iBUI4 {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uAde8iBUI4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAde8iBUI4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAde8iBUI4 .mbr-section-title {
  color: #000000;
}
.cid-uAde8iBUI4 .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-uAde8iBUI4 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uAde8iBUI4 .mbr-section-subtitle,
.cid-uAde8iBUI4 .mbr-section-btn {
  color: #000000;
}
.cid-uAde8jj4mM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5b762;
}
.cid-uAde8jj4mM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAde8jj4mM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAde8jj4mM .row {
  margin-left: -1.5vw;
  margin-right: -1.5vw;
  background-color: #fadd8a;
  position: relative;
}
.cid-uAde8jj4mM .row:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5rem;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  background-color: #fadd8a;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uAde8jj4mM .row:before {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}
.cid-uAde8jj4mM .row:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 5rem;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  background-color: #fadd8a;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uAde8jj4mM .row:after {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
}
.cid-uAde8jj4mM .image-wrapper {
  position: sticky;
  top: 130px;
  padding-left: 1.4vw;
}
.cid-uAde8jj4mM .image-wrapper img {
  width: 100%;
  object-fit: cover;
  border-radius: 230px;
}
.cid-uAde8jj4mM .card-wrapper {
  padding-right: 1.4vw;
  padding-left: 132px;
}
@media (max-width: 1399px) {
  .cid-uAde8jj4mM .card-wrapper {
    padding-left: 9.43vw;
  }
}
@media (max-width: 991px) {
  .cid-uAde8jj4mM .card-wrapper {
    padding-right: 9.43vw;
    padding-left: 1.4vw;
  }
}
@media (max-width: 575px) {
  .cid-uAde8jj4mM .card-wrapper {
    padding-right: 8vw;
    padding-left: 1.5vw;
  }
}
.cid-uAde8jj4mM .card-title {
  color: #F5A80C;
  margin-bottom: 18px;
}
.cid-uAde8jj4mM .card-subtitle {
  color: #000000;
  margin-bottom: 160px;
}
@media (max-width: 1399px) and (min-width: 768px) {
  .cid-uAde8jj4mM .card-subtitle {
    margin-bottom: 11.78vw;
  }
  .cid-uAde8jj4mM .card-subtitle.display-1 {
    font-size: 7.143vw !important;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .cid-uAde8jj4mM .card-subtitle {
    margin-bottom: 40px;
  }
  .cid-uAde8jj4mM .card-subtitle.display-1 {
    font-size: 50px !important;
    line-height: 1.2;
  }
}
.cid-uAde8jj4mM .mbr-text {
  width: 23.2vw;
  margin-left: auto;
  color: #161616;
}
@media (max-width: 991px) {
  .cid-uAde8jj4mM .mbr-text {
    width: 100%;
  }
}
.cid-uAde8jj4mM .mbr-section-btn {
  margin-top: 20px;
}
.cid-uAde8k1FX3 {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAde8k1FX3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAde8k1FX3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAde8k1FX3 .mbr-section-title {
  color: #000000;
}
.cid-uAde8k1FX3 .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-uAde8k1FX3 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uAde8k1FX3 .mbr-section-subtitle,
.cid-uAde8k1FX3 .mbr-section-btn {
  color: #000000;
}
.cid-uAdoSNiitK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fadd8a;
}
.cid-uAdoSNiitK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdoSNiitK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdoSNiitK .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uAdoSNiitK .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uAdoSNiitK .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uAdoSNiitK .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uAdoSNiitK .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #fadd8a;
  border: 3px solid #e5b762;
  box-shadow: 4px 4px 0 0 #e5b762;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uAdoSNiitK .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uAdoSNiitK .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uAdoSNiitK .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uAdoSNiitK .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uAdoSNiitK .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uAdoSNiitK .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uAdoSNiitK .mbr-section-title,
.cid-uAdoSNiitK .mbr-section-btn {
  color: #000000;
}
.cid-uAde8kKMDq {
  padding-top: 0;
  padding-bottom: 0;
  background-image: linear-gradient(180deg, #fadd8a 0, #e5b762 100%);
}
.cid-uAde8kKMDq .container-fluid {
  padding: 0;
}
.cid-uAde8kKMDq .card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.cid-uAde8kKMDq .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
@media (min-width: 992px) {
  .cid-uAde8kKMDq .card:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
  .cid-uAde8kKMDq .card:hover:before {
    opacity: 0;
  }
  .cid-uAde8kKMDq .card:hover:after {
    opacity: 1;
  }
  .cid-uAde8kKMDq .card:hover .image-wrapper {
    border-radius: 40px;
  }
}
.cid-uAde8kKMDq .card:nth-child(1) {
  background-image: linear-gradient(180deg, #fadd8a 0, #e5b762 100%);
}
.cid-uAde8kKMDq .card:nth-child(1):before {
  background-image: linear-gradient(180deg, #fadd8a 0, #e5b762 100%);
}
.cid-uAde8kKMDq .card:nth-child(1):after {
  background-image: linear-gradient(360deg, #fadd8a 0, #e5b762 100%);
}
.cid-uAde8kKMDq .card:nth-child(2) {
  background-image: linear-gradient(180deg, #e5b762 0, #f77d06 100%);
}
.cid-uAde8kKMDq .card:nth-child(2):before {
  background-image: linear-gradient(180deg, #e5b762 0, #f77d06 100%);
}
.cid-uAde8kKMDq .card:nth-child(2):after {
  background-image: linear-gradient(360deg, #e5b762 0, #f77d06 100%);
}
.cid-uAde8kKMDq .card-wrapper {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 50px 25px 60px;
}
.cid-uAde8kKMDq .card-title {
  width: 100%;
  margin-bottom: 54px;
  color: #FFFFFF;
}
@media (max-width: 1399px) {
  .cid-uAde8kKMDq .card-title {
    margin-bottom: 3.85vw;
  }
}
@media (max-width: 767px) {
  .cid-uAde8kKMDq .card-title {
    margin-bottom: 45px;
  }
}
.cid-uAde8kKMDq .image-wrapper {
  width: 39.92vw;
  max-width: 600px;
  border-radius: 50%;
  overflow: hidden;
  transition: border-radius 0.7s cubic-bezier(0.77, 0.2, 0.05, 1);
}
@media (max-width: 991px) {
  .cid-uAde8kKMDq .image-wrapper {
    width: 70%;
    max-width: 70%;
  }
}
.cid-uAde8kKMDq .image-wrapper img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.cid-uAde8kKMDq .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .cid-uAde8kKMDq .mbr-section-btn {
    margin-top: 3.85vw;
  }
}
@media (max-width: 767px) {
  .cid-uAde8kKMDq .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uAde8kKMDq .card-title,
.cid-uAde8kKMDq .mbr-section-btn {
  color: #000000;
}
.cid-uAde8lC0LN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAde8lC0LN blockquote {
  border-color: #f77d06;
  border-radius: 4px;
  background-color: #fadd8a;
}
.cid-uAde8miPTx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5b762;
}
.cid-uAde8miPTx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAde8miPTx .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-uAde8miPTx .container {
    padding: 0 22px;
  }
}
.cid-uAde8miPTx .row {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAde8miPTx .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uAde8miPTx .image-wrapper img {
  height: 415px;
  border-radius: 0 6rem 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uAde8miPTx .image-wrapper img {
    height: 350px;
  }
}
.cid-uAde8miPTx .mbr-section-title {
  margin-bottom: 16px;
  color: #000000;
}
.cid-uAde8miPTx .panel-group {
  border-bottom: 1px solid #191c25;
}
.cid-uAde8miPTx .panel-group .card {
  border-top: 1px solid #191c25;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.cid-uAde8miPTx .panel-group .card:hover,
.cid-uAde8miPTx .panel-group .card:focus {
  border-top: 1px solid #000000;
}
.cid-uAde8miPTx .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uAde8miPTx .panel-group .card .card-header .panel-title {
  display: inline-flex;
  padding: 40px 0;
  justify-content: space-between;
  width: 100%;
}
.cid-uAde8miPTx .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uAde8miPTx .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-uAde8miPTx .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
  color: #ff5753;
}
.cid-uAde8miPTx .panel-group .card .panel-collapse .panel-body {
  padding: 16px 0 80px;
}
@media (max-width: 992px) {
  .cid-uAde8miPTx .panel-group .card .panel-collapse .panel-body {
    padding: 16px 0 55px;
  }
}
.cid-uAde8miPTx .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uAde8miPTx .panel-title-edit {
  color: #000000;
}
.cid-uAde8miPTx .panel-text {
  color: #8a8588;
}
.cid-uAde8noRbS {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uAde8noRbS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAde8noRbS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAde8noRbS .mbr-section-title {
  color: #000000;
}
.cid-uAde8noRbS .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-uAde8noRbS .mbr-section-btn {
  margin-top: 20px;
}
.cid-uAde8noRbS .mbr-section-subtitle,
.cid-uAde8noRbS .mbr-section-btn {
  color: #000000;
}
.cid-uAdnwpHavS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fadd8a;
}
.cid-uAdnwpHavS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdnwpHavS .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-uAdnwpHavS .container {
    padding: 0 20px;
  }
}
.cid-uAdnwpHavS .row {
  margin: 0;
}
.cid-uAdnwpHavS .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uAdnwpHavS .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAdnwpHavS .video-block .video-wrapper .app-video-wrapper::before {
  color: #000000;
  text-shadow: none;
}
.cid-uAdnwpHavS .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uAdnwpHavS .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uAdnwpHavS .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uAdnwpHavS .mbr-section-title {
  color: #ffffff;
}
.cid-uAde8obYOS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAde8obYOS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAde8obYOS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAde8obYOS .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uAde8obYOS .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uAde8obYOS .container {
    padding: 0 24px;
  }
}
.cid-uAde8obYOS .row {
  justify-content: center;
}
.cid-uAde8obYOS .content-wrapper {
  border-radius: 40px;
  background-color: #e5b762;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uAde8obYOS .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uAde8obYOS .content-wrapper {
    padding: 32px;
  }
}
.cid-uAde8obYOS .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAde8obYOS .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-uAde8obYOS .mbr-section-title {
  color: #000000;
}
.cid-uAde8obYOS .mbr-text {
  color: #000000;
}
.cid-uAde8p20aA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fadd8a;
}
.cid-uAde8p20aA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAde8p20aA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAde8p20aA .container-fluid {
  padding: 0 50px;
}
@media (max-width: 1440px) {
  .cid-uAde8p20aA .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uAde8p20aA .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uAde8p20aA .container {
    padding: 0 20px;
  }
}
.cid-uAde8p20aA .row {
  justify-content: center;
}
.cid-uAde8p20aA .desc-wrapper .mbr-desc {
  display: inline-flex;
  border-radius: 100vw;
  padding: 14px 15px;
  margin-bottom: 80px;
  background-color: #e5b762;
}
@media (max-width: 992px) {
  .cid-uAde8p20aA .desc-wrapper .mbr-desc {
    margin-bottom: 40px;
  }
}
.cid-uAde8p20aA .panel-group .card {
  border-radius: 20px !important;
  background-color: #ffffff;
  margin-top: 40px;
  padding: 50px;
}
.cid-uAde8p20aA .panel-group .card:first-child {
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-uAde8p20aA .panel-group .card {
    padding: 20px;
  }
}
.cid-uAde8p20aA .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uAde8p20aA .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uAde8p20aA .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uAde8p20aA .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  transition: all 0.3s ease-in-out;
  color: #0f1d07;
  margin-left: 20px;
}
.cid-uAde8p20aA .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uAde8p20aA .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uAde8p20aA .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uAde8p20aA .mbr-desc {
  color: #ffffff;
}
.cid-uAde8p20aA .panel-title-edit {
  color: #0f1d07;
}
.cid-uAde8p20aA .panel-text {
  color: #0f1d07;
}
.cid-uAde8p20aA .mbr-desc,
.cid-uAde8p20aA .desc-wrapper {
  color: #000000;
}
.cid-uAde8pZBg5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #e5b762;
}
.cid-uAde8pZBg5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAde8pZBg5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAde8pZBg5 .container,
.cid-uAde8pZBg5 .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uAde8pZBg5 .container,
  .cid-uAde8pZBg5 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uAde8pZBg5 .row {
  position: relative;
  padding: 100px 16px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background-color: #ffffff;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAde8pZBg5 .row {
    padding: 85px 8px;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uAde8pZBg5 .map-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .cid-uAde8pZBg5 .map-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAde8pZBg5 .map-wrapper .google-map iframe {
  height: 300px;
}
@media (max-width: 992px) {
  .cid-uAde8pZBg5 .map-wrapper .google-map iframe {
    height: 250px;
  }
}
.cid-uAde8pZBg5 .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAde8pZBg5 .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAde8pZBg5 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAde8pZBg5 .mbr-iconfont {
  font-size: 32px;
  display: block;
  margin-right: 10px;
}
.cid-uAde8pZBg5 .address-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uAde8pZBg5 .address-wrapper {
    display: block;
  }
}
.cid-uAde8pZBg5 .address-wrapper .text-wrapper {
  display: flex;
  margin-bottom: 35px;
}
@media (max-width: 992px) {
  .cid-uAde8pZBg5 .address-wrapper .text-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAde8pZBg5 .address-wrapper .text-wrapper .text-wrap .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-uAde8pZBg5 .address-wrapper .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uAde8pZBg5 .links-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uAde8pZBg5 .links-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uAde8pZBg5 .links-wrapper .links-wrap {
    margin-bottom: 20px;
  }
}
.cid-uAde8pZBg5 .links-wrapper .links-wrap a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uAde8pZBg5 .links-wrapper .links-wrap a:hover .mbr-email,
.cid-uAde8pZBg5 .links-wrapper .links-wrap a:hover .mbr-phone {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .cid-uAde8pZBg5 .links-wrapper .links-wrap a {
    margin-bottom: 20px;
  }
}
.cid-uAde8pZBg5 .links-wrapper .links-wrap a .mbr-email,
.cid-uAde8pZBg5 .links-wrapper .links-wrap a .mbr-phone {
  margin-bottom: 0;
}
.cid-uAde8pZBg5 .mbr-section-title {
  color: #000000;
}
.cid-uAde8pZBg5 .mbr-section-subtitle,
.cid-uAde8pZBg5 .mbr-iconfont {
  color: #000000;
}
.cid-uAde8pZBg5 .mbr-email {
  color: #000000;
}
.cid-uAde8pZBg5 .mbr-phone {
  color: #3d4045;
}
.cid-uAde8r7KH4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e5b762;
}
.cid-uAde8r7KH4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAde8r7KH4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAde8r7KH4 .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uAde8r7KH4 .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uAde8r7KH4 .container {
    padding: 0 6px;
  }
}
.cid-uAde8r7KH4 .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #fadd8a;
}
@media (max-width: 1440px) {
  .cid-uAde8r7KH4 .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .cid-uAde8r7KH4 .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .cid-uAde8r7KH4 .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .cid-uAde8r7KH4 .row {
    padding: 50px 30px;
  }
}
.cid-uAde8r7KH4 .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uAde8r7KH4 .title-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAde8r7KH4 .title-wrapper {
    padding: 0;
  }
}
.cid-uAde8r7KH4 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uAde8r7KH4 .title-wrapper .mbr-section-title span {
  color: #009472;
}
.cid-uAde8r7KH4 .title-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uAde8r7KH4 .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAde8r7KH4 .list-wrapper {
    padding: 0;
  }
}
.cid-uAde8r7KH4 .list-wrapper .list-title {
  margin-bottom: 22px;
  opacity: .5;
}
.cid-uAde8r7KH4 .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uAde8r7KH4 .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.cid-uAde8r7KH4 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAde8r7KH4 .list-wrapper .list .item-wrap:hover,
.cid-uAde8r7KH4 .list-wrapper .list .item-wrap:focus {
  color: #009472;
}
.cid-uAde8r7KH4 .border-wrap {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #000000;
}
.cid-uAde8r7KH4 .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
}
.cid-uAde8r7KH4 .mbr-section-title {
  color: #ffffff;
}
.cid-uAde8r7KH4 .list-title {
  color: #000000;
}
.cid-uAde8r7KH4 .list {
  color: #ffffff;
}
.cid-uAde8r7KH4 .list,
.cid-uAde8r7KH4 .item-wrap {
  color: #000000;
}
.cid-uAde8r7KH4 .mbr-section-title,
.cid-uAde8r7KH4 .mbr-section-btn {
  color: #000000;
}
.cid-uAdxHLrEXt {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uAdxHLrEXt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uAdxHLrEXt .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uAdxHLrEXt .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAdxHLrEXt .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.cid-uAdxHLrEXt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAdxHLrEXt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAdxHLrEXt .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-uAdxHLrEXt .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uAdxHLrEXt .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAdxHLrEXt .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
.cid-uAdxHLrEXt .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uAdxHLrEXt .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uAdxHLrEXt .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAdxHLrEXt .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uAdxHLrEXt .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uAdxHLrEXt .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uAdxHLrEXt .nav-link:hover {
  color: #ed463f !important;
}
.cid-uAdxHLrEXt .navbar-logo {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uAdxHLrEXt .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uAdxHLrEXt .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.cid-uAdxHLrEXt .navbar-caption:hover,
.cid-uAdxHLrEXt .navbar-caption:focus {
  color: #ed463f !important;
}
@media (max-width: 767px) {
  .cid-uAdxHLrEXt .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uAdxHLrEXt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uAdxHLrEXt .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #ffffff;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.cid-uAdxHLrEXt .iconfont-wrapper {
  color: #404349 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uAdxHLrEXt .iconfont-wrapper:hover,
.cid-uAdxHLrEXt .iconfont-wrapper:focus {
  color: #ed463f !important;
}
.cid-uAdxHLrEXt .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  border-radius: 4px !important;
}
.cid-uAdxHLrEXt .nav-item:focus,
.cid-uAdxHLrEXt .nav-link:focus {
  outline: none;
}
.cid-uAdxHLrEXt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAdxHLrEXt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAdxHLrEXt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAdxHLrEXt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAdxHLrEXt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAdxHLrEXt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAdxHLrEXt .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uAdxHLrEXt .navbar.opened {
  transition: all 0.3s;
}
.cid-uAdxHLrEXt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAdxHLrEXt .navbar .navbar-logo img {
  width: auto;
}
.cid-uAdxHLrEXt .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uAdxHLrEXt .navbar .navbar-collapse {
    position: absolute;
  }
}
.cid-uAdxHLrEXt .navbar.collapsed {
  justify-content: center;
}
.cid-uAdxHLrEXt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAdxHLrEXt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAdxHLrEXt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uAdxHLrEXt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAdxHLrEXt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAdxHLrEXt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uAdxHLrEXt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAdxHLrEXt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAdxHLrEXt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uAdxHLrEXt .navbar {
    min-height: 72px;
  }
  .cid-uAdxHLrEXt .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uAdxHLrEXt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAdxHLrEXt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAdxHLrEXt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAdxHLrEXt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAdxHLrEXt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uAdxHLrEXt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAdxHLrEXt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uAdxHLrEXt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAdxHLrEXt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAdxHLrEXt .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uAdxHLrEXt .dropdown-item.active,
.cid-uAdxHLrEXt .dropdown-item:active {
  background-color: transparent;
}
.cid-uAdxHLrEXt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAdxHLrEXt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAdxHLrEXt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAdxHLrEXt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAdxHLrEXt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uAdxHLrEXt .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uAdxHLrEXt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAdxHLrEXt .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uAdxHLrEXt .navbar-buttons {
    text-align: left;
  }
}
.cid-uAdxHLrEXt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAdxHLrEXt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #404349;
}
.cid-uAdxHLrEXt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAdxHLrEXt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAdxHLrEXt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAdxHLrEXt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAdxHLrEXt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAdxHLrEXt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAdxHLrEXt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAdxHLrEXt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAdxHLrEXt .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uAdxHLrEXt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAdxHLrEXt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 0;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uAdxHLrEXt .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAdxHLrEXt .navbar {
    height: 70px;
  }
  .cid-uAdxHLrEXt .navbar.opened {
    height: auto;
  }
  .cid-uAdxHLrEXt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAdxHLrEXt .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uAdxHLrEXt .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uAdxHLrEXt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uAdxHLrEXt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uAdxHLrEXt .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uAdxHLrEXt .mbr-section-btn {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-uAdxHLrEXt .mbr-section-btn {
    padding-left: 0;
  }
}
.cid-uAdxHLrEXt .mbr-section-btn .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.cid-uAdxHLrEXt .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uAdxHLrEXt .navbar-brand {
    margin-right: auto;
  }
  .cid-uAdxHLrEXt .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    border-radius: 4px !important;
  }
  .cid-uAdxHLrEXt .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uAdxHLrEXt .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uAdxHLrEXt .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAdxHLrEXt .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uAdxHLrEXt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uAdxHLrEXt .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uAdxHLrEXt .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uAdxHLrEXt .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAdxHLrEXt .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uAdxHLrEXt .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uAdxHLrEXt .navbar-brand,
.cid-uAdxHLrEXt .navbar-toggler,
.cid-uAdxHLrEXt .navbar-collapse {
  position: relative;
  z-index: 1;
}
.cid-uAdxHMili3 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-uAdxHMili3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdxHMili3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdxHMili3 .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-uAdxHMili3 .container {
    padding: 10px 8px;
  }
}
.cid-uAdxHMili3 .row {
  border-radius: 25px;
  background-color: #e5b762;
  padding: 100px 40px 40px;
  margin: 0;
  overflow: hidden;
  justify-content: center;
  box-shadow: inset -60px 0 30rem #fadd8a;
}
@media (max-width: 768px) {
  .cid-uAdxHMili3 .row {
    padding: 50px 10px 40px;
  }
}
.cid-uAdxHMili3 .row .card {
  padding: 0;
  justify-content: center;
}
.cid-uAdxHMili3 .image-wrapper {
  position: relative;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-uAdxHMili3 .image-wrapper {
    margin: 0 0 32px 0;
  }
}
.cid-uAdxHMili3 .image-wrapper img {
  height: 650px;
  border-radius: 25px !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uAdxHMili3 .image-wrapper img {
    height: 350px;
  }
}
.cid-uAdxHMili3 .image-wrapper .icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cid-uAdxHMili3 .image-wrapper .icon-wrapper .mbr-iconfont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  font-size: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  color: #ffffff;
  background-color: #f85f32;
  transform: rotate(-20deg);
  pointer-events: visible;
}
.cid-uAdxHMili3 .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(2) {
  left: auto;
  right: 0;
  background-color: #e354e3;
  transform: rotate(20deg);
}
.cid-uAdxHMili3 .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(3) {
  top: auto;
  bottom: 0;
  background-color: #715edb;
  transform: rotate(-20deg);
}
@media (max-width: 768px) {
  .cid-uAdxHMili3 .image-wrapper .icon-wrapper .mbr-iconfont {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}
.cid-uAdxHMili3 .content-wrapper .mbr-section-subtitle {
  opacity: .5;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uAdxHMili3 .content-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-uAdxHMili3 .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uAdxHMili3 .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAdxHMili3 .content-wrapper .mbr-section-title span {
  opacity: .8;
}
.cid-uAdxHMili3 .content-wrapper .mbr-text {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uAdxHMili3 .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uAdxHMili3 .mbr-section-title {
  color: #ffffff;
}
.cid-uAdxHMili3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAdxHMili3 .mbr-text {
  color: #000000;
}
.cid-uAdxHMili3 .mbr-section-title,
.cid-uAdxHMili3 .mbr-section-btn {
  color: #000000;
}
.cid-uAdxHXj7UW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAdxHXj7UW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdxHXj7UW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdxHXj7UW .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uAdxHXj7UW .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uAdxHXj7UW .container {
    padding: 0 24px;
  }
}
.cid-uAdxHXj7UW .row {
  justify-content: center;
}
.cid-uAdxHXj7UW .content-wrapper {
  border-radius: 40px;
  background-color: #e5b762;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uAdxHXj7UW .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uAdxHXj7UW .content-wrapper {
    padding: 32px;
  }
}
.cid-uAdxHXj7UW .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAdxHXj7UW .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-uAdxHXj7UW .mbr-section-title {
  color: #000000;
}
.cid-uAdxHXj7UW .mbr-text {
  color: #000000;
}
.cid-uAdxHYcbmt {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #e5b762;
}
.cid-uAdxHYcbmt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdxHYcbmt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdxHYcbmt .container,
.cid-uAdxHYcbmt .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uAdxHYcbmt .container,
  .cid-uAdxHYcbmt .container-fluid {
    padding: 0 20px;
  }
}
.cid-uAdxHYcbmt .row {
  position: relative;
  padding: 100px 16px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background-color: #ffffff;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAdxHYcbmt .row {
    padding: 85px 8px;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uAdxHYcbmt .map-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .cid-uAdxHYcbmt .map-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAdxHYcbmt .map-wrapper .google-map iframe {
  height: 300px;
}
@media (max-width: 992px) {
  .cid-uAdxHYcbmt .map-wrapper .google-map iframe {
    height: 250px;
  }
}
.cid-uAdxHYcbmt .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAdxHYcbmt .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAdxHYcbmt .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAdxHYcbmt .mbr-iconfont {
  font-size: 32px;
  display: block;
  margin-right: 10px;
}
.cid-uAdxHYcbmt .address-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uAdxHYcbmt .address-wrapper {
    display: block;
  }
}
.cid-uAdxHYcbmt .address-wrapper .text-wrapper {
  display: flex;
  margin-bottom: 35px;
}
@media (max-width: 992px) {
  .cid-uAdxHYcbmt .address-wrapper .text-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAdxHYcbmt .address-wrapper .text-wrapper .text-wrap .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-uAdxHYcbmt .address-wrapper .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uAdxHYcbmt .links-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uAdxHYcbmt .links-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uAdxHYcbmt .links-wrapper .links-wrap {
    margin-bottom: 20px;
  }
}
.cid-uAdxHYcbmt .links-wrapper .links-wrap a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uAdxHYcbmt .links-wrapper .links-wrap a:hover .mbr-email,
.cid-uAdxHYcbmt .links-wrapper .links-wrap a:hover .mbr-phone {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .cid-uAdxHYcbmt .links-wrapper .links-wrap a {
    margin-bottom: 20px;
  }
}
.cid-uAdxHYcbmt .links-wrapper .links-wrap a .mbr-email,
.cid-uAdxHYcbmt .links-wrapper .links-wrap a .mbr-phone {
  margin-bottom: 0;
}
.cid-uAdxHYcbmt .mbr-section-title {
  color: #000000;
}
.cid-uAdxHYcbmt .mbr-section-subtitle,
.cid-uAdxHYcbmt .mbr-iconfont {
  color: #000000;
}
.cid-uAdxHYcbmt .mbr-email {
  color: #000000;
}
.cid-uAdxHYcbmt .mbr-phone {
  color: #3d4045;
}
.cid-uAdxHZjz6F {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e5b762;
}
.cid-uAdxHZjz6F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdxHZjz6F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdxHZjz6F .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uAdxHZjz6F .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uAdxHZjz6F .container {
    padding: 0 6px;
  }
}
.cid-uAdxHZjz6F .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #fadd8a;
}
@media (max-width: 1440px) {
  .cid-uAdxHZjz6F .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .cid-uAdxHZjz6F .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .cid-uAdxHZjz6F .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .cid-uAdxHZjz6F .row {
    padding: 50px 30px;
  }
}
.cid-uAdxHZjz6F .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uAdxHZjz6F .title-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAdxHZjz6F .title-wrapper {
    padding: 0;
  }
}
.cid-uAdxHZjz6F .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uAdxHZjz6F .title-wrapper .mbr-section-title span {
  color: #009472;
}
.cid-uAdxHZjz6F .title-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uAdxHZjz6F .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAdxHZjz6F .list-wrapper {
    padding: 0;
  }
}
.cid-uAdxHZjz6F .list-wrapper .list-title {
  margin-bottom: 22px;
  opacity: .5;
}
.cid-uAdxHZjz6F .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uAdxHZjz6F .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.cid-uAdxHZjz6F .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAdxHZjz6F .list-wrapper .list .item-wrap:hover,
.cid-uAdxHZjz6F .list-wrapper .list .item-wrap:focus {
  color: #009472;
}
.cid-uAdxHZjz6F .border-wrap {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #000000;
}
.cid-uAdxHZjz6F .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
}
.cid-uAdxHZjz6F .mbr-section-title {
  color: #ffffff;
}
.cid-uAdxHZjz6F .list-title {
  color: #000000;
}
.cid-uAdxHZjz6F .list {
  color: #ffffff;
}
.cid-uAdxHZjz6F .list,
.cid-uAdxHZjz6F .item-wrap {
  color: #000000;
}
.cid-uAdxHZjz6F .mbr-section-title,
.cid-uAdxHZjz6F .mbr-section-btn {
  color: #000000;
}
.cid-uAdyyXK0vN {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uAdyyXK0vN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uAdyyXK0vN .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uAdyyXK0vN .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uAdyyXK0vN .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px !important;
}
.cid-uAdyyXK0vN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uAdyyXK0vN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uAdyyXK0vN .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
}
.cid-uAdyyXK0vN .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uAdyyXK0vN .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAdyyXK0vN .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
.cid-uAdyyXK0vN .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uAdyyXK0vN .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uAdyyXK0vN .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
  border-radius: 4px !important;
}
.cid-uAdyyXK0vN .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uAdyyXK0vN .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uAdyyXK0vN .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uAdyyXK0vN .nav-link:hover {
  color: #ed463f !important;
}
.cid-uAdyyXK0vN .navbar-logo {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uAdyyXK0vN .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uAdyyXK0vN .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 400;
}
.cid-uAdyyXK0vN .navbar-caption:hover,
.cid-uAdyyXK0vN .navbar-caption:focus {
  color: #ed463f !important;
}
@media (max-width: 767px) {
  .cid-uAdyyXK0vN .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uAdyyXK0vN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uAdyyXK0vN .menu-container {
  width: 100%;
  display: flex;
  min-height: 90px;
  padding: 10px;
  flex-wrap: nowrap;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  margin: 1rem 1rem 0;
  background-color: #ffffff;
  box-shadow: none;
  position: relative;
  border-radius: 0 !important;
}
.cid-uAdyyXK0vN .iconfont-wrapper {
  color: #404349 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uAdyyXK0vN .iconfont-wrapper:hover,
.cid-uAdyyXK0vN .iconfont-wrapper:focus {
  color: #ed463f !important;
}
.cid-uAdyyXK0vN .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  border-radius: 4px !important;
}
.cid-uAdyyXK0vN .nav-item:focus,
.cid-uAdyyXK0vN .nav-link:focus {
  outline: none;
}
.cid-uAdyyXK0vN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uAdyyXK0vN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uAdyyXK0vN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uAdyyXK0vN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uAdyyXK0vN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uAdyyXK0vN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uAdyyXK0vN .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uAdyyXK0vN .navbar.opened {
  transition: all 0.3s;
}
.cid-uAdyyXK0vN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uAdyyXK0vN .navbar .navbar-logo img {
  width: auto;
}
.cid-uAdyyXK0vN .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uAdyyXK0vN .navbar .navbar-collapse {
    position: absolute;
  }
}
.cid-uAdyyXK0vN .navbar.collapsed {
  justify-content: center;
}
.cid-uAdyyXK0vN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uAdyyXK0vN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uAdyyXK0vN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uAdyyXK0vN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uAdyyXK0vN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uAdyyXK0vN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uAdyyXK0vN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uAdyyXK0vN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uAdyyXK0vN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uAdyyXK0vN .navbar {
    min-height: 72px;
  }
  .cid-uAdyyXK0vN .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uAdyyXK0vN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uAdyyXK0vN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uAdyyXK0vN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uAdyyXK0vN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uAdyyXK0vN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uAdyyXK0vN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uAdyyXK0vN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uAdyyXK0vN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uAdyyXK0vN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uAdyyXK0vN .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uAdyyXK0vN .dropdown-item.active,
.cid-uAdyyXK0vN .dropdown-item:active {
  background-color: transparent;
}
.cid-uAdyyXK0vN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uAdyyXK0vN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uAdyyXK0vN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uAdyyXK0vN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uAdyyXK0vN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uAdyyXK0vN .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uAdyyXK0vN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uAdyyXK0vN .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uAdyyXK0vN .navbar-buttons {
    text-align: left;
  }
}
.cid-uAdyyXK0vN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uAdyyXK0vN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #404349;
}
.cid-uAdyyXK0vN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uAdyyXK0vN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAdyyXK0vN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uAdyyXK0vN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uAdyyXK0vN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAdyyXK0vN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uAdyyXK0vN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uAdyyXK0vN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uAdyyXK0vN .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uAdyyXK0vN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uAdyyXK0vN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 0;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uAdyyXK0vN .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uAdyyXK0vN .navbar {
    height: 70px;
  }
  .cid-uAdyyXK0vN .navbar.opened {
    height: auto;
  }
  .cid-uAdyyXK0vN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uAdyyXK0vN .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uAdyyXK0vN .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uAdyyXK0vN .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uAdyyXK0vN .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uAdyyXK0vN .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uAdyyXK0vN .mbr-section-btn {
  margin: -0.6rem -0.6rem;
  width: auto;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-uAdyyXK0vN .mbr-section-btn {
    padding-left: 0;
  }
}
.cid-uAdyyXK0vN .mbr-section-btn .btn {
  justify-content: center;
  width: auto !important;
  padding: 25px 15px;
  min-width: 180px;
}
.cid-uAdyyXK0vN .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uAdyyXK0vN .navbar-brand {
    margin-right: auto;
  }
  .cid-uAdyyXK0vN .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    border-radius: 4px !important;
  }
  .cid-uAdyyXK0vN .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uAdyyXK0vN .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uAdyyXK0vN .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAdyyXK0vN .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uAdyyXK0vN .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uAdyyXK0vN .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uAdyyXK0vN .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uAdyyXK0vN .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uAdyyXK0vN .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uAdyyXK0vN .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uAdyyXK0vN .navbar-brand,
.cid-uAdyyXK0vN .navbar-toggler,
.cid-uAdyyXK0vN .navbar-collapse {
  position: relative;
  z-index: 1;
}
.cid-uAdyyYV0GQ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #e2e7f8;
}
.cid-uAdyyYV0GQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdyyYV0GQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdyyYV0GQ .container-fluid {
  padding: 10px 8px;
}
@media (max-width: 992px) {
  .cid-uAdyyYV0GQ .container {
    padding: 10px 8px;
  }
}
.cid-uAdyyYV0GQ .row {
  border-radius: 25px;
  background-color: #e5b762;
  padding: 100px 40px 40px;
  margin: 0;
  overflow: hidden;
  justify-content: center;
  box-shadow: inset -60px 0 30rem #fadd8a;
}
@media (max-width: 768px) {
  .cid-uAdyyYV0GQ .row {
    padding: 50px 10px 40px;
  }
}
.cid-uAdyyYV0GQ .row .card {
  padding: 0;
  justify-content: center;
}
.cid-uAdyyYV0GQ .image-wrapper {
  position: relative;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-uAdyyYV0GQ .image-wrapper {
    margin: 0 0 32px 0;
  }
}
.cid-uAdyyYV0GQ .image-wrapper img {
  height: 650px;
  border-radius: 25px !important;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uAdyyYV0GQ .image-wrapper img {
    height: 350px;
  }
}
.cid-uAdyyYV0GQ .image-wrapper .icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cid-uAdyyYV0GQ .image-wrapper .icon-wrapper .mbr-iconfont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  font-size: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  color: #ffffff;
  background-color: #f85f32;
  transform: rotate(-20deg);
  pointer-events: visible;
}
.cid-uAdyyYV0GQ .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(2) {
  left: auto;
  right: 0;
  background-color: #e354e3;
  transform: rotate(20deg);
}
.cid-uAdyyYV0GQ .image-wrapper .icon-wrapper .mbr-iconfont:nth-child(3) {
  top: auto;
  bottom: 0;
  background-color: #715edb;
  transform: rotate(-20deg);
}
@media (max-width: 768px) {
  .cid-uAdyyYV0GQ .image-wrapper .icon-wrapper .mbr-iconfont {
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
}
.cid-uAdyyYV0GQ .content-wrapper .mbr-section-subtitle {
  opacity: .5;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uAdyyYV0GQ .content-wrapper .mbr-section-subtitle {
    margin-bottom: 32px;
  }
}
.cid-uAdyyYV0GQ .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uAdyyYV0GQ .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uAdyyYV0GQ .content-wrapper .mbr-section-title span {
  opacity: .8;
}
.cid-uAdyyYV0GQ .content-wrapper .mbr-text {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uAdyyYV0GQ .content-wrapper .mbr-section-btn {
  margin-top: 22px;
}
.cid-uAdyyYV0GQ .mbr-section-title {
  color: #ffffff;
}
.cid-uAdyyYV0GQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAdyyYV0GQ .mbr-text {
  color: #000000;
}
.cid-uAdyyYV0GQ .mbr-section-title,
.cid-uAdyyYV0GQ .mbr-section-btn {
  color: #000000;
}
.cid-uAdyz02col {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uAdyz02col .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdyz02col .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdyz02col .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uAdyz02col .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uAdyz02col .container {
    padding: 0 24px;
  }
}
.cid-uAdyz02col .row {
  justify-content: center;
}
.cid-uAdyz02col .content-wrapper {
  border-radius: 40px;
  background-color: #e5b762;
  padding: 64px;
}
@media (max-width: 992px) {
  .cid-uAdyz02col .content-wrapper {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .cid-uAdyz02col .content-wrapper {
    padding: 32px;
  }
}
.cid-uAdyz02col .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAdyz02col .content-wrapper .mbr-text {
  margin: 16px 0 0;
}
.cid-uAdyz02col .mbr-section-title {
  color: #000000;
}
.cid-uAdyz02col .mbr-text {
  color: #000000;
}
.cid-uAdyz0O2mO {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #e5b762;
}
.cid-uAdyz0O2mO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdyz0O2mO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdyz0O2mO .container,
.cid-uAdyz0O2mO .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uAdyz0O2mO .container,
  .cid-uAdyz0O2mO .container-fluid {
    padding: 0 20px;
  }
}
.cid-uAdyz0O2mO .row {
  position: relative;
  padding: 100px 16px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background-color: #ffffff;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAdyz0O2mO .row {
    padding: 85px 8px;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uAdyz0O2mO .map-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .cid-uAdyz0O2mO .map-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAdyz0O2mO .map-wrapper .google-map iframe {
  height: 300px;
}
@media (max-width: 992px) {
  .cid-uAdyz0O2mO .map-wrapper .google-map iframe {
    height: 250px;
  }
}
.cid-uAdyz0O2mO .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAdyz0O2mO .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAdyz0O2mO .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAdyz0O2mO .mbr-iconfont {
  font-size: 32px;
  display: block;
  margin-right: 10px;
}
.cid-uAdyz0O2mO .address-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uAdyz0O2mO .address-wrapper {
    display: block;
  }
}
.cid-uAdyz0O2mO .address-wrapper .text-wrapper {
  display: flex;
  margin-bottom: 35px;
}
@media (max-width: 992px) {
  .cid-uAdyz0O2mO .address-wrapper .text-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAdyz0O2mO .address-wrapper .text-wrapper .text-wrap .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-uAdyz0O2mO .address-wrapper .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uAdyz0O2mO .links-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uAdyz0O2mO .links-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uAdyz0O2mO .links-wrapper .links-wrap {
    margin-bottom: 20px;
  }
}
.cid-uAdyz0O2mO .links-wrapper .links-wrap a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uAdyz0O2mO .links-wrapper .links-wrap a:hover .mbr-email,
.cid-uAdyz0O2mO .links-wrapper .links-wrap a:hover .mbr-phone {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .cid-uAdyz0O2mO .links-wrapper .links-wrap a {
    margin-bottom: 20px;
  }
}
.cid-uAdyz0O2mO .links-wrapper .links-wrap a .mbr-email,
.cid-uAdyz0O2mO .links-wrapper .links-wrap a .mbr-phone {
  margin-bottom: 0;
}
.cid-uAdyz0O2mO .mbr-section-title {
  color: #000000;
}
.cid-uAdyz0O2mO .mbr-section-subtitle,
.cid-uAdyz0O2mO .mbr-iconfont {
  color: #000000;
}
.cid-uAdyz0O2mO .mbr-email {
  color: #000000;
}
.cid-uAdyz0O2mO .mbr-phone {
  color: #3d4045;
}
.cid-uAdyz1MBVJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e5b762;
}
.cid-uAdyz1MBVJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAdyz1MBVJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAdyz1MBVJ .container-fluid {
  padding: 0 20px;
}
@media (max-width: 992px) {
  .cid-uAdyz1MBVJ .container-fluid {
    padding: 0 6px;
  }
}
@media (max-width: 992px) {
  .cid-uAdyz1MBVJ .container {
    padding: 0 6px;
  }
}
.cid-uAdyz1MBVJ .row {
  margin: 0;
  padding: 50px 150px;
  border-radius: 20px;
  background-color: #fadd8a;
}
@media (max-width: 1440px) {
  .cid-uAdyz1MBVJ .row {
    padding: 50px 32px;
    margin: 0;
  }
}
@media (max-width: 1200px) {
  .cid-uAdyz1MBVJ .row {
    padding: 50px 8px;
  }
}
@media (max-width: 992px) {
  .cid-uAdyz1MBVJ .row {
    padding: 50px 60px;
  }
}
@media (max-width: 768px) {
  .cid-uAdyz1MBVJ .row {
    padding: 50px 30px;
  }
}
.cid-uAdyz1MBVJ .row .card {
  padding: 0;
  border-radius: 0 !important;
  overflow: visible;
}
.cid-uAdyz1MBVJ .title-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAdyz1MBVJ .title-wrapper {
    padding: 0;
  }
}
.cid-uAdyz1MBVJ .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uAdyz1MBVJ .title-wrapper .mbr-section-title span {
  color: #009472;
}
.cid-uAdyz1MBVJ .title-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uAdyz1MBVJ .list-wrapper {
  padding-right: 30px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAdyz1MBVJ .list-wrapper {
    padding: 0;
  }
}
.cid-uAdyz1MBVJ .list-wrapper .list-title {
  margin-bottom: 22px;
  opacity: .5;
}
.cid-uAdyz1MBVJ .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uAdyz1MBVJ .list-wrapper .list .item-wrap {
  margin-bottom: 22px;
  transition: all 0.3s ease-in-out;
}
.cid-uAdyz1MBVJ .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uAdyz1MBVJ .list-wrapper .list .item-wrap:hover,
.cid-uAdyz1MBVJ .list-wrapper .list .item-wrap:focus {
  color: #009472;
}
.cid-uAdyz1MBVJ .border-wrap {
  height: 1px;
  opacity: .1;
  margin-bottom: 40px;
  background-color: #000000;
}
.cid-uAdyz1MBVJ .copyright {
  opacity: .3;
  margin-bottom: 0;
  color: #000000;
}
.cid-uAdyz1MBVJ .mbr-section-title {
  color: #ffffff;
}
.cid-uAdyz1MBVJ .list-title {
  color: #000000;
}
.cid-uAdyz1MBVJ .list {
  color: #ffffff;
}
.cid-uAdyz1MBVJ .list,
.cid-uAdyz1MBVJ .item-wrap {
  color: #000000;
}
.cid-uAdyz1MBVJ .mbr-section-title,
.cid-uAdyz1MBVJ .mbr-section-btn {
  color: #000000;
}
