body {
  font-family: Frank Ruhl Libre;
}
.display-1 {
  font-family: 'Noto Serif Display', serif;
  font-size: 7.5rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 9.375rem;
}
.display-2 {
  font-family: 'Noto Serif Display', serif;
  font-size: 5rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-4 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.375rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.71875rem;
}
.display-5 {
  font-family: 'Noto Serif Display', serif;
  font-size: 2.3rem;
  line-height: 1.05;
}
.display-5 > .mbr-iconfont {
  font-size: 2.875rem;
}
.display-7 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 6rem;
  }
  .display-2 {
    font-size: 4rem;
  }
  .display-5 {
    font-size: 1.84rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 5.25rem;
    font-size: calc( 1.9100000000000001rem + (7.5 - 1.9100000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (1.9100000000000001rem + (7.5 - 1.9100000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.5rem;
    font-size: calc( 1.56rem + (5 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (1.56rem + (5 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.1rem;
    font-size: calc( 1.09375rem + (1.375 - 1.09375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.09375rem + (1.375 - 1.09375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.61rem;
    font-size: calc( 1.195rem + (2.3 - 1.195) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.05 * (1.195rem + (2.3 - 1.195) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.03125rem + (1.125 - 1.03125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.03125rem + (1.125 - 1.03125) * ((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: #b84358 !important;
}
.bg-success {
  background-color: #7f9c26 !important;
}
.bg-info {
  background-color: #bf9341 !important;
}
.bg-warning {
  background-color: #0f2051 !important;
}
.bg-danger {
  background-color: #73091c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #b84358 !important;
  border-color: #b84358 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #782c3a !important;
  border-color: #782c3a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #782c3a !important;
  border-color: #782c3a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3c4e84 !important;
  border-color: #3c4e84 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #212b48 !important;
  border-color: #212b48 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #212b48 !important;
  border-color: #212b48 !important;
}
.btn-info,
.btn-info:active {
  background-color: #bf9341 !important;
  border-color: #bf9341 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #7f612b !important;
  border-color: #7f612b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #7f612b !important;
  border-color: #7f612b !important;
}
.btn-success,
.btn-success:active {
  background-color: #7f9c26 !important;
  border-color: #7f9c26 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #465615 !important;
  border-color: #465615 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #465615 !important;
  border-color: #465615 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #0f2051 !important;
  border-color: #0f2051 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #010308 !important;
  border-color: #010308 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #010308 !important;
  border-color: #010308 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #73091c !important;
  border-color: #73091c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #230308 !important;
  border-color: #230308 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #230308 !important;
  border-color: #230308 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  color: #b84358;
  border-color: transparent;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  box-shadow: none!important;
  border-color: transparent!important;
  color: #782c3a !important;
  background-color: transparent!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #b84358 !important;
  border-color: #b84358 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  color: #3c4e84;
  border-color: transparent;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  box-shadow: none!important;
  border-color: transparent!important;
  color: #212b48 !important;
  background-color: transparent!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3c4e84 !important;
  border-color: #3c4e84 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  color: #bf9341;
  border-color: transparent;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  box-shadow: none!important;
  border-color: transparent!important;
  color: #7f612b !important;
  background-color: transparent!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #bf9341 !important;
  border-color: #bf9341 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  color: #7f9c26;
  border-color: transparent;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  box-shadow: none!important;
  border-color: transparent!important;
  color: #465615 !important;
  background-color: transparent!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #7f9c26 !important;
  border-color: #7f9c26 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  color: #0f2051;
  border-color: transparent;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  box-shadow: none!important;
  border-color: transparent!important;
  color: #010308 !important;
  background-color: transparent!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #0f2051 !important;
  border-color: #0f2051 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  color: #73091c;
  border-color: transparent;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  box-shadow: none!important;
  border-color: transparent!important;
  color: #230308 !important;
  background-color: transparent!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #73091c !important;
  border-color: #73091c !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  color: #232323;
  border-color: transparent;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  box-shadow: none!important;
  border-color: transparent!important;
  color: #000000 !important;
  background-color: transparent!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  color: #fafafa;
  border-color: transparent;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  box-shadow: none!important;
  border-color: transparent!important;
  color: #cfcfcf !important;
  background-color: transparent!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #b84358 !important;
}
.text-secondary {
  color: #3c4e84 !important;
}
.text-success {
  color: #7f9c26 !important;
}
.text-info {
  color: #bf9341 !important;
}
.text-warning {
  color: #0f2051 !important;
}
.text-danger {
  color: #73091c !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #6d2834 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #1c253e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #3c4a12 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #735927 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #140205 !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: #b84358;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #bf9341;
}
.alert-warning {
  background-color: #0f2051;
}
.alert-danger {
  background-color: #73091c;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #b84358;
  border-color: #b84358;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #b84358;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #dc9faa;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #beda67;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dfc9a0;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #6384e2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e91239;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Barlow', sans-serif;
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.71875rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #b84358 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Barlow', sans-serif;
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.71875rem;
}
blockquote {
  border-color: #b84358;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #b84358;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #b84358;
}
.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: #b84358;
  border-bottom-color: #b84358;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #b84358 !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: #3c4e84 !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='%23b84358' %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: .2s;
}
a:hover {
  background-image: none !important;
}
.container,
.container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1399px) {
  .container,
  .container-fluid {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (max-width: 1199px) {
  .container,
  .container-fluid {
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media (max-width: 1199px) {
  .container,
  .container-fluid {
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media (max-width: 991px) {
  .container,
  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .container,
  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .container,
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.container {
  max-width: 1400px;
  margin: 0 auto;
}
.row {
  margin-left: -50px;
  margin-right: -50px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 1399px) {
  .row {
    margin-left: -45px;
    margin-right: -45px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media (max-width: 1199px) {
  .row {
    margin-left: -36px;
    margin-right: -36px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 36px;
    padding-right: 36px;
  }
}
@media (max-width: 991px) {
  .row {
    margin-left: -40px;
    margin-right: -40px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .row {
    margin-left: -30px;
    margin-right: -30px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .row {
    margin-left: -20px;
    margin-right: -20px;
    justify-content: center;
  }
  .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.row {
  justify-content: center;
}
.mbr-section-btn .btn {
  min-width: 100px;
  min-height: 50px;
  padding: 15px 33px;
  font-weight: 500;
  line-height: 1 !important;
  transition-duration: .2s;
  box-shadow: none !important;
  border-radius: 25px !important;
  overflow: hidden !important;
}
.mbr-section-btn .btn .mbr-iconfont {
  transition: .5s all;
}
.mbr-section-btn .btn:hover .mbr-iconfont {
  transform: translateX(4px);
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    padding: 12px 24px;
    min-width: auto !important;
  }
}
.cid-uBbSWN4D02 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px !important;
}
.cid-uBbSWN4D02 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBbSWN4D02 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBbSWN4D02 .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
.cid-uBbSWN4D02 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uBbSWN4D02 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uBbSWN4D02 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uBbSWN4D02 .nav-link:hover {
  color: #ffffff !important;
}
.cid-uBbSWN4D02 .nav-link:hover::before {
  width: 100%;
}
.cid-uBbSWN4D02 .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uBbSWN4D02 .navbar-logo {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uBbSWN4D02 .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uBbSWN4D02 .container {
  width: 95%;
  display: flex;
  height: 90px;
  padding: 20px 50px;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.1) !important;
  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-top: 1rem;
  background-color: #000000;
  box-shadow: none;
  border: 1px solid #1a2229;
  position: relative;
}
.cid-uBbSWN4D02 .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .container {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .container {
    width: 95%;
    height: 56px !important;
    padding: 20px;
    margin-top: 0rem;
  }
}
.cid-uBbSWN4D02 .iconfont-wrapper {
  color: #ded7cd !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBbSWN4D02 .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: #000000;
  background: rgba(0, 0, 0, 0.1) !important;
}
.cid-uBbSWN4D02 .nav-item:focus,
.cid-uBbSWN4D02 .nav-link:focus {
  outline: none;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBbSWN4D02 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBbSWN4D02 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar.opened {
  transition: all 0.3s;
}
.cid-uBbSWN4D02 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBbSWN4D02 .navbar .navbar-logo img {
  width: auto;
}
.cid-uBbSWN4D02 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .navbar .navbar-collapse {
    position: absolute;
  }
}
.cid-uBbSWN4D02 .navbar.collapsed {
  justify-content: center;
}
.cid-uBbSWN4D02 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBbSWN4D02 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBbSWN4D02 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .navbar {
    min-height: 72px;
  }
  .cid-uBbSWN4D02 .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uBbSWN4D02 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBbSWN4D02 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBbSWN4D02 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBbSWN4D02 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBbSWN4D02 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uBbSWN4D02 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBbSWN4D02 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBbSWN4D02 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uBbSWN4D02 .dropdown-item.active,
.cid-uBbSWN4D02 .dropdown-item:active {
  background-color: transparent;
}
.cid-uBbSWN4D02 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBbSWN4D02 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uBbSWN4D02 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uBbSWN4D02 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uBbSWN4D02 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBbSWN4D02 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .navbar-buttons {
    text-align: left;
  }
}
.cid-uBbSWN4D02 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uBbSWN4D02 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBbSWN4D02 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uBbSWN4D02 .navbar {
    height: 70px;
  }
  .cid-uBbSWN4D02 .navbar.opened {
    height: auto;
  }
  .cid-uBbSWN4D02 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uBbSWN4D02 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uBbSWN4D02 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uBbSWN4D02 .navbar-brand {
    margin-right: auto;
  }
  .cid-uBbSWN4D02 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.1) !important;
    background: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uBbSWN4D02 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uBbSWN4D02 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uBbSWN4D02 .navbar-brand,
.cid-uBbSWN4D02 .navbar-toggler,
.cid-uBbSWN4D02 .navbar-collapse {
  position: relative;
  z-index: 1;
}
.cid-te1PBT0uR9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-te1PBT0uR9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-te1PBT0uR9 .container {
  max-width: 900px;
}
.cid-te1PBT0uR9 .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.cid-te1PBT0uR9 .item-container {
  width: 100%;
}
.cid-te1PBT0uR9 .mbr-section-title {
  color: #192732;
}
@media (max-width: 991px) {
  .cid-te1PBT0uR9 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-te1PBT0uR9 .mbr-text {
  color: #ffffff;
  margin-top: 8px;
  text-align: right;
}
@media (max-width: 991px) {
  .cid-te1PBT0uR9 .mbr-text {
    width: 100%;
    text-align: center !important;
  }
}
.cid-te1PBT0uR9 .item-container-2 {
  padding-left: 56px;
}
@media (max-width: 991px) {
  .cid-te1PBT0uR9 .item-container-2 {
    padding-left: 0;
  }
}
.cid-te1PBT0uR9 .mbr-section-title-1 {
  color: #ded7cd;
}
.cid-te1PBT0uR9 .mbr-section-title-2 {
  color: #ded7cd;
}
.cid-te1PBT0uR9 .mbr-section-title-4 {
  color: #ded7cd;
}
.cid-te1R8p6MA3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #1a2229;
}
.cid-te1R8p6MA3 .container {
  max-width: 1600px;
}
.cid-te1R8p6MA3 .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 100px 0;
  border: 1px solid rgba(191, 147, 65, 0.2);
}
.cid-te1R8p6MA3 .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-te1R8p6MA3 .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-te1R8p6MA3 .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-te1R8p6MA3 .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-te1R8p6MA3 .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #1a2229;
  border-color: rgba(191, 147, 65, 0.2);
}
@media (max-width: 991px) {
  .cid-te1R8p6MA3 .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-te1R8p6MA3 .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-te1R8p6MA3 .border-frame {
    width: 7%;
  }
}
.cid-te1R8p6MA3 .content-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 770px;
}
@media (max-width: 991px) {
  .cid-te1R8p6MA3 .content-container {
    min-height: auto;
  }
}
.cid-te1R8p6MA3 .img-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  max-width: 575px;
  z-index: 4;
  border: 1px dashed rgba(191, 147, 65, 0.2);
  padding: 22px;
  border-radius: 100rem;
}
@media (max-width: 991px) {
  .cid-te1R8p6MA3 .img-container {
    position: static;
    transform: translate(0, 0);
    max-width: 60%;
    margin: 0 auto 72px;
    padding: 3%;
  }
}
.cid-te1R8p6MA3 .image-wrapper {
  height: 100%;
  width: 100%;
  border-radius: 100rem;
  overflow: hidden;
  opacity: 0.6;
}
@media (max-width: 991px) {
  .cid-te1R8p6MA3 .image-wrapper {
    opacity: 1;
  }
}
.cid-te1R8p6MA3 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-te1R8p6MA3 .text-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 658px;
  padding: 30px 0;
}
@media (max-width: 991px) {
  .cid-te1R8p6MA3 .text-container {
    max-width: 80%;
    padding: 0;
  }
}
.cid-te1R8p6MA3 .text-wrapper {
  width: 100%;
}
.cid-te1R8p6MA3 .mbr-text {
  color: #ffffff;
  width: 100%;
  max-width: 422px;
  margin: 0 auto 118px;
}
@media (max-width: 991px) {
  .cid-te1R8p6MA3 .mbr-text {
    margin-bottom: 0;
    padding-bottom: 18%;
  }
}
.cid-te1R8p6MA3 .card-title {
  color: #ded7cd;
  margin-bottom: 0;
}
.cid-uAMsCrPalu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ded7cd;
}
.cid-uAMsCrPalu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMsCrPalu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMsCrPalu .container {
  max-width: 1600px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uAMsCrPalu .container {
    max-width: 80%;
  }
}
.cid-uAMsCrPalu .content-container {
  display: flex;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-uAMsCrPalu .content-container {
    flex-wrap: wrap;
  }
}
.cid-uAMsCrPalu .text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 30%;
}
@media (max-width: 991px) {
  .cid-uAMsCrPalu .text-container {
    width: 100%;
  }
}
.cid-uAMsCrPalu .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uAMsCrPalu .card-box {
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .cid-uAMsCrPalu .card-box {
    margin-bottom: 40px;
  }
}
.cid-uAMsCrPalu .card-title {
  width: 100%;
  color: #192732;
}
.cid-uAMsCrPalu .mbr-text {
  color: #192732;
  padding: 60px 0 0 23%;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uAMsCrPalu .mbr-text {
    padding: 44px 0 0 13%;
    max-width: 56%;
  }
}
@media (max-width: 575px) {
  .cid-uAMsCrPalu .mbr-text {
    max-width: 100%;
    padding-left: 0;
  }
}
.cid-uAMsCrPalu .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-uAMsCrPalu .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uAMsCrPalu .btn-primary-outline {
  color: #192732;
}
.cid-uAMsCrPalu .img-container {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uAMsCrPalu .img-container {
    width: 100%;
  }
}
.cid-uAMsCrPalu .image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-uAMsCrPalu .image-wrapper img {
  object-fit: cover;
}
.cid-uAMsCrPalu .image-wrapper-1 {
  margin-bottom: 32px;
}
.cid-uAMsCrPalu .image-wrapper-1 img {
  width: 32%;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-uAMsCrPalu .image-wrapper-1 img {
    width: 41%;
  }
}
@media (max-width: 991px) {
  .cid-uAMsCrPalu .image-wrapper-1 {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .cid-uAMsCrPalu .image-wrapper-1 {
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .cid-uAMsCrPalu .image-wrapper-1 {
    margin-bottom: 40px;
  }
}
.cid-uAMsCrPalu .image-wrapper-2 img {
  width: 83%;
  padding-left: 23.5%;
}
@media (max-width: 991px) {
  .cid-uAMsCrPalu .image-wrapper-2 img {
    width: 80%;
    padding-left: 0;
    margin-right: auto;
  }
}
.cid-uB2qffhhVq {
  padding-top: 4rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uB2qffhhVq .wrapper {
    padding: 0 28px;
  }
}
.cid-uB2qffhhVq .mbr-section-head {
  margin-bottom: 210px;
}
@media (min-width: 992px) {
  .cid-uB2qffhhVq .mbr-section-head {
    margin-bottom: 268px;
  }
}
@media (min-width: 1400px) {
  .cid-uB2qffhhVq .image-wrapper {
    height: 385px;
  }
}
@media (max-width: 767px) {
  .cid-uB2qffhhVq .image-wrapper {
    margin-top: 2rem;
  }
}
.cid-uB2qffhhVq .image-wrapper img {
  max-height: 385px;
  width: 100%;
  object-fit: cover;
}
.cid-uB2qffhhVq .timeline-element {
  position: relative;
}
.cid-uB2qffhhVq .timeline-element:after {
  content: "";
  position: absolute;
  background-color: #727272;
  width: 3px;
}
@media (max-width: 767px) {
  .cid-uB2qffhhVq .timeline-element:after {
    height: calc(100% + 40px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-uB2qffhhVq .timeline-element:after {
    height: calc(100% + 35px);
    top: 28px;
    left: 50%;
  }
}
.cid-uB2qffhhVq .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-uB2qffhhVq .reverse {
  flex-direction: row-reverse;
}
@media (min-width: 768px) {
  .cid-uB2qffhhVq .right {
    margin-right: 4rem;
  }
  .cid-uB2qffhhVq .left {
    margin-left: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uB2qffhhVq .image-wrapper,
  .cid-uB2qffhhVq .timeline-text-wrapper {
    margin-left: 4rem;
  }
}
.cid-uB2qffhhVq .iconBackground {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid #727272;
  background-color: #727272;
  margin-left: -5px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-uB2qffhhVq .iconBackground {
    left: 15px;
    top: 40px;
  }
}
@media (min-width: 768px) {
  .cid-uB2qffhhVq .iconBackground {
    top: 15px;
    left: 50%;
  }
}
.cid-uB2qffhhVq .timeline-text-wrapper {
  padding-top: 20px;
}
.cid-uB2qffhhVq .mbr-timeline-date {
  color: #bf9341;
}
.cid-te1RwWnlX7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ded7cd;
}
.cid-te1RwWnlX7 .row {
  justify-content: center;
}
.cid-te1RwWnlX7 .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  border: 1px solid #bf9341;
}
.cid-te1RwWnlX7 .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-te1RwWnlX7 .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-te1RwWnlX7 .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-te1RwWnlX7 .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-te1RwWnlX7 .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #ded7cd;
  border-color: #bf9341;
}
@media (max-width: 991px) {
  .cid-te1RwWnlX7 .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-te1RwWnlX7 .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-te1RwWnlX7 .border-frame {
    width: 7%;
  }
}
.cid-te1RwWnlX7 .content-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-te1RwWnlX7 .col-video {
  display: flex;
  overflow: hidden;
}
.cid-te1RwWnlX7 .col-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .cid-te1RwWnlX7 .col-video {
    height: 620px;
  }
}
.cid-te1RwWnlX7 .col-video .box {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cid-te1RwWnlX7 .col-video .link-container {
  display: flex;
  margin-bottom: 2rem;
}
.cid-te1RwWnlX7 .col-video .link {
  margin-right: 1rem;
}
.cid-te1RwWnlX7 .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.cid-te1RwWnlX7 .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-te1RwWnlX7 .mbr-media {
  position: relative;
}
.cid-te1RwWnlX7 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-te1RwWnlX7 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: all .3s;
}
.cid-te1RwWnlX7 .icon-wrap:hover {
  transform: translate(-50%, -50%);
}
.cid-te1RwWnlX7 .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-te1RwWnlX7 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-te1RwWnlX7 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-te1RwWnlX7 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-te1RwWnlX7 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-te1RwWnlX7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-te1RwWnlX7 a:hover {
  text-decoration-line: none !important;
}
.cid-te1S2NTQgd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bf9341;
  position: relative;
  overflow: hidden;
}
.cid-te1S2NTQgd .container {
  max-width: 920px;
}
.cid-te1S2NTQgd .border-container {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 80px 60px;
  background-color: #bf9341;
  border: 1px solid rgba(26, 34, 41, 0.2);
}
@media (max-width: 991px) {
  .cid-te1S2NTQgd .border-container {
    padding: 7% 5%;
  }
}
@media (max-width: 767px) {
  .cid-te1S2NTQgd .border-container {
    padding: 8% 6%;
  }
}
@media (max-width: 575px) {
  .cid-te1S2NTQgd .border-container {
    padding: 9% 7%;
  }
}
.cid-te1S2NTQgd .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-te1S2NTQgd .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-te1S2NTQgd .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-te1S2NTQgd .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-te1S2NTQgd .border-frame {
  position: absolute;
  z-index: 5;
  width: 60px;
  aspect-ratio: 1;
  background-color: #bf9341;
  border-color: rgba(26, 34, 41, 0.2);
}
@media (max-width: 991px) {
  .cid-te1S2NTQgd .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-te1S2NTQgd .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-te1S2NTQgd .border-frame {
    width: 7%;
  }
}
.cid-te1S2NTQgd .content-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-te1S2NTQgd .content-container {
    min-height: auto;
  }
}
.cid-te1S2NTQgd .text-container {
  width: 100%;
}
.cid-te1S2NTQgd .text-wrapper {
  width: 100%;
}
.cid-te1S2NTQgd .mbr-text {
  color: #1a2229;
  width: 100%;
  margin: 0;
}
.cid-te1S2NTQgd .card-title {
  color: #1a2229;
  width: 100%;
  margin-bottom: 28px !important;
}
.cid-te1S2NTQgd .mbr-section-btn {
  margin-top: 28px;
}
.cid-te1S2NTQgd .line-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 0 50% 0;
  height: 1px;
  width: 1000%;
  background-color: rgba(26, 34, 41, 0.2);
}
.cid-te1S2NTQgd .line-frame-1 {
  transform: rotate(30deg) translate(-50%, -50%);
}
.cid-te1S2NTQgd .line-frame-2 {
  transform: rotate(60deg) translate(-50%, -50%);
}
.cid-te1S2NTQgd .line-frame-3 {
  transform: rotate(90deg) translate(-50%, -50%);
}
.cid-te1S2NTQgd .line-frame-4 {
  transform: rotate(120deg) translate(-50%, -50%);
}
.cid-te1S2NTQgd .line-frame-5 {
  transform: rotate(150deg) translate(-50%, -50%);
}
.cid-uAMzxkMcPR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
}
.cid-uAMzxkMcPR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMzxkMcPR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMzxkMcPR .row {
  justify-content: left;
}
.cid-uAMzxkMcPR .main-col {
  display: flex;
}
.cid-uAMzxkMcPR .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 1050px;
}
.cid-uAMzxkMcPR .item-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .cid-uAMzxkMcPR .item-container {
    flex-wrap: wrap;
  }
}
.cid-uAMzxkMcPR .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 40px;
  width: 120px;
}
@media (max-width: 991px) {
  .cid-uAMzxkMcPR .item-img {
    display: none;
  }
}
.cid-uAMzxkMcPR .item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uAMzxkMcPR .mbr-section-title {
  color: #BF9341;
  flex-grow: 1;
  word-wrap: break-word;
}
@media (max-width: 991px) {
  .cid-uAMzxkMcPR .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uAMzxkMcPR .mbr-text {
  color: #BF9341;
}
@media (max-width: 991px) {
  .cid-uAMzxkMcPR .mbr-text {
    width: 100%;
    text-align: center !important;
  }
}
.cid-uAMzxkMcPR .mbr-text-2 {
  margin-left: 40px;
}
@media (max-width: 991px) {
  .cid-uAMzxkMcPR .mbr-text-2 {
    margin: 0;
  }
}
.cid-uAMzxkMcPR .item-container-2 {
  align-items: center;
  justify-content: center !important;
}
.cid-uAMzxkMcPR .item-container-2 .mbr-section-title {
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uAMzxkMcPR .item-container-2 {
    flex-wrap: nowrap;
  }
}
.cid-uAMzxkMcPR .item-container-4 {
  justify-content: center !important;
}
.cid-uAMzxkMcPR .item-container-4 .mbr-section-title {
  flex-grow: 0;
}
@media (min-width: 992px) {
  .cid-uAMzxkMcPR .item-container-4 .mbr-section-title {
    white-space: nowrap;
  }
}
@media (max-width: 991px) {
  .cid-uAMzxkMcPR .item-container-4 {
    justify-content: center !important;
  }
}
.cid-uAMzxkMcPR .mbr-section-title-1 {
  color: #ded7cd;
}
.cid-uAYHe2n5Vs {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/273806127-5189985621036363-8472607106404572159-n-1831x831.jpg");
}
.cid-uAYHe2n5Vs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAYHe2n5Vs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uAYHe2n5Vs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uAYHe2n5Vs .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uAYHe2n5Vs .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uAYHe2n5Vs .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uAYHe2n5Vs .mbr-section-title {
  color: #ffffff;
}
.cid-uAYHe2n5Vs .mbr-text,
.cid-uAYHe2n5Vs .mbr-section-btn {
  color: #ffffff;
}
.cid-uAYIb057QI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f2ef;
  position: relative;
  overflow: hidden;
}
.cid-uAYIb057QI .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uAYIb057QI .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 224px;
  max-width: 224px;
}
@media (max-width: 767px) {
  .cid-uAYIb057QI .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uAYIb057QI .embla__slide:nth-child(2n) .slide-content .item-wrapper .item-img img {
  height: 280px;
}
.cid-uAYIb057QI .embla__slide:nth-child(3n) .slide-content .item-wrapper .item-img img {
  height: 330px;
}
.cid-uAYIb057QI .embla__slide .slide-content {
  width: 100%;
}
.cid-uAYIb057QI .embla__slide .slide-content .item-wrapper .item-img img {
  height: 170px;
  width: 100%;
  object-fit: cover;
  border: 1px solid #150764;
}
.cid-uAYIb057QI .embla__button--next,
.cid-uAYIb057QI .embla__button--prev {
  display: flex;
}
.cid-uAYIb057QI .embla__button {
  bottom: 0;
  width: 54px;
  height: 43px;
  font-size: 16px;
  background-color: #ffffff !important;
  color: #150764 !important;
  border: 2px solid #150764 !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  box-shadow: 4px 3px #150764;
  display: none;
}
.cid-uAYIb057QI .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAYIb057QI .embla__button:hover {
  background-color: #4188ff !important;
}
.cid-uAYIb057QI .embla__button.embla__button--prev {
  right: 100px;
}
@media (max-width: 992px) {
  .cid-uAYIb057QI .embla__button.embla__button--prev {
    right: 80px;
  }
}
.cid-uAYIb057QI .embla__button.embla__button--next {
  right: 24px;
}
@media (max-width: 992px) {
  .cid-uAYIb057QI .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-uAYIb057QI .embla {
  position: relative;
  width: 100%;
}
.cid-uAYIb057QI .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uAYIb057QI .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAYIb057QI .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAYIb057QI .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAYIb057QI .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uAYMUJCDoW {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/2022-09-18-1360x765.jpg");
}
.cid-uAYMUJCDoW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAYMUJCDoW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uAYMUJCDoW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uAYMUJCDoW .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uAYMUJCDoW .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uAYMUJCDoW .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uAYMUJCDoW .mbr-section-title {
  color: #ffffff;
}
.cid-uAYMUJCDoW .mbr-text,
.cid-uAYMUJCDoW .mbr-section-btn {
  color: #ffffff;
}
.cid-uAYNGNzVT6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f2ef;
  position: relative;
  overflow: hidden;
}
.cid-uAYNGNzVT6 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uAYNGNzVT6 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 224px;
  max-width: 224px;
}
@media (max-width: 767px) {
  .cid-uAYNGNzVT6 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uAYNGNzVT6 .embla__slide:nth-child(2n) .slide-content .item-wrapper .item-img img {
  height: 280px;
}
.cid-uAYNGNzVT6 .embla__slide:nth-child(3n) .slide-content .item-wrapper .item-img img {
  height: 330px;
}
.cid-uAYNGNzVT6 .embla__slide .slide-content {
  width: 100%;
}
.cid-uAYNGNzVT6 .embla__slide .slide-content .item-wrapper .item-img img {
  height: 170px;
  width: 100%;
  object-fit: cover;
  border: 1px solid #150764;
}
.cid-uAYNGNzVT6 .embla__button--next,
.cid-uAYNGNzVT6 .embla__button--prev {
  display: flex;
}
.cid-uAYNGNzVT6 .embla__button {
  bottom: 0;
  width: 54px;
  height: 43px;
  font-size: 16px;
  background-color: #ffffff !important;
  color: #150764 !important;
  border: 2px solid #150764 !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  box-shadow: 4px 3px #150764;
  display: none;
}
.cid-uAYNGNzVT6 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uAYNGNzVT6 .embla__button:hover {
  background-color: #4188ff !important;
}
.cid-uAYNGNzVT6 .embla__button.embla__button--prev {
  right: 100px;
}
@media (max-width: 992px) {
  .cid-uAYNGNzVT6 .embla__button.embla__button--prev {
    right: 80px;
  }
}
.cid-uAYNGNzVT6 .embla__button.embla__button--next {
  right: 24px;
}
@media (max-width: 992px) {
  .cid-uAYNGNzVT6 .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-uAYNGNzVT6 .embla {
  position: relative;
  width: 100%;
}
.cid-uAYNGNzVT6 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uAYNGNzVT6 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uAYNGNzVT6 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uAYNGNzVT6 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uAYNGNzVT6 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uB22cQwI3u {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/dsc06522-680x453.jpg");
}
.cid-uB22cQwI3u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB22cQwI3u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uB22cQwI3u .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uB22cQwI3u .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uB22cQwI3u .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uB22cQwI3u .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uB22cQwI3u .mbr-section-title {
  color: #ffffff;
}
.cid-uB22cQwI3u .mbr-text,
.cid-uB22cQwI3u .mbr-section-btn {
  color: #ffffff;
}
.cid-uB22eawCPH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f2ef;
  position: relative;
  overflow: hidden;
}
.cid-uB22eawCPH .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uB22eawCPH .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 224px;
  max-width: 224px;
}
@media (max-width: 767px) {
  .cid-uB22eawCPH .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uB22eawCPH .embla__slide:nth-child(2n) .slide-content .item-wrapper .item-img img {
  height: 280px;
}
.cid-uB22eawCPH .embla__slide:nth-child(3n) .slide-content .item-wrapper .item-img img {
  height: 330px;
}
.cid-uB22eawCPH .embla__slide .slide-content {
  width: 100%;
}
.cid-uB22eawCPH .embla__slide .slide-content .item-wrapper .item-img img {
  height: 170px;
  width: 100%;
  object-fit: cover;
  border: 1px solid #150764;
}
.cid-uB22eawCPH .embla__button--next,
.cid-uB22eawCPH .embla__button--prev {
  display: flex;
}
.cid-uB22eawCPH .embla__button {
  bottom: 0;
  width: 54px;
  height: 43px;
  font-size: 16px;
  background-color: #ffffff !important;
  color: #150764 !important;
  border: 2px solid #150764 !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  box-shadow: 4px 3px #150764;
  display: none;
}
.cid-uB22eawCPH .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uB22eawCPH .embla__button:hover {
  background-color: #4188ff !important;
}
.cid-uB22eawCPH .embla__button.embla__button--prev {
  right: 100px;
}
@media (max-width: 992px) {
  .cid-uB22eawCPH .embla__button.embla__button--prev {
    right: 80px;
  }
}
.cid-uB22eawCPH .embla__button.embla__button--next {
  right: 24px;
}
@media (max-width: 992px) {
  .cid-uB22eawCPH .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-uB22eawCPH .embla {
  position: relative;
  width: 100%;
}
.cid-uB22eawCPH .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uB22eawCPH .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uB22eawCPH .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uB22eawCPH .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uB22eawCPH .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uB26sXtEXC {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/06-1920x1280.jpg");
}
.cid-uB26sXtEXC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB26sXtEXC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uB26sXtEXC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uB26sXtEXC .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uB26sXtEXC .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uB26sXtEXC .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uB26sXtEXC .mbr-section-title {
  color: #ffffff;
}
.cid-uB26sXtEXC .mbr-text,
.cid-uB26sXtEXC .mbr-section-btn {
  color: #ffffff;
}
.cid-uB26u96xrk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f2ef;
  position: relative;
  overflow: hidden;
}
.cid-uB26u96xrk .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uB26u96xrk .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 224px;
  max-width: 224px;
}
@media (max-width: 767px) {
  .cid-uB26u96xrk .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uB26u96xrk .embla__slide:nth-child(2n) .slide-content .item-wrapper .item-img img {
  height: 280px;
}
.cid-uB26u96xrk .embla__slide:nth-child(3n) .slide-content .item-wrapper .item-img img {
  height: 330px;
}
.cid-uB26u96xrk .embla__slide .slide-content {
  width: 100%;
}
.cid-uB26u96xrk .embla__slide .slide-content .item-wrapper .item-img img {
  height: 170px;
  width: 100%;
  object-fit: cover;
  border: 1px solid #150764;
}
.cid-uB26u96xrk .embla__button--next,
.cid-uB26u96xrk .embla__button--prev {
  display: flex;
}
.cid-uB26u96xrk .embla__button {
  bottom: 0;
  width: 54px;
  height: 43px;
  font-size: 16px;
  background-color: #ffffff !important;
  color: #150764 !important;
  border: 2px solid #150764 !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  box-shadow: 4px 3px #150764;
  display: none;
}
.cid-uB26u96xrk .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uB26u96xrk .embla__button:hover {
  background-color: #4188ff !important;
}
.cid-uB26u96xrk .embla__button.embla__button--prev {
  right: 100px;
}
@media (max-width: 992px) {
  .cid-uB26u96xrk .embla__button.embla__button--prev {
    right: 80px;
  }
}
.cid-uB26u96xrk .embla__button.embla__button--next {
  right: 24px;
}
@media (max-width: 992px) {
  .cid-uB26u96xrk .embla__button.embla__button--next {
    right: 0;
  }
}
.cid-uB26u96xrk .embla {
  position: relative;
  width: 100%;
}
.cid-uB26u96xrk .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uB26u96xrk .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uB26u96xrk .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uB26u96xrk .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uB26u96xrk .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uB2fGrfAF3 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ded7cd;
}
.cid-uB2fGrfAF3 .carousel {
  z-index: 2;
  position: relative;
}
.cid-uB2fGrfAF3 .big-icon {
  position: absolute;
  top: 1rem;
  left: 50%;
  right: 50;
  font-size: 12rem;
  transform: translate(-50%, -50%);
  z-index: 0;
  color: #cebfaf;
  opacity: 0.5;
}
.cid-uB2fGrfAF3 .user {
  padding: 0 !important;
}
.cid-uB2fGrfAF3 .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-uB2fGrfAF3 .carousel-item {
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uB2fGrfAF3 .carousel-item.active,
.cid-uB2fGrfAF3 .carousel-item-next,
.cid-uB2fGrfAF3 .carousel-item-prev {
  display: flex;
}
.cid-uB2fGrfAF3 .user_name {
  margin: 0;
}
.cid-uB2fGrfAF3 .carousel-controls a {
  font-size: 2rem;
}
.cid-uB2fGrfAF3 .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #192732;
  background: transparent;
  opacity: 0.5;
}
.cid-uB2fGrfAF3 .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-uB2fGrfAF3 ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-uB2fGrfAF3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: auto 7px;
  border: none;
  background: #192732;
  transition: all 0.3s;
  border-radius: 50%;
  opacity: 0.5;
}
.cid-uB2fGrfAF3 .carousel-indicators li:hover {
  opacity: 1;
}
.cid-uB2fGrfAF3 .carousel-indicators .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}
.cid-uB2fGrfAF3 .user_text {
  color: #1a2229;
}
.cid-uB2fGrfAF3 .user_desk {
  color: #353535;
}
.cid-uB2fGrfAF3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB2fGrfAF3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMzqTJmX7 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1a2229;
  overflow: hidden;
}
.cid-uAMzqTJmX7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAMzqTJmX7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAMzqTJmX7 .row {
  justify-content: left;
}
.cid-uAMzqTJmX7 .content-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding: 80px 10%;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-uAMzqTJmX7 .content-container {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .cid-uAMzqTJmX7 .content-container {
    flex-wrap: wrap;
    padding: 40px 0;
  }
}
.cid-uAMzqTJmX7 .line-frame {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.cid-uAMzqTJmX7 .line-frame-1 {
  top: calc(100% - 11px);
}
.cid-uAMzqTJmX7 .line-frame-2 {
  bottom: calc(100% - 11px);
}
.cid-uAMzqTJmX7 .point-frame {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 3px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
}
.cid-uAMzqTJmX7 .point-frame-1 {
  top: 19px;
}
.cid-uAMzqTJmX7 .point-frame-2 {
  bottom: 19px;
}
.cid-uAMzqTJmX7 .title-container {
  width: 60%;
  padding: 0 80px 0 0;
}
@media (max-width: 991px) {
  .cid-uAMzqTJmX7 .title-container {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 767px) {
  .cid-uAMzqTJmX7 .title-container {
    width: 100%;
    padding: 0;
  }
}
.cid-uAMzqTJmX7 .text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 40%;
  padding: 0 0 0 80px;
}
@media (max-width: 991px) {
  .cid-uAMzqTJmX7 .text-container {
    padding: 0 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uAMzqTJmX7 .text-container {
    width: 100%;
    padding: 32px 0 0 0;
  }
}
.cid-uAMzqTJmX7 .item-container {
  width: 100%;
}
.cid-uAMzqTJmX7 .mbr-section-title {
  color: #BF9341;
  width: 100%;
}
.cid-uAMzqTJmX7 .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-uAMzqTJmX7 .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .cid-uAMzqTJmX7 .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uB2nIVuCDC {
  background-color: #fafafa;
}
.cid-uB2nIVuCDC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uB2nIVuCDC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uB2nIVuCDC .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uB2nIVuCDC .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uB2nIVuCDC .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uB2nIVuCDC .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uB2nIVuCDC .container {
    padding: 0 24px;
  }
}
.cid-uB2nIVuCDC .row {
  justify-content: center;
}
.cid-uB2nIVuCDC .content-wrapper {
  padding: 200px 48px;
  position: relative;
  display: flex;
  justify-content: center;
  border: 1px solid #edeceb;
  border-radius: 2rem !important;
}
@media (max-width: 992px) {
  .cid-uB2nIVuCDC .content-wrapper {
    padding: 64px 24px;
  }
}
.cid-uB2nIVuCDC .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
  max-width: 75rem;
  display: flex;
}
@media (max-width: 992px) {
  .cid-uB2nIVuCDC .content-wrapper .content-wrap {
    display: block;
    max-width: 100%;
  }
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .title-wrapper {
  width: 50%;
  padding-right: 32px;
}
@media (max-width: 1440px) {
  .cid-uB2nIVuCDC .content-wrapper .content-wrap .title-wrapper {
    padding-right: 16px;
  }
}
@media (max-width: 992px) {
  .cid-uB2nIVuCDC .content-wrapper .content-wrap .title-wrapper {
    padding-right: 0;
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .title-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
  opacity: .5;
}
@media (max-width: 992px) {
  .cid-uB2nIVuCDC .content-wrapper .content-wrap .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .title-wrapper .social-wrapper {
  margin-top: 48px;
}
@media (max-width: 992px) {
  .cid-uB2nIVuCDC .content-wrapper .content-wrap .title-wrapper .social-wrapper {
    margin-top: 32px;
  }
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
@media (max-width: 1200px) {
  .cid-uB2nIVuCDC .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap {
    grid-template-columns: 1fr;
  }
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item:hover .mbr-soc,
.cid-uB2nIVuCDC .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item:focus .mbr-soc {
  opacity: .5;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item a .icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  margin-right: 16px;
  background-color: #ffffff;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item a .icon-wrapper .mbr-iconfont {
  position: center;
  z-index: 1;
  color: #18212d;
  font-size: 18px;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .title-wrapper .social-wrapper .social-wrap .soc-item a .mbr-soc {
  margin-bottom: 0;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper {
  width: 50%;
  background-color: #ffffff;
  border: 1px solid #edeceb;
  border-radius: 2rem;
  padding: 40px;
  margin-left: 32px;
}
@media (max-width: 1440px) {
  .cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper {
    margin-left: 16px;
  }
}
@media (max-width: 992px) {
  .cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper {
    margin-left: 0;
    padding: 16px;
    border-radius: 1rem;
    width: 100%;
  }
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row {
  position: relative;
  z-index: 1;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-section-title {
  margin-bottom: 24px !important;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-text {
  margin-bottom: 24px !important;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group {
  position: relative;
  margin-bottom: 24px !important;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group:hover::before,
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group:focus::before {
  opacity: 1;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group:hover .form-control::placeholder,
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group:focus .form-control::placeholder {
  opacity: .2;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 12px !important;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control {
  padding: 16px;
  border: 1px solid #edeceb !important;
  box-shadow: none;
  border-radius: 8px !important;
  background-color: transparent;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:hover,
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control:focus {
  border: 1px solid #18212d !important;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-control::placeholder {
  color: #18212d;
  font-size: 18px;
  opacity: .5;
  transition: all 0.3s ease-in-out;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group textarea {
  min-height: 160px;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check {
  padding-left: 1.9em;
  margin-bottom: 16px;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row .form-group .form-check .form-check-input {
  background-color: #edeceb;
  border-color: #edeceb;
  border-radius: 0;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uB2nIVuCDC .content-wrapper .content-wrap .form-wrapper .dragArea.row .mbr-section-btn .btn {
  width: 100%;
  margin-left: 0;
}
.cid-uB2nIVuCDC .mbr-section-title {
  color: #ffffff;
}
.cid-uB2nIVuCDC .mbr-desc {
  color: #18212d;
}
.cid-uB2nIVuCDC .mbr-text {
  color: #18212d;
}
.cid-uB2nIVuCDC .mbr-soc {
  color: #18212d;
}
.cid-uB2nIVuCDC label {
  color: #18212d;
}
.cid-uB2nIVuCDC .mbr-text,
.cid-uB2nIVuCDC .text-wrapper {
  color: #ffffff;
}
.cid-uB2nIVuCDC .mbr-soc,
.cid-uB2nIVuCDC .social-wrapper {
  color: #ffffff;
}
.cid-uBGGB81sQw {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBGGB81sQw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBGGB81sQw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBGGB81sQw .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uBGGB81sQw .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uBGGB81sQw .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uBGGB81sQw .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uBGGB81sQw .container {
    padding: 0 16px;
  }
}
.cid-uBGGB81sQw .google-map iframe {
  height: 400px;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-uBGGB81sQw .google-map iframe {
    height: 350px;
  }
}
.cid-uPIhaK1vL7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #1a2229;
}
.cid-uPIhaK1vL7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPIhaK1vL7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPIhaK1vL7 .container {
  max-width: 100%;
  width: 100%;
}
.cid-uPIhaK1vL7 .row {
  justify-content: center;
}
.cid-uPIhaK1vL7 .img-container {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-uPIhaK1vL7 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-uPIhaK1vL7 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-te1WDDdexp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ded7cd;
  overflow: hidden;
}
.cid-te1WDDdexp .container {
  max-width: 1600px;
}
.cid-te1WDDdexp .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-te1WDDdexp .media-container-row .mbr-text {
  color: #192732;
}
.cid-uBbSWN4D02 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px !important;
}
.cid-uBbSWN4D02 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBbSWN4D02 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBbSWN4D02 .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
.cid-uBbSWN4D02 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uBbSWN4D02 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uBbSWN4D02 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uBbSWN4D02 .nav-link:hover {
  color: #ffffff !important;
}
.cid-uBbSWN4D02 .nav-link:hover::before {
  width: 100%;
}
.cid-uBbSWN4D02 .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uBbSWN4D02 .navbar-logo {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uBbSWN4D02 .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uBbSWN4D02 .container {
  width: 95%;
  display: flex;
  height: 90px;
  padding: 20px 50px;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.1) !important;
  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-top: 1rem;
  background-color: #000000;
  box-shadow: none;
  border: 1px solid #1a2229;
  position: relative;
}
.cid-uBbSWN4D02 .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .container {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .container {
    width: 95%;
    height: 56px !important;
    padding: 20px;
    margin-top: 0rem;
  }
}
.cid-uBbSWN4D02 .iconfont-wrapper {
  color: #ded7cd !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBbSWN4D02 .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: #000000;
  background: rgba(0, 0, 0, 0.1) !important;
}
.cid-uBbSWN4D02 .nav-item:focus,
.cid-uBbSWN4D02 .nav-link:focus {
  outline: none;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBbSWN4D02 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBbSWN4D02 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar.opened {
  transition: all 0.3s;
}
.cid-uBbSWN4D02 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBbSWN4D02 .navbar .navbar-logo img {
  width: auto;
}
.cid-uBbSWN4D02 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .navbar .navbar-collapse {
    position: absolute;
  }
}
.cid-uBbSWN4D02 .navbar.collapsed {
  justify-content: center;
}
.cid-uBbSWN4D02 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBbSWN4D02 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBbSWN4D02 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .navbar {
    min-height: 72px;
  }
  .cid-uBbSWN4D02 .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uBbSWN4D02 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBbSWN4D02 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBbSWN4D02 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBbSWN4D02 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBbSWN4D02 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uBbSWN4D02 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBbSWN4D02 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBbSWN4D02 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uBbSWN4D02 .dropdown-item.active,
.cid-uBbSWN4D02 .dropdown-item:active {
  background-color: transparent;
}
.cid-uBbSWN4D02 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBbSWN4D02 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uBbSWN4D02 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uBbSWN4D02 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uBbSWN4D02 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBbSWN4D02 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .navbar-buttons {
    text-align: left;
  }
}
.cid-uBbSWN4D02 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uBbSWN4D02 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBbSWN4D02 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uBbSWN4D02 .navbar {
    height: 70px;
  }
  .cid-uBbSWN4D02 .navbar.opened {
    height: auto;
  }
  .cid-uBbSWN4D02 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uBbSWN4D02 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uBbSWN4D02 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uBbSWN4D02 .navbar-brand {
    margin-right: auto;
  }
  .cid-uBbSWN4D02 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.1) !important;
    background: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uBbSWN4D02 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uBbSWN4D02 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uBbSWN4D02 .navbar-brand,
.cid-uBbSWN4D02 .navbar-toggler,
.cid-uBbSWN4D02 .navbar-collapse {
  position: relative;
  z-index: 1;
}
.cid-uBywtoFRTu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBywtoFRTu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-uBywtoFRTu .row {
  justify-content: left;
}
.cid-uBywtoFRTu .main-col {
  display: flex;
}
.cid-uBywtoFRTu .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 900px;
}
.cid-uBywtoFRTu .item-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .cid-uBywtoFRTu .item-container {
    flex-wrap: wrap;
  }
}
.cid-uBywtoFRTu .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
  width: 120px;
}
@media (max-width: 767px) {
  .cid-uBywtoFRTu .item-img {
    display: none;
  }
}
.cid-uBywtoFRTu .item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uBywtoFRTu .mbr-section-title {
  color: #BF9341;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-uBywtoFRTu .mbr-section-title {
    text-align: center !important;
  }
}
@media (min-width: 1199px) {
  .cid-uBywtoFRTu .mbr-section-title.display-1 {
    font-size: 133px;
  }
}
.cid-uBywtoFRTu .mbr-text {
  color: #BF9341;
}
@media (max-width: 991px) {
  .cid-uBywtoFRTu .mbr-text {
    width: 100%;
    text-align: center !important;
  }
}
.cid-uBywtoFRTu .mbr-text-1 {
  margin-right: 40px;
}
@media (max-width: 991px) {
  .cid-uBywtoFRTu .mbr-text-1 {
    margin: 0;
  }
}
.cid-uBywtoFRTu .mbr-text-2 {
  margin-left: 40px;
  color: #ded7cd;
}
@media (max-width: 991px) {
  .cid-uBywtoFRTu .mbr-text-2 {
    margin: 0;
  }
}
.cid-uBywtoFRTu .item-container-2 {
  align-items: center;
  padding-left: 26px;
}
.cid-uBywtoFRTu .item-container-2 .mbr-section-title {
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uBywtoFRTu .item-container-2 {
    justify-content: center !important;
    padding-left: 0;
    flex-wrap: nowrap;
  }
}
.cid-uBywtoFRTu .item-container-4 {
  justify-content: space-between !important;
}
@media (max-width: 991px) {
  .cid-uBywtoFRTu .item-container-4 {
    justify-content: center !important;
  }
}
.cid-uBywtoFRTu .mbr-section-title-1 {
  color: #ffffff;
}
.cid-uBywtoFRTu .mbr-section-title-2 {
  color: #ffffff;
  text-align: left;
}
.cid-uBywtoFRTu .mbr-section-title-3 {
  color: #ffffff;
  text-align: center;
}
.cid-uBywtoFRTu .mbr-section-title-4 {
  color: #ffffff;
}
.cid-uByCLqnPtW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #1a2229;
  overflow: hidden;
}
.cid-uByCLqnPtW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uByCLqnPtW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uByCLqnPtW .row {
  justify-content: left;
}
.cid-uByCLqnPtW .content-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding: 80px 10%;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-uByCLqnPtW .content-container {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .cid-uByCLqnPtW .content-container {
    flex-wrap: wrap;
    padding: 40px 0;
  }
}
.cid-uByCLqnPtW .line-frame {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.cid-uByCLqnPtW .line-frame-1 {
  top: calc(100% - 11px);
}
.cid-uByCLqnPtW .line-frame-2 {
  bottom: calc(100% - 11px);
}
.cid-uByCLqnPtW .point-frame {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 3px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
}
.cid-uByCLqnPtW .point-frame-1 {
  top: 19px;
}
.cid-uByCLqnPtW .point-frame-2 {
  bottom: 19px;
}
.cid-uByCLqnPtW .title-container {
  width: 60%;
  padding: 0 80px 0 0;
}
@media (max-width: 991px) {
  .cid-uByCLqnPtW .title-container {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 767px) {
  .cid-uByCLqnPtW .title-container {
    width: 100%;
    padding: 0;
  }
}
.cid-uByCLqnPtW .text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 40%;
  padding: 0 0 0 80px;
}
@media (max-width: 991px) {
  .cid-uByCLqnPtW .text-container {
    padding: 0 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uByCLqnPtW .text-container {
    width: 100%;
    padding: 32px 0 0 0;
  }
}
.cid-uByCLqnPtW .item-container {
  width: 100%;
}
.cid-uByCLqnPtW .mbr-section-title {
  color: #7f9c26;
  width: 100%;
}
.cid-uByCLqnPtW .mbr-text {
  color: #7f9c26;
  width: 100%;
}
.cid-uByCLqnPtW .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .cid-uByCLqnPtW .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uByGSZpAyp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uByGSZpAyp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uByGSZpAyp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uByGSZpAyp .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uByGSZpAyp .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uByGSZpAyp .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uByGSZpAyp .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uByGSZpAyp .container {
    padding: 0 24px;
  }
}
.cid-uByGSZpAyp .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 1440px) {
  .cid-uByGSZpAyp .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uByGSZpAyp .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uByGSZpAyp .item .item-wrapper {
  height: 100%;
  position: relative;
  padding: 32px;
  display: flex;
  align-items: flex-end;
  min-height: 630px;
}
@media (max-width: 992px) {
  .cid-uByGSZpAyp .item .item-wrapper {
    min-height: 400px;
    padding: 24px;
  }
}
.cid-uByGSZpAyp .item .item-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uByGSZpAyp .item .item-wrapper .card-box {
  position: relative;
  padding: 20px;
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(2rem);
  backdrop-filter: blur(2rem);
}
.cid-uByGSZpAyp .item .item-wrapper .card-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid #ffffff;
  pointer-events: none;
  opacity: .12;
}
.cid-uByGSZpAyp .item .item-wrapper .card-box .item-name {
  margin-bottom: 0;
}
.cid-uByGSZpAyp .item .item-wrapper .card-box .item-role {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uByGSZpAyp .item .card-main {
  height: 100%;
  display: block;
  min-height: 630px;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uByGSZpAyp .item .card-main {
    min-height: 400px;
    padding: 0;
  }
}
.cid-uByGSZpAyp .item .card-main .card-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fbfaf9;
  border-radius: 2rem;
  border: 1px solid #edeceb;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uByGSZpAyp .item .card-main .card-box {
    padding: 24px;
  }
}
.cid-uByGSZpAyp .item .card-main .card-box .item-title {
  margin-bottom: 32px;
}
.cid-uByGSZpAyp .item .card-main .card-box .item-text {
  opacity: .5;
  margin-bottom: 0;
}
.cid-uByGSZpAyp .item-title {
  color: #5b7509;
}
.cid-uByGSZpAyp .item-text {
  color: #18212d;
}
.cid-uByGSZpAyp .item-name {
  color: #ffffff;
}
.cid-uByGSZpAyp .item-role {
  color: #ffffff;
}
.cid-uByJkjKDpT {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.cid-uByJkjKDpT .container {
  max-width: 920px;
}
.cid-uByJkjKDpT .border-container {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 80px 60px;
  background-color: #ffffff;
  border: 1px solid rgba(53, 53, 53, 0.1);
}
@media (max-width: 991px) {
  .cid-uByJkjKDpT .border-container {
    padding: 7% 5%;
  }
}
@media (max-width: 767px) {
  .cid-uByJkjKDpT .border-container {
    padding: 8% 6%;
  }
}
@media (max-width: 575px) {
  .cid-uByJkjKDpT .border-container {
    padding: 9% 7%;
  }
}
.cid-uByJkjKDpT .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-uByJkjKDpT .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-uByJkjKDpT .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-uByJkjKDpT .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-uByJkjKDpT .border-frame {
  position: absolute;
  z-index: 5;
  width: 60px;
  aspect-ratio: 1;
  background-color: #ffffff;
  border-color: rgba(53, 53, 53, 0.1);
}
@media (max-width: 991px) {
  .cid-uByJkjKDpT .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-uByJkjKDpT .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-uByJkjKDpT .border-frame {
    width: 7%;
  }
}
.cid-uByJkjKDpT .content-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uByJkjKDpT .content-container {
    min-height: auto;
  }
}
.cid-uByJkjKDpT .text-container {
  width: 100%;
}
.cid-uByJkjKDpT .text-wrapper {
  width: 100%;
}
.cid-uByJkjKDpT .mbr-text {
  color: #5b7509;
  width: 100%;
  margin: 0;
}
.cid-uByJkjKDpT .card-title {
  color: #BF9341;
  width: 100%;
  margin-bottom: 0;
  margin-top: 1.5rem;
}
.cid-uByJkjKDpT .line-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 0 50% 0;
  height: 1px;
  width: 1000%;
  background-color: rgba(53, 53, 53, 0.1);
}
.cid-uByJkjKDpT .line-frame-1 {
  transform: rotate(30deg) translate(-50%, -50%);
}
.cid-uByJkjKDpT .line-frame-2 {
  transform: rotate(60deg) translate(-50%, -50%);
}
.cid-uByJkjKDpT .line-frame-3 {
  transform: rotate(90deg) translate(-50%, -50%);
}
.cid-uByJkjKDpT .line-frame-4 {
  transform: rotate(120deg) translate(-50%, -50%);
}
.cid-uByJkjKDpT .line-frame-5 {
  transform: rotate(150deg) translate(-50%, -50%);
}
.cid-uByAsJyLhe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/dji-542-850x468.jpg");
}
.cid-uByAsJyLhe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uByAsJyLhe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uByAsJyLhe .content-container {
  display: flex;
  justify-content: left;
  width: 100%;
}
.cid-uByAsJyLhe .content-wrap {
  width: 50%;
  background-color: #1a2229;
  padding: 32px;
}
@media (max-width: 991px) {
  .cid-uByAsJyLhe .content-wrap {
    width: 75%;
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .cid-uByAsJyLhe .content-wrap {
    width: 100%;
  }
}
.cid-uByAsJyLhe .img-container {
  width: 100%;
}
.cid-uByAsJyLhe .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-uByAsJyLhe .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uByAsJyLhe .text-container {
  display: flex;
  align-items: stretch;
  width: 100%;
  padding-top: 44px;
}
@media (max-width: 767px) {
  .cid-uByAsJyLhe .text-container {
    padding-top: 32px;
    flex-wrap: wrap;
  }
}
.cid-uByAsJyLhe .text-content {
  width: 60%;
  flex-grow: 1;
  padding-right: 12px;
}
@media (max-width: 991px) {
  .cid-uByAsJyLhe .text-content {
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uByAsJyLhe .text-content {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uByAsJyLhe .mbr-section-title {
  width: 100%;
  color: #7f9c26;
}
.cid-uByAsJyLhe .mbr-text {
  width: 50%;
  color: #BF9341;
  margin-top: 56px;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cid-uByAsJyLhe .mbr-text {
    width: 100%;
    margin-top: 32px;
  }
}
.cid-uByAsJyLhe .btn-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 40%;
  flex-grow: 1;
  padding-left: 12px;
}
@media (max-width: 991px) {
  .cid-uByAsJyLhe .btn-content {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uByAsJyLhe .btn-content {
    width: 100%;
    padding-left: 0;
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-uByAsJyLhe .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uByKifKmQm {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #232323;
}
.cid-uByKifKmQm .mbr-text {
  color: #ffffff;
}
.cid-uByKifKmQm .mbr-section-subtitle {
  color: #7f9c26;
}
.cid-uByKifKmQm .mbr-section-title {
  color: #ffffff;
}
.cid-uByKifKmQm .mbr-card-title {
  color: #ffffff;
}
.cid-uByKifKmQm .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 1rem;
}
.cid-uByKifKmQm .mbr-card-title,
.cid-uByKifKmQm .line {
  color: #7f9c26;
}
.cid-uByKifKmQm p {
  line-height: 1.2;
}
.cid-uByOdvJoXR {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/62244860-1182385748614755-3356780373643100160-n-1495x996.jpg");
}
.cid-uByOdvJoXR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uByOdvJoXR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uByOdvJoXR .content-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.cid-uByOdvJoXR .mbr-section-title {
  color: #ffffff;
}
.cid-uByOdvJoXR .mbr-section-subtitle {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-uByOdvJoXR .mbr-text {
  margin-top: 24px;
  color: #FFFFFF;
}
.cid-uByOdvJoXR .mbr-section-btn {
  margin-top: 28px;
}
.cid-uByOdvJoXR iframe,
.cid-uByOdvJoXR img,
.cid-uByOdvJoXR video {
  width: 100%;
}
.cid-uByOdvJoXR .mbr-media {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 auto 32px 0;
  width: fit-content;
  max-width: 100%;
}
.cid-uByOdvJoXR .mbr-media span {
  font-size: 1.5rem;
  color: #33363b;
  transition: all 0.2s;
}
.cid-uByOdvJoXR .icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  background-color: #ffffff;
  z-index: 2;
}
.cid-uByOdvJoXR .icon-wrap:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.6;
  border-radius: 50%;
  transition: 0.3s all;
}
.cid-uByOdvJoXR .icon-wrap:hover:before {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}
.cid-uByOdvJoXR .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uByOdvJoXR .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-uByOdvJoXR .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uByOdvJoXR .modalWindow .modalWindow-video {
  height: 45vw;
  width: 80vw;
  margin: 0 auto;
}
.cid-uByOdvJoXR .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uByOdvJoXR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-te1WDDdexp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ded7cd;
  overflow: hidden;
}
.cid-te1WDDdexp .container {
  max-width: 1600px;
}
.cid-te1WDDdexp .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-te1WDDdexp .media-container-row .mbr-text {
  color: #192732;
}
.cid-uBbSWN4D02 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px !important;
}
.cid-uBbSWN4D02 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBbSWN4D02 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBbSWN4D02 .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
.cid-uBbSWN4D02 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uBbSWN4D02 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uBbSWN4D02 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uBbSWN4D02 .nav-link:hover {
  color: #ffffff !important;
}
.cid-uBbSWN4D02 .nav-link:hover::before {
  width: 100%;
}
.cid-uBbSWN4D02 .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uBbSWN4D02 .navbar-logo {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uBbSWN4D02 .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uBbSWN4D02 .container {
  width: 95%;
  display: flex;
  height: 90px;
  padding: 20px 50px;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.1) !important;
  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-top: 1rem;
  background-color: #000000;
  box-shadow: none;
  border: 1px solid #1a2229;
  position: relative;
}
.cid-uBbSWN4D02 .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .container {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .container {
    width: 95%;
    height: 56px !important;
    padding: 20px;
    margin-top: 0rem;
  }
}
.cid-uBbSWN4D02 .iconfont-wrapper {
  color: #ded7cd !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBbSWN4D02 .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: #000000;
  background: rgba(0, 0, 0, 0.1) !important;
}
.cid-uBbSWN4D02 .nav-item:focus,
.cid-uBbSWN4D02 .nav-link:focus {
  outline: none;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBbSWN4D02 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBbSWN4D02 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar.opened {
  transition: all 0.3s;
}
.cid-uBbSWN4D02 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBbSWN4D02 .navbar .navbar-logo img {
  width: auto;
}
.cid-uBbSWN4D02 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .navbar .navbar-collapse {
    position: absolute;
  }
}
.cid-uBbSWN4D02 .navbar.collapsed {
  justify-content: center;
}
.cid-uBbSWN4D02 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBbSWN4D02 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBbSWN4D02 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .navbar {
    min-height: 72px;
  }
  .cid-uBbSWN4D02 .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uBbSWN4D02 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBbSWN4D02 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBbSWN4D02 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBbSWN4D02 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBbSWN4D02 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uBbSWN4D02 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBbSWN4D02 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBbSWN4D02 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uBbSWN4D02 .dropdown-item.active,
.cid-uBbSWN4D02 .dropdown-item:active {
  background-color: transparent;
}
.cid-uBbSWN4D02 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBbSWN4D02 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uBbSWN4D02 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uBbSWN4D02 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uBbSWN4D02 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBbSWN4D02 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .navbar-buttons {
    text-align: left;
  }
}
.cid-uBbSWN4D02 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uBbSWN4D02 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBbSWN4D02 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uBbSWN4D02 .navbar {
    height: 70px;
  }
  .cid-uBbSWN4D02 .navbar.opened {
    height: auto;
  }
  .cid-uBbSWN4D02 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uBbSWN4D02 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uBbSWN4D02 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uBbSWN4D02 .navbar-brand {
    margin-right: auto;
  }
  .cid-uBbSWN4D02 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.1) !important;
    background: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uBbSWN4D02 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uBbSWN4D02 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uBbSWN4D02 .navbar-brand,
.cid-uBbSWN4D02 .navbar-toggler,
.cid-uBbSWN4D02 .navbar-collapse {
  position: relative;
  z-index: 1;
}
.cid-uDZAxH7DbZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bf9341;
}
.cid-uDZAxH7DbZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDZAxH7DbZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDZAxH7DbZ .row {
  justify-content: left;
}
.cid-uDZAxH7DbZ .main-col {
  display: flex;
}
.cid-uDZAxH7DbZ .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 900px;
}
.cid-uDZAxH7DbZ .item-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .cid-uDZAxH7DbZ .item-container {
    flex-wrap: wrap;
  }
}
.cid-uDZAxH7DbZ .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
  width: 120px;
}
@media (max-width: 767px) {
  .cid-uDZAxH7DbZ .item-img {
    display: none;
  }
}
.cid-uDZAxH7DbZ .item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-uDZAxH7DbZ .mbr-section-title {
  color: #1a2229;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-uDZAxH7DbZ .mbr-section-title {
    text-align: center !important;
  }
}
@media (min-width: 1199px) {
  .cid-uDZAxH7DbZ .mbr-section-title.display-1 {
    font-size: 133px;
  }
}
.cid-uDZAxH7DbZ .mbr-text {
  color: #1a2229;
}
@media (max-width: 991px) {
  .cid-uDZAxH7DbZ .mbr-text {
    width: 100%;
    text-align: center !important;
  }
}
.cid-uDZAxH7DbZ .mbr-text-2 {
  margin-left: 40px;
}
@media (max-width: 991px) {
  .cid-uDZAxH7DbZ .mbr-text-2 {
    margin: 0;
  }
}
.cid-uDZAxH7DbZ .item-container-2 {
  align-items: center;
}
.cid-uDZAxH7DbZ .item-container-2 .mbr-section-title {
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-uDZAxH7DbZ .item-container-2 {
    justify-content: center !important;
    padding-left: 0;
    flex-wrap: nowrap;
  }
}
.cid-uDZAxH7DbZ .item-container-3 {
  justify-content: center;
}
.cid-uDZAxH7DbZ .item-container-3 .mbr-section-title {
  flex-grow: 0;
}
.cid-uDZBVZQW0n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uDZBVZQW0n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDZBVZQW0n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDZBVZQW0n .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uDZBVZQW0n .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uDZBVZQW0n .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uDZBVZQW0n .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uDZBVZQW0n .container {
    padding: 0 24px;
  }
}
.cid-uDZBVZQW0n .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 1440px) {
  .cid-uDZBVZQW0n .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uDZBVZQW0n .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uDZBVZQW0n .item .item-wrapper .item-img {
  display: flex;
  align-items: flex-end;
  height: 630px;
  position: relative;
  padding: 32px;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uDZBVZQW0n .item .item-wrapper .item-img {
    height: 350px;
    padding: 24px;
  }
}
.cid-uDZBVZQW0n .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uDZBVZQW0n .item .item-wrapper .item-img a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uDZBVZQW0n .item .item-wrapper .item-img .date-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
.cid-uDZBVZQW0n .item .item-wrapper .item-img .date-wrapper .item-date {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 0;
  border-radius: 500px;
  z-index: 1;
  -webkit-backdrop-filter: blur(2rem);
  backdrop-filter: blur(2rem);
}
.cid-uDZBVZQW0n .item .item-wrapper .item-img .date-wrapper .item-date::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #ffffff;
  opacity: .12;
  pointer-events: none;
}
.cid-uDZBVZQW0n .item .item-wrapper .item-content {
  position: relative;
  padding: 32px;
  border-radius: 2rem;
  background-color: #fbfaf9;
  border: 1px solid #edeceb;
}
@media (max-width: 992px) {
  .cid-uDZBVZQW0n .item .item-wrapper .item-content {
    padding: 24px;
  }
}
.cid-uDZBVZQW0n .item .item-wrapper .item-content .item-title {
  margin-bottom: 16px;
}
.cid-uDZBVZQW0n .item .item-wrapper .item-content .item-text {
  margin-bottom: 16px;
  opacity: .5;
}
.cid-uDZBVZQW0n .item .item-wrapper .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uDZBVZQW0n .item-title {
  color: #18212d;
}
.cid-uDZBVZQW0n .item-text {
  color: #18212d;
}
.cid-uDZBVZQW0n .item-date {
  color: #ffffff;
}
.cid-uDZDogxwCz {
  display: flex;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fffcee;
}
.cid-uDZDogxwCz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDZDogxwCz .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uDZDogxwCz .image-wrapper,
.cid-uDZDogxwCz img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uDZDogxwCz .image-wrapper,
  .cid-uDZDogxwCz img {
    padding-bottom: 0.5rem;
  }
}
.cid-uDZDogxwCz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDZDogxwCz h1 {
  max-width: 800px;
}
.cid-uDZDogxwCz p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uDZDogxwCz .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uDZDogxwCz {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uDZDogxwCz .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uDZDogxwCz .content-wrap {
    width: 100%;
  }
}
.cid-uDZDogxwCz .mbr-section-subtitle,
.cid-uDZDogxwCz .line {
  color: #291f1e;
}
.cid-uDZDogxwCz .mbr-text,
.cid-uDZDogxwCz .mbr-section-btn {
  text-align: right;
  color: #291f1e;
}
.cid-uDZDogxwCz .mbr-section-title {
  color: #291f1e;
}
.cid-uDZDogxwCz .mbr-section-title,
.cid-uDZDogxwCz .mbr-section-btn,
.cid-uDZDogxwCz .line {
  text-align: left;
  color: #291f1e;
}
.cid-uDZDogxwCz .mbr-text {
  text-align: right;
}
.cid-uEAFANDhBL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #074149;
}
.cid-uEAFANDhBL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEAFANDhBL .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-uEAFANDhBL .container {
    padding: 0 30px;
  }
}
.cid-uEAFANDhBL .row {
  justify-content: center;
}
.cid-uEAFANDhBL .form-wrap {
  padding: 0 24px;
}
@media (max-width: 992px) {
  .cid-uEAFANDhBL .form-wrap {
    padding: 0 18px;
  }
}
.cid-uEAFANDhBL .dragArea.row .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uEAFANDhBL .dragArea.row .form-group {
  padding: 0 4px;
  margin-bottom: 40px !important;
}
.cid-uEAFANDhBL .dragArea.row .form-group .form-control-label {
  margin-bottom: 16px;
}
.cid-uEAFANDhBL .dragArea.row .form-group .form-control {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none !important;
  border-bottom: 1px solid #ded7cd !important;
  padding: 12px;
}
.cid-uEAFANDhBL .dragArea.row .form-group .form-control:hover,
.cid-uEAFANDhBL .dragArea.row .form-group .form-control:focus {
  border: none !important;
  border-bottom: 1px solid #ded7cd !important;
}
.cid-uEAFANDhBL .dragArea.row .form-group .form-check .form-check-input {
  background-color: #ded7cd;
  border-color: #ded7cd;
}
.cid-uEAFANDhBL .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uEAFANDhBL .dragArea.row .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-uEAFANDhBL .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uEAFANDhBL .mbr-text {
  color: #212529;
}
.cid-uEAFANDhBL label {
  color: #212529;
}
.cid-uEAFANDhBL .mbr-section-title,
.cid-uEAFANDhBL .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
.cid-uEAFANDhBL LABEL {
  color: #ded7cd;
}
.cid-te1WDDdexp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ded7cd;
  overflow: hidden;
}
.cid-te1WDDdexp .container {
  max-width: 1600px;
}
.cid-te1WDDdexp .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-te1WDDdexp .media-container-row .mbr-text {
  color: #192732;
}
.cid-uBbSWN4D02 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px !important;
}
.cid-uBbSWN4D02 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBbSWN4D02 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBbSWN4D02 .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
.cid-uBbSWN4D02 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uBbSWN4D02 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uBbSWN4D02 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uBbSWN4D02 .nav-link:hover {
  color: #ffffff !important;
}
.cid-uBbSWN4D02 .nav-link:hover::before {
  width: 100%;
}
.cid-uBbSWN4D02 .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uBbSWN4D02 .navbar-logo {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uBbSWN4D02 .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uBbSWN4D02 .container {
  width: 95%;
  display: flex;
  height: 90px;
  padding: 20px 50px;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.1) !important;
  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-top: 1rem;
  background-color: #000000;
  box-shadow: none;
  border: 1px solid #1a2229;
  position: relative;
}
.cid-uBbSWN4D02 .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .container {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .container {
    width: 95%;
    height: 56px !important;
    padding: 20px;
    margin-top: 0rem;
  }
}
.cid-uBbSWN4D02 .iconfont-wrapper {
  color: #ded7cd !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBbSWN4D02 .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: #000000;
  background: rgba(0, 0, 0, 0.1) !important;
}
.cid-uBbSWN4D02 .nav-item:focus,
.cid-uBbSWN4D02 .nav-link:focus {
  outline: none;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBbSWN4D02 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBbSWN4D02 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar.opened {
  transition: all 0.3s;
}
.cid-uBbSWN4D02 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBbSWN4D02 .navbar .navbar-logo img {
  width: auto;
}
.cid-uBbSWN4D02 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .navbar .navbar-collapse {
    position: absolute;
  }
}
.cid-uBbSWN4D02 .navbar.collapsed {
  justify-content: center;
}
.cid-uBbSWN4D02 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBbSWN4D02 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBbSWN4D02 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .navbar {
    min-height: 72px;
  }
  .cid-uBbSWN4D02 .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uBbSWN4D02 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBbSWN4D02 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBbSWN4D02 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBbSWN4D02 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBbSWN4D02 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uBbSWN4D02 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBbSWN4D02 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBbSWN4D02 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uBbSWN4D02 .dropdown-item.active,
.cid-uBbSWN4D02 .dropdown-item:active {
  background-color: transparent;
}
.cid-uBbSWN4D02 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBbSWN4D02 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uBbSWN4D02 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uBbSWN4D02 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uBbSWN4D02 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBbSWN4D02 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .navbar-buttons {
    text-align: left;
  }
}
.cid-uBbSWN4D02 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uBbSWN4D02 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBbSWN4D02 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uBbSWN4D02 .navbar {
    height: 70px;
  }
  .cid-uBbSWN4D02 .navbar.opened {
    height: auto;
  }
  .cid-uBbSWN4D02 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uBbSWN4D02 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uBbSWN4D02 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uBbSWN4D02 .navbar-brand {
    margin-right: auto;
  }
  .cid-uBbSWN4D02 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.1) !important;
    background: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uBbSWN4D02 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uBbSWN4D02 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uBbSWN4D02 .navbar-brand,
.cid-uBbSWN4D02 .navbar-toggler,
.cid-uBbSWN4D02 .navbar-collapse {
  position: relative;
  z-index: 1;
}
.cid-te6eB57j8W {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/agnello-bagnod-1-2000x1333-1-2000x1333.jpg");
}
.cid-te6eB57j8W .mbr-fallback-image.disabled {
  display: none;
}
.cid-te6eB57j8W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-te6eB57j8W .row {
  justify-content: left;
}
.cid-te6eB57j8W .main-col {
  display: flex;
}
.cid-te6eB57j8W .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 850px;
}
.cid-te6eB57j8W .item-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .cid-te6eB57j8W .item-container {
    flex-wrap: wrap;
  }
}
.cid-te6eB57j8W .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
  width: 120px;
}
@media (max-width: 767px) {
  .cid-te6eB57j8W .item-img {
    display: none;
  }
}
.cid-te6eB57j8W .item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cid-te6eB57j8W .mbr-section-title {
  color: #1a2229;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-te6eB57j8W .mbr-section-title {
    text-align: center !important;
  }
}
@media (min-width: 1199px) {
  .cid-te6eB57j8W .mbr-section-title.display-1 {
    font-size: 133px;
  }
}
.cid-te6eB57j8W .mbr-text {
  color: #1a2229;
}
@media (max-width: 991px) {
  .cid-te6eB57j8W .mbr-text {
    width: 100%;
    text-align: center !important;
  }
}
.cid-te6eB57j8W .mbr-text-2 {
  margin-left: 40px;
}
@media (max-width: 991px) {
  .cid-te6eB57j8W .mbr-text-2 {
    margin: 0;
  }
}
.cid-te6eB57j8W .item-container-2 {
  align-items: center;
}
.cid-te6eB57j8W .item-container-2 .mbr-section-title {
  flex-grow: 0;
}
@media (max-width: 991px) {
  .cid-te6eB57j8W .item-container-2 {
    justify-content: center !important;
    padding-left: 0;
    flex-wrap: nowrap;
  }
}
.cid-te6eB57j8W .item-container-3 {
  justify-content: center;
}
.cid-te6eB57j8W .item-container-3 .mbr-section-title {
  flex-grow: 0;
}
.cid-te6eB57j8W .mbr-section-title-3 {
  color: #ffffff;
}
.cid-te6eB57j8W .mbr-section-title-2 {
  color: #ffffff;
}
.cid-te6eB57j8W .mbr-section-title-4 {
  color: #ffffff;
}
.cid-te6fxTb0G7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
  overflow: hidden;
}
.cid-te6fxTb0G7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-te6fxTb0G7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-te6fxTb0G7 .row {
  justify-content: left;
}
.cid-te6fxTb0G7 .content-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding: 80px 10%;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .cid-te6fxTb0G7 .content-container {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .cid-te6fxTb0G7 .content-container {
    flex-wrap: wrap;
    padding: 40px 0;
  }
}
.cid-te6fxTb0G7 .line-frame {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.cid-te6fxTb0G7 .line-frame-1 {
  top: calc(100% - 11px);
}
.cid-te6fxTb0G7 .line-frame-2 {
  bottom: calc(100% - 11px);
}
.cid-te6fxTb0G7 .point-frame {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 3px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
}
.cid-te6fxTb0G7 .point-frame-1 {
  top: 19px;
}
.cid-te6fxTb0G7 .point-frame-2 {
  bottom: 19px;
}
.cid-te6fxTb0G7 .title-container {
  width: 60%;
  padding: 0 80px 0 0;
}
@media (max-width: 991px) {
  .cid-te6fxTb0G7 .title-container {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 767px) {
  .cid-te6fxTb0G7 .title-container {
    width: 100%;
    padding: 0;
  }
}
.cid-te6fxTb0G7 .text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 40%;
  padding: 0 0 0 80px;
}
@media (max-width: 991px) {
  .cid-te6fxTb0G7 .text-container {
    padding: 0 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-te6fxTb0G7 .text-container {
    width: 100%;
    padding: 32px 0 0 0;
  }
}
.cid-te6fxTb0G7 .item-container {
  width: 100%;
}
.cid-te6fxTb0G7 .mbr-section-title {
  color: #BF9341;
  width: 100%;
}
.cid-te6fxTb0G7 .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-te6fxTb0G7 .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .cid-te6fxTb0G7 .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-te6fIfoIVn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ded7cd;
}
.cid-te6fIfoIVn .mbr-fallback-image.disabled {
  display: none;
}
.cid-te6fIfoIVn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-te6fIfoIVn .container {
  max-width: 1600px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-te6fIfoIVn .container {
    max-width: 80%;
  }
}
.cid-te6fIfoIVn .content-container {
  display: flex;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-te6fIfoIVn .content-container {
    flex-wrap: wrap;
  }
}
.cid-te6fIfoIVn .text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 30%;
}
@media (max-width: 991px) {
  .cid-te6fIfoIVn .text-container {
    width: 100%;
  }
}
.cid-te6fIfoIVn .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-te6fIfoIVn .card-box {
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .cid-te6fIfoIVn .card-box {
    margin-bottom: 40px;
  }
}
.cid-te6fIfoIVn .card-title {
  width: 100%;
  color: #192732;
}
.cid-te6fIfoIVn .mbr-text {
  color: #192732;
  padding: 60px 0 0 23%;
}
@media (max-width: 991px) {
  .cid-te6fIfoIVn .mbr-text {
    padding: 44px 0 0 13%;
    max-width: 56%;
  }
}
@media (max-width: 575px) {
  .cid-te6fIfoIVn .mbr-text {
    max-width: 100%;
    padding-left: 0;
  }
}
.cid-te6fIfoIVn .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-te6fIfoIVn .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-te6fIfoIVn .btn-primary-outline {
  color: #192732;
}
.cid-te6fIfoIVn .img-container {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-te6fIfoIVn .img-container {
    width: 100%;
  }
}
.cid-te6fIfoIVn .image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-te6fIfoIVn .image-wrapper img {
  object-fit: cover;
}
.cid-te6fIfoIVn .image-wrapper-1 {
  margin-bottom: 32px;
}
.cid-te6fIfoIVn .image-wrapper-1 img {
  width: 32%;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-te6fIfoIVn .image-wrapper-1 img {
    width: 41%;
  }
}
@media (max-width: 991px) {
  .cid-te6fIfoIVn .image-wrapper-1 {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .cid-te6fIfoIVn .image-wrapper-1 {
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .cid-te6fIfoIVn .image-wrapper-1 {
    margin-bottom: 40px;
  }
}
.cid-te6fIfoIVn .image-wrapper-2 img {
  width: 83%;
  padding-left: 23.5%;
}
@media (max-width: 991px) {
  .cid-te6fIfoIVn .image-wrapper-2 img {
    width: 80%;
    padding-left: 0;
    margin-right: auto;
  }
}
.cid-te6jy06dRR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/2023-09-13-1360x765.jpg");
}
.cid-te6jy06dRR .mbr-fallback-image.disabled {
  display: none;
}
.cid-te6jy06dRR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-te6jy06dRR .content-container {
  display: flex;
  justify-content: left;
  width: 100%;
}
.cid-te6jy06dRR .content-wrap {
  width: 50%;
  background-color: #1a2229;
  padding: 32px;
}
@media (max-width: 991px) {
  .cid-te6jy06dRR .content-wrap {
    width: 75%;
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .cid-te6jy06dRR .content-wrap {
    width: 100%;
  }
}
.cid-te6jy06dRR .img-container {
  width: 100%;
}
.cid-te6jy06dRR .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-te6jy06dRR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-te6jy06dRR .text-container {
  display: flex;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap;
  padding-top: 44px;
}
@media (max-width: 767px) {
  .cid-te6jy06dRR .text-container {
    padding-top: 32px;
  }
}
.cid-te6jy06dRR .text-content {
  width: 100%;
}
.cid-te6jy06dRR .mbr-section-title {
  width: 100%;
  color: #BF9341;
}
.cid-te6jy06dRR .mbr-text {
  width: 60%;
  color: #BF9341;
  margin-top: 16px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cid-te6jy06dRR .mbr-text {
    width: 100%;
    margin-top: 32px;
  }
}
.cid-te6jy06dRR .btn-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  margin-top: 20px;
}
.cid-te6gJggn1K {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
  overflow: hidden;
}
.cid-te6gJggn1K .mbr-fallback-image.disabled {
  display: none;
}
.cid-te6gJggn1K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-te6gJggn1K .row {
  justify-content: left;
}
.cid-te6gJggn1K .content-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding: 80px 4.5%;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 1199px) {
  .cid-te6gJggn1K .content-container {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-te6gJggn1K .content-container {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .cid-te6gJggn1K .content-container {
    flex-wrap: wrap;
    padding: 40px 0;
  }
}
.cid-te6gJggn1K .line-frame {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}
.cid-te6gJggn1K .line-frame-1 {
  top: calc(100% - 11px);
}
.cid-te6gJggn1K .line-frame-2 {
  bottom: calc(100% - 11px);
}
.cid-te6gJggn1K .point-frame {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 3px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
}
.cid-te6gJggn1K .point-frame-1 {
  top: 19px;
}
.cid-te6gJggn1K .point-frame-2 {
  bottom: 19px;
}
.cid-te6gJggn1K .title-container {
  width: 70%;
  padding: 0 40px;
}
@media (max-width: 991px) {
  .cid-te6gJggn1K .title-container {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 767px) {
  .cid-te6gJggn1K .title-container {
    width: 100%;
    padding: 0;
  }
}
.cid-te6gJggn1K .text-container {
  width: 30%;
  padding: 0 40px;
}
@media (max-width: 991px) {
  .cid-te6gJggn1K .text-container {
    padding: 0 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-te6gJggn1K .text-container {
    width: 100%;
    padding: 32px 0 0 0;
  }
}
.cid-te6gJggn1K .item-container {
  width: 100%;
}
.cid-te6gJggn1K .mbr-section-title {
  color: #BF9341;
  width: 100%;
}
.cid-te6gJggn1K .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-te6gJggn1K .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .cid-te6gJggn1K .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uBc2Ysv4Iy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
  background-color: #f4f4f6;
}
.cid-uBc2Ysv4Iy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBc2Ysv4Iy .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-uBc2Ysv4Iy .container {
    padding: 0 24px;
  }
}
.cid-uBc2Ysv4Iy .row {
  justify-content: space-between;
}
.cid-uBc2Ysv4Iy .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uBc2Ysv4Iy .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uBc2Ysv4Iy .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uBc2Ysv4Iy .text-wrapper .mbr-text {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uBc2Ysv4Iy .text-wrapper .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-uBc2Ysv4Iy .item {
  position: relative;
  z-index: 1;
  padding: 24px 0 48px 0;
  border-top: 1px solid #141414;
  border-radius: 0 !important;
}
.cid-uBc2Ysv4Iy .item .item-wrapper .card-box .title-wrap {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uBc2Ysv4Iy .item .item-wrapper .card-box .title-wrap {
    display: block;
  }
}
.cid-uBc2Ysv4Iy .item .item-wrapper .card-box .title-wrap .card-title {
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uBc2Ysv4Iy .item .item-wrapper .card-box .title-wrap .card-title {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uBc2Ysv4Iy .item .item-wrapper .card-box .title-wrap .card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #141414;
  border-radius: 10vmax;
  padding: 8px 24px;
  margin-bottom: 0;
}
.cid-uBc2Ysv4Iy .item .item-wrapper .card-box .text-wrap .card-text {
  display: inline-flex;
  width: 33%;
  margin-bottom: 8px;
}
@media (max-width: 1200px) {
  .cid-uBc2Ysv4Iy .item .item-wrapper .card-box .text-wrap .card-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-uBc2Ysv4Iy .item .item-wrapper .card-box .text-wrap .card-text {
    width: 100%;
  }
}
.cid-uBc2Ysv4Iy .item .item-wrapper .card-box .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uBc2Ysv4Iy .item .item-wrapper .card-box .mbr-section-btn .btn:hover,
.cid-uBc2Ysv4Iy .item .item-wrapper .card-box .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uBc2Ysv4Iy .mbr-section-title {
  color: #141414;
}
.cid-uBc2Ysv4Iy .mbr-text {
  color: #141414;
}
.cid-uBc2Ysv4Iy .card-number {
  color: #141414;
}
.cid-uBc2Ysv4Iy .card-title {
  color: #141414;
}
.cid-uBc2Ysv4Iy .card-text {
  color: #141414;
}
.cid-uBc2Ysv4Iy .card-tag {
  color: #141414;
}
.cid-te6hFZ5eog {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a2229;
}
.cid-te6hFZ5eog .mbr-fallback-image.disabled {
  display: none;
}
.cid-te6hFZ5eog .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-te6hFZ5eog .row {
  justify-content: left;
}
.cid-te6hFZ5eog .main-col {
  display: flex;
}
.cid-te6hFZ5eog .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 850px;
}
.cid-te6hFZ5eog .mbr-section-title {
  color: #BF9341;
  width: 100%;
  text-align: center;
}
.cid-te6hFZ5eog .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-top: 20px;
}
.cid-te6hFZ5eog .mbr-text {
  color: #BF9341;
  width: 100%;
  margin-top: 1rem;
}
.cid-te6ii4ofbm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #1a2229;
}
.cid-te6ii4ofbm .mbr-fallback-image.disabled {
  display: none;
}
.cid-te6ii4ofbm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-te6ii4ofbm .container {
  max-width: 100%;
  width: 100%;
}
.cid-te6ii4ofbm .row {
  justify-content: center;
}
.cid-te6ii4ofbm .img-container {
  margin: 0 auto;
  padding: 0 !important;
}
.cid-te6ii4ofbm .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}
.cid-te6ii4ofbm .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 100vh;
}
.cid-te6lv7OxPm {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-color: #1a2229;
}
.cid-te6lv7OxPm .mbr-fallback-image.disabled {
  display: none;
}
.cid-te6lv7OxPm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-te6lv7OxPm .row {
  justify-content: left;
}
.cid-te6lv7OxPm .main-col {
  display: flex;
}
.cid-te6lv7OxPm .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 850px;
}
.cid-te6lv7OxPm .mbr-section-title {
  color: #BF9341;
  width: 100%;
}
.cid-te6lv7OxPm .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
.cid-te6lv7OxPm .mbr-text {
  color: #BF9341;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}
.cid-uBc8H7ueyq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/dji-542-850x468.jpg");
}
.cid-uBc8H7ueyq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBc8H7ueyq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBc8H7ueyq .content-container {
  display: flex;
  justify-content: left;
  width: 100%;
}
.cid-uBc8H7ueyq .content-wrap {
  width: 50%;
  background-color: #1a2229;
  padding: 32px;
}
@media (max-width: 991px) {
  .cid-uBc8H7ueyq .content-wrap {
    width: 75%;
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .cid-uBc8H7ueyq .content-wrap {
    width: 100%;
  }
}
.cid-uBc8H7ueyq .img-container {
  width: 100%;
}
.cid-uBc8H7ueyq .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-uBc8H7ueyq .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uBc8H7ueyq .text-container {
  display: flex;
  align-items: stretch;
  width: 100%;
  padding-top: 44px;
}
@media (max-width: 767px) {
  .cid-uBc8H7ueyq .text-container {
    padding-top: 32px;
    flex-wrap: wrap;
  }
}
.cid-uBc8H7ueyq .text-content {
  width: 60%;
  flex-grow: 1;
  padding-right: 12px;
}
@media (max-width: 991px) {
  .cid-uBc8H7ueyq .text-content {
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uBc8H7ueyq .text-content {
    width: 100%;
    padding-right: 0;
  }
}
.cid-uBc8H7ueyq .mbr-section-title {
  width: 100%;
  color: #BF9341;
}
.cid-uBc8H7ueyq .mbr-text {
  width: 50%;
  color: #BF9341;
  margin-top: 56px;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cid-uBc8H7ueyq .mbr-text {
    width: 100%;
    margin-top: 32px;
  }
}
.cid-uBc8H7ueyq .btn-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 40%;
  flex-grow: 1;
  padding-left: 12px;
}
@media (max-width: 991px) {
  .cid-uBc8H7ueyq .btn-content {
    padding-left: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uBc8H7ueyq .btn-content {
    width: 100%;
    padding-left: 0;
    margin-top: 32px;
  }
}
@media (max-width: 767px) {
  .cid-uBc8H7ueyq .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uBcc0MB6fa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9e9e6;
}
.cid-uBcc0MB6fa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBcc0MB6fa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBcc0MB6fa .card {
  justify-content: flex-end;
}
.cid-uBcc0MB6fa .title-wrapper .mbr-section-title {
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uBcc0MB6fa .title-wrapper .mbr-section-title {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uBcc0MB6fa .title-wrapper .mbr-section-title {
    margin-bottom: 35px;
  }
}
.cid-uBcc0MB6fa .text-wrapper .mbr-text {
  display: inline-flex;
  width: 70%;
  margin-bottom: 110px;
}
@media (max-width: 1200px) {
  .cid-uBcc0MB6fa .text-wrapper .mbr-text {
    margin-bottom: 70px;
  }
}
@media (max-width: 992px) {
  .cid-uBcc0MB6fa .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 35px;
  }
}
.cid-uBcc0MB6fa .card-wrapper {
  display: flex;
  align-items: flex-end;
  position: relative;
  min-height: 670px;
  padding: 50px;
}
@media (max-width: 992px) {
  .cid-uBcc0MB6fa .card-wrapper {
    padding: 16px 16px 40px;
    min-height: 400px;
  }
}
.cid-uBcc0MB6fa .card-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 3rem;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uBcc0MB6fa .card-wrapper img {
    border-radius: 2rem;
  }
}
.cid-uBcc0MB6fa .card-wrapper .card-wrap {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  padding: 16px 24px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uBcc0MB6fa .card-wrapper .card-wrap {
    display: block;
    padding: 16px;
  }
}
.cid-uBcc0MB6fa .card-wrapper .card-wrap .content-wrap {
  display: flex;
  align-items: center;
  width: 50%;
  margin-right: 24px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uBcc0MB6fa .card-wrapper .card-wrap .content-wrap {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.cid-uBcc0MB6fa .card-wrapper .card-wrap .content-wrap .card-date {
  padding: 8px 16px;
  background-color: #d0e59f;
  border-radius: .5rem;
  min-width: 75px;
  margin-right: 24px;
  margin-bottom: 0;
  line-height: 1.7;
}
@media (max-width: 992px) {
  .cid-uBcc0MB6fa .card-wrapper .card-wrap .content-wrap .card-date {
    margin-right: 0;
    margin-bottom: 20px;
    min-width: auto;
    width: 100%;
  }
}
.cid-uBcc0MB6fa .card-wrapper .card-wrap .content-wrap .title-wrap {
  width: 280px;
}
@media (max-width: 992px) {
  .cid-uBcc0MB6fa .card-wrapper .card-wrap .content-wrap .title-wrap {
    width: 100%;
  }
}
.cid-uBcc0MB6fa .card-wrapper .card-wrap .content-wrap .title-wrap .card-title {
  margin-bottom: 15px;
}
.cid-uBcc0MB6fa .card-wrapper .card-wrap .content-wrap .title-wrap .card-desc {
  margin-bottom: 0;
}
.cid-uBcc0MB6fa .card-wrapper .card-wrap .text-wrap {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uBcc0MB6fa .card-wrapper .card-wrap .text-wrap {
    width: 100%;
  }
}
.cid-uBcc0MB6fa .card-wrapper .card-wrap .text-wrap .item-text {
  margin-bottom: 0;
}
.cid-uBcc0MB6fa .mbr-section-title {
  color: #000000;
}
.cid-uBcc0MB6fa .mbr-text {
  color: #000000;
}
.cid-uBcc0MB6fa .card-date {
  color: #000000;
  text-align: center;
}
.cid-uBcc0MB6fa .card-title {
  color: #000000;
}
.cid-uBcc0MB6fa .card-desc {
  color: #000000;
}
.cid-uBcc0MB6fa .card-text {
  color: #000000;
}
.cid-te6kgYS8i7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ded7cd;
  overflow: hidden;
}
.cid-te6kgYS8i7 .container {
  max-width: 1600px;
}
.cid-te6kgYS8i7 .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-te6kgYS8i7 .media-container-row .mbr-text {
  color: #192732;
}
.cid-uBbSWN4D02 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px !important;
}
.cid-uBbSWN4D02 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBbSWN4D02 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBbSWN4D02 .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
.cid-uBbSWN4D02 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uBbSWN4D02 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uBbSWN4D02 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uBbSWN4D02 .nav-link:hover {
  color: #ffffff !important;
}
.cid-uBbSWN4D02 .nav-link:hover::before {
  width: 100%;
}
.cid-uBbSWN4D02 .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uBbSWN4D02 .navbar-logo {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uBbSWN4D02 .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uBbSWN4D02 .container {
  width: 95%;
  display: flex;
  height: 90px;
  padding: 20px 50px;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.1) !important;
  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-top: 1rem;
  background-color: #000000;
  box-shadow: none;
  border: 1px solid #1a2229;
  position: relative;
}
.cid-uBbSWN4D02 .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .container {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .container {
    width: 95%;
    height: 56px !important;
    padding: 20px;
    margin-top: 0rem;
  }
}
.cid-uBbSWN4D02 .iconfont-wrapper {
  color: #ded7cd !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBbSWN4D02 .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: #000000;
  background: rgba(0, 0, 0, 0.1) !important;
}
.cid-uBbSWN4D02 .nav-item:focus,
.cid-uBbSWN4D02 .nav-link:focus {
  outline: none;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBbSWN4D02 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBbSWN4D02 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar.opened {
  transition: all 0.3s;
}
.cid-uBbSWN4D02 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBbSWN4D02 .navbar .navbar-logo img {
  width: auto;
}
.cid-uBbSWN4D02 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .navbar .navbar-collapse {
    position: absolute;
  }
}
.cid-uBbSWN4D02 .navbar.collapsed {
  justify-content: center;
}
.cid-uBbSWN4D02 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBbSWN4D02 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBbSWN4D02 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .navbar {
    min-height: 72px;
  }
  .cid-uBbSWN4D02 .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uBbSWN4D02 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBbSWN4D02 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBbSWN4D02 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBbSWN4D02 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBbSWN4D02 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uBbSWN4D02 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBbSWN4D02 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBbSWN4D02 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uBbSWN4D02 .dropdown-item.active,
.cid-uBbSWN4D02 .dropdown-item:active {
  background-color: transparent;
}
.cid-uBbSWN4D02 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBbSWN4D02 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uBbSWN4D02 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uBbSWN4D02 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uBbSWN4D02 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBbSWN4D02 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .navbar-buttons {
    text-align: left;
  }
}
.cid-uBbSWN4D02 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uBbSWN4D02 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBbSWN4D02 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uBbSWN4D02 .navbar {
    height: 70px;
  }
  .cid-uBbSWN4D02 .navbar.opened {
    height: auto;
  }
  .cid-uBbSWN4D02 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uBbSWN4D02 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uBbSWN4D02 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uBbSWN4D02 .navbar-brand {
    margin-right: auto;
  }
  .cid-uBbSWN4D02 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.1) !important;
    background: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uBbSWN4D02 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uBbSWN4D02 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uBbSWN4D02 .navbar-brand,
.cid-uBbSWN4D02 .navbar-toggler,
.cid-uBbSWN4D02 .navbar-collapse {
  position: relative;
  z-index: 1;
}
.cid-uEAMJpUNzs {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ededed;
}
.cid-uEAMJpUNzs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uEAMJpUNzs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .cid-uEAMJpUNzs .container {
    padding: 0 16px;
  }
}
.cid-uEAMJpUNzs .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uEAMJpUNzs .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uEAMJpUNzs .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uEAMJpUNzs .mbr-section-title {
  color: #f1634f;
}
.cid-uEAMJpUNzs .mbr-text {
  color: #000000;
}
.cid-te1WDDdexp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ded7cd;
  overflow: hidden;
}
.cid-te1WDDdexp .container {
  max-width: 1600px;
}
.cid-te1WDDdexp .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-te1WDDdexp .media-container-row .mbr-text {
  color: #192732;
}
.cid-uBbSWN4D02 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px !important;
}
.cid-uBbSWN4D02 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uBbSWN4D02 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBbSWN4D02 .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link:hover {
  background-color: transparent;
}
.cid-uBbSWN4D02 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uBbSWN4D02 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uBbSWN4D02 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uBbSWN4D02 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uBbSWN4D02 .nav-link:hover {
  color: #ffffff !important;
}
.cid-uBbSWN4D02 .nav-link:hover::before {
  width: 100%;
}
.cid-uBbSWN4D02 .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uBbSWN4D02 .navbar-logo {
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uBbSWN4D02 .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uBbSWN4D02 .container {
  width: 95%;
  display: flex;
  height: 90px;
  padding: 20px 50px;
  flex-wrap: nowrap;
  background: rgba(0, 0, 0, 0.1) !important;
  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-top: 1rem;
  background-color: #000000;
  box-shadow: none;
  border: 1px solid #1a2229;
  position: relative;
}
.cid-uBbSWN4D02 .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  border-radius: 16px;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .container {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .container {
    width: 95%;
    height: 56px !important;
    padding: 20px;
    margin-top: 0rem;
  }
}
.cid-uBbSWN4D02 .iconfont-wrapper {
  color: #ded7cd !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBbSWN4D02 .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: #000000;
  background: rgba(0, 0, 0, 0.1) !important;
}
.cid-uBbSWN4D02 .nav-item:focus,
.cid-uBbSWN4D02 .nav-link:focus {
  outline: none;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBbSWN4D02 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBbSWN4D02 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBbSWN4D02 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar.opened {
  transition: all 0.3s;
}
.cid-uBbSWN4D02 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBbSWN4D02 .navbar .navbar-logo img {
  width: auto;
}
.cid-uBbSWN4D02 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .navbar .navbar-collapse {
    position: absolute;
  }
}
.cid-uBbSWN4D02 .navbar.collapsed {
  justify-content: center;
}
.cid-uBbSWN4D02 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBbSWN4D02 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBbSWN4D02 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.5rem);
  }
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uBbSWN4D02 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBbSWN4D02 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uBbSWN4D02 .navbar {
    min-height: 72px;
  }
  .cid-uBbSWN4D02 .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uBbSWN4D02 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBbSWN4D02 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBbSWN4D02 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBbSWN4D02 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBbSWN4D02 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uBbSWN4D02 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBbSWN4D02 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBbSWN4D02 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uBbSWN4D02 .dropdown-item.active,
.cid-uBbSWN4D02 .dropdown-item:active {
  background-color: transparent;
}
.cid-uBbSWN4D02 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBbSWN4D02 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBbSWN4D02 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uBbSWN4D02 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uBbSWN4D02 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uBbSWN4D02 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uBbSWN4D02 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .navbar-buttons {
    text-align: left;
  }
}
.cid-uBbSWN4D02 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uBbSWN4D02 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uBbSWN4D02 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBbSWN4D02 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uBbSWN4D02 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBbSWN4D02 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uBbSWN4D02 .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uBbSWN4D02 .navbar {
    height: 70px;
  }
  .cid-uBbSWN4D02 .navbar.opened {
    height: auto;
  }
  .cid-uBbSWN4D02 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uBbSWN4D02 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uBbSWN4D02 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uBbSWN4D02 .navbar-brand {
    margin-right: auto;
  }
  .cid-uBbSWN4D02 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #000000;
    opacity: 1;
    border-color: rgba(0, 0, 0, 0.1) !important;
    background: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uBbSWN4D02 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uBbSWN4D02 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uBbSWN4D02 .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-uBbSWN4D02 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uBbSWN4D02 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uBbSWN4D02 .navbar-brand,
.cid-uBbSWN4D02 .navbar-toggler,
.cid-uBbSWN4D02 .navbar-collapse {
  position: relative;
  z-index: 1;
}
.cid-uSfYPJq1vf {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uSfYPJq1vf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSfYPJq1vf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSfYPJq1vf .arrow {
  font-size: 3rem;
  color: #ae42c8;
  animation-duration: 1s;
  animation-name: slidein;
  animation-iteration-count: infinite;
  display: block;
}
.cid-uSfYPJq1vf .arrow-col {
  overflow: hidden;
  margin-top: 5rem;
}
.cid-uSfYPJq1vf .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uSfYPJq1vf .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uSfYPJq1vf img {
  border-radius: 2rem;
}
.cid-uSfYPJq1vf .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uSfYPJq1vf .mbr-section-subtitle {
  text-align: center;
  color: #353535;
}
.cid-uSfYPJq1vf .mbr-text,
.cid-uSfYPJq1vf .mbr-section-btn {
  color: #000000;
}
@keyframes slidein {
  0% {
    transform: translateY(-50px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(50px);
  }
}
.cid-te1WDDdexp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ded7cd;
  overflow: hidden;
}
.cid-te1WDDdexp .container {
  max-width: 1600px;
}
.cid-te1WDDdexp .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-te1WDDdexp .media-container-row .mbr-text {
  color: #192732;
}
