.btn {
  border-width: 2px;
}
body {
  font-family: Frank Ruhl Libre;
}
.display-1 {
  font-family: 'Tapestry', handwriting;
  font-size: 4rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Tapestry', handwriting;
  font-size: 2rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Tapestry', handwriting;
  font-size: 1.375rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.71875rem;
}
.display-5 {
  font-family: 'Tapestry', handwriting;
  font-size: 3rem;
  line-height: 1.05;
}
.display-5 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-7 {
  font-family: 'Tapestry', handwriting;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
  .display-2 {
    font-size: 1.6rem;
  }
  .display-5 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 1.42rem + (4 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (1.42rem + (4 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.4rem;
    font-size: calc( 1.1400000000000001rem + (2 - 1.1400000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1 * (1.1400000000000001rem + (2 - 1.1400000000000001) * ((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: 2.1rem;
    font-size: calc( 1.3rem + (3 - 1.3) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.05 * (1.3rem + (3 - 1.3) * ((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: #1455e6 !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: #1455e6 !important;
  border-color: #1455e6 !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: #0d3896 !important;
  border-color: #0d3896 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0d3896 !important;
  border-color: #0d3896 !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: #1455e6;
  border-color: #1455e6;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  box-shadow: none!important;
  border-color: #0d3896 !important;
  background-color: #0d3896 !important;
  color: #ffffff !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #1455e6 !important;
  border-color: #1455e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  color: #3c4e84;
  border-color: #3c4e84;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  box-shadow: none!important;
  border-color: #212b48 !important;
  background-color: #212b48 !important;
  color: #ffffff !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: #bf9341;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  box-shadow: none!important;
  border-color: #7f612b !important;
  background-color: #7f612b !important;
  color: #ffffff !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: #7f9c26;
  color: #ffffff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  box-shadow: none!important;
  border-color: #465615 !important;
  background-color: #465615 !important;
  color: #ffffff !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: #0f2051;
  color: #ffffff;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  box-shadow: none!important;
  border-color: #010308 !important;
  background-color: #010308 !important;
  color: #ffffff !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: #73091c;
  color: #ffffff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  box-shadow: none!important;
  border-color: #230308 !important;
  background-color: #230308 !important;
  color: #ffffff !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: #232323;
  color: #ffffff;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  box-shadow: none!important;
  border-color: #000000 !important;
  background-color: #000000 !important;
  color: #ffffff !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: #fafafa;
  color: #7a7a7a;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  box-shadow: none!important;
  border-color: #cfcfcf !important;
  background-color: #cfcfcf !important;
  color: #4f4f4f !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #1455e6 !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: #0c3288 !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: #1455e6;
}
.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-gallery-filter li.active .btn {
  background-color: #1455e6;
  border-color: #1455e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #1455e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #cbdafb;
}
.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: 'Tapestry', handwriting;
  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: #1455e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Tapestry', handwriting;
  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: #1455e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #1455e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #1455e6;
}
.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: #1455e6;
  border-bottom-color: #1455e6;
}
.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: #1455e6 !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='%231455e6' %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-te6eVEWIgs .navbar-dropdown {
  position: relative !important;
}
.cid-te6eVEWIgs .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-te6eVEWIgs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-te6eVEWIgs .dropdown-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: .4s all !important;
}
.cid-te6eVEWIgs .dropdown-item:hover,
.cid-te6eVEWIgs .dropdown-item:focus {
  background: rgba(191, 147, 65, 0.5) !important;
  color: white !important;
}
.cid-te6eVEWIgs .dropdown-item:hover span {
  color: white;
}
.cid-te6eVEWIgs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-te6eVEWIgs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-te6eVEWIgs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-te6eVEWIgs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-te6eVEWIgs .nav-link {
  position: relative;
}
.cid-te6eVEWIgs .container {
  display: flex;
  margin: auto;
  max-width: 1600px;
}
.cid-te6eVEWIgs .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0 !important;
}
.cid-te6eVEWIgs .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-te6eVEWIgs .iconfont-wrapper:hover .mbr-iconfont {
  color: #1455e6;
}
.cid-te6eVEWIgs .dropdown-menu,
.cid-te6eVEWIgs .navbar.opened {
  background: #1a2229 !important;
}
.cid-te6eVEWIgs .nav-item:focus,
.cid-te6eVEWIgs .nav-link:focus {
  outline: none;
}
.cid-te6eVEWIgs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-te6eVEWIgs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-te6eVEWIgs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-te6eVEWIgs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-te6eVEWIgs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-te6eVEWIgs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-te6eVEWIgs .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a2229;
  padding: 0 !important;
}
.cid-te6eVEWIgs .navbar.opened {
  transition: all 0.3s;
}
.cid-te6eVEWIgs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-te6eVEWIgs .navbar .navbar-logo img {
  width: auto;
}
.cid-te6eVEWIgs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-te6eVEWIgs .navbar.collapsed {
  justify-content: center;
}
.cid-te6eVEWIgs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-te6eVEWIgs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-te6eVEWIgs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-te6eVEWIgs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-te6eVEWIgs .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-te6eVEWIgs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-te6eVEWIgs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-te6eVEWIgs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-te6eVEWIgs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-te6eVEWIgs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-te6eVEWIgs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-te6eVEWIgs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-te6eVEWIgs .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-te6eVEWIgs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-te6eVEWIgs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-te6eVEWIgs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-te6eVEWIgs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-te6eVEWIgs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-te6eVEWIgs .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  padding: 0 !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.cid-te6eVEWIgs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-te6eVEWIgs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-te6eVEWIgs .dropdown-item.active,
.cid-te6eVEWIgs .dropdown-item:active {
  background-color: transparent;
}
.cid-te6eVEWIgs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-te6eVEWIgs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-te6eVEWIgs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-te6eVEWIgs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a2229;
}
.cid-te6eVEWIgs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-te6eVEWIgs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-te6eVEWIgs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-te6eVEWIgs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-te6eVEWIgs button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-te6eVEWIgs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-te6eVEWIgs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-te6eVEWIgs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-te6eVEWIgs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-te6eVEWIgs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-te6eVEWIgs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-te6eVEWIgs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-te6eVEWIgs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-te6eVEWIgs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-te6eVEWIgs .navbar-dropdown {
  padding: 0 1rem;
}
.cid-te6eVEWIgs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-te6eVEWIgs .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-te6eVEWIgs .navbar {
    height: 70px;
  }
  .cid-te6eVEWIgs .navbar.opened {
    height: auto;
  }
  .cid-te6eVEWIgs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-te6eVEWIgs .header-item {
  width: 33.33333333%;
  padding: 10px 0;
}
.cid-te6eVEWIgs .navbar-toggler {
  margin-left: 10px;
}
.cid-te6eVEWIgs .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #b84358;
}
.cid-te6eVEWIgs .navbar-logo {
  margin-right: 0 !important;
}
.cid-te6eVEWIgs .mbr-text {
  width: 100%;
  color: #BF9341;
}
@media (max-width: 575px) {
  .cid-te6eVEWIgs .mbr-text {
    display: none;
  }
}
.cid-te6eVEWIgs .navbar-collapse {
  padding-top: 40px !important;
}
.cid-te6eVEWIgs .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-te6eVEWIgs .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-ucQk0oKt2u {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
}
.cid-ucQk0oKt2u .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQk0oKt2u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQk0oKt2u .content-container {
  display: flex;
  align-items: stretch;
}
@media (max-width: 575px) {
  .cid-ucQk0oKt2u .content-container {
    flex-wrap: wrap;
  }
}
.cid-ucQk0oKt2u .text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 50%;
}
@media (max-width: 575px) {
  .cid-ucQk0oKt2u .text-container {
    width: 100%;
  }
}
.cid-ucQk0oKt2u .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
@media (max-width: 575px) {
  .cid-ucQk0oKt2u .card-box {
    padding-top: 26%;
  }
}
.cid-ucQk0oKt2u .img-container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 575px) {
  .cid-ucQk0oKt2u .img-container {
    width: 100%;
  }
}
.cid-ucQk0oKt2u .image-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.cid-ucQk0oKt2u .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 575px) {
  .cid-ucQk0oKt2u .image-wrapper img {
    width: 55%;
  }
}
.cid-ucQk0oKt2u .card-title {
  width: 100%;
  color: #BF9341;
  padding: 80px 22% 80px 17%;
}
@media (max-width: 991px) {
  .cid-ucQk0oKt2u .card-title {
    padding: 70px 17.5% 70px 17.5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQk0oKt2u .card-title {
    padding: 80% 7.5% 70px 7.5%;
  }
}
@media (max-width: 575px) {
  .cid-ucQk0oKt2u .card-title {
    padding: 0 45% 0 0;
  }
}
.cid-ucQk0oKt2u .mbr-text {
  color: #BF9341;
  padding: 56px 17% 0 41%;
}
@media (max-width: 991px) {
  .cid-ucQk0oKt2u .mbr-text {
    padding: 48px 17.5% 0 17.5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQk0oKt2u .mbr-text {
    padding: 48px 7.5% 0 7.5%;
  }
}
@media (max-width: 575px) {
  .cid-ucQk0oKt2u .mbr-text {
    padding: 20% 0 0 26%;
  }
}
.cid-ucQk0oKt2u .btn-content {
  width: 100%;
  padding: 0 22% 0 17%;
}
@media (max-width: 991px) {
  .cid-ucQk0oKt2u .btn-content {
    padding: 0 17.5% 0 17.5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQk0oKt2u .btn-content {
    padding: 0 7.5% 0 7.5%;
  }
}
@media (max-width: 575px) {
  .cid-ucQk0oKt2u .btn-content {
    padding: 0;
  }
}
.cid-ucQk0oKt2u .mbr-section-btn {
  margin-top: 30px;
}
.cid-te6fxTb0G7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ded7cd;
  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-te6lCoFg9x {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
  position: relative;
  overflow: hidden;
}
.cid-te6lCoFg9x .container {
  max-width: 920px;
}
.cid-te6lCoFg9x .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: #ded7cd;
  border: 1px solid #ded7cd;
}
@media (max-width: 991px) {
  .cid-te6lCoFg9x .border-container {
    padding: 7% 5%;
  }
}
@media (max-width: 767px) {
  .cid-te6lCoFg9x .border-container {
    padding: 8% 6%;
  }
}
@media (max-width: 575px) {
  .cid-te6lCoFg9x .border-container {
    padding: 9% 7%;
  }
}
.cid-te6lCoFg9x .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-te6lCoFg9x .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-te6lCoFg9x .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-te6lCoFg9x .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-te6lCoFg9x .border-frame {
  position: absolute;
  z-index: 5;
  width: 60px;
  aspect-ratio: 1;
  background-color: #1a2229;
  border-color: #ded7cd;
}
@media (max-width: 991px) {
  .cid-te6lCoFg9x .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-te6lCoFg9x .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-te6lCoFg9x .border-frame {
    width: 7%;
  }
}
.cid-te6lCoFg9x .content-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-te6lCoFg9x .content-container {
    min-height: auto;
  }
}
.cid-te6lCoFg9x .text-container {
  width: 100%;
}
.cid-te6lCoFg9x .text-wrapper {
  width: 100%;
}
.cid-te6lCoFg9x .mbr-text {
  color: #000000;
  width: 100%;
  margin: 0;
}
.cid-te6lCoFg9x .card-title {
  color: #BF9341;
  width: 100%;
  margin-bottom: 0;
  margin-top: 1.5rem;
}
.cid-te6lCoFg9x .line-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 0 50% 0;
  height: 1px;
  width: 1000%;
  background-color: #ded7cd;
}
.cid-te6lCoFg9x .line-frame-1 {
  transform: rotate(30deg) translate(-50%, -50%);
}
.cid-te6lCoFg9x .line-frame-2 {
  transform: rotate(60deg) translate(-50%, -50%);
}
.cid-te6lCoFg9x .line-frame-3 {
  transform: rotate(90deg) translate(-50%, -50%);
}
.cid-te6lCoFg9x .line-frame-4 {
  transform: rotate(120deg) translate(-50%, -50%);
}
.cid-te6lCoFg9x .line-frame-5 {
  transform: rotate(150deg) translate(-50%, -50%);
}
.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-ucQxMNingT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
  position: relative;
}
.cid-ucQxMNingT::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #000000, #323337);
}
.cid-ucQxMNingT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQxMNingT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQxMNingT .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-ucQxMNingT .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-ucQxMNingT .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucQxMNingT .container {
    padding: 0 16px;
  }
}
.cid-ucQxMNingT .content-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-ucQxMNingT .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-ucQxMNingT .item {
  margin-bottom: 32px;
}
.cid-ucQxMNingT .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-ucQxMNingT .item .item-wrapper .card-box .title-wrapper .title-wrap {
    margin-bottom: 16px;
  }
}
.cid-ucQxMNingT .item .item-wrapper .card-box .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 36px;
  color: #f4f4f4;
  margin-right: 12px;
}
.cid-ucQxMNingT .item .item-wrapper .card-box .title-wrapper .title-wrap .card-title {
  margin-bottom: 0;
}
.cid-ucQxMNingT .item .item-wrapper .card-box .text-wrap .card-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
.cid-ucQxMNingT .mbr-section-title {
  color: #c49e4b;
  text-align: center;
}
.cid-ucQxMNingT .card-title {
  color: #f4f4f4;
}
.cid-ucQxMNingT .card-text {
  color: #c1c1c1;
}
.cid-ucQAvHEt0Z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
}
.cid-ucQAvHEt0Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQAvHEt0Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQAvHEt0Z .row {
  justify-content: left;
}
.cid-ucQAvHEt0Z .main-col {
  display: flex;
}
.cid-ucQAvHEt0Z .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 850px;
}
.cid-ucQAvHEt0Z .mbr-section-title {
  color: #BF9341;
  width: 100%;
}
.cid-ucQAvHEt0Z .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-top: 20px;
}
.cid-ucQAvHEt0Z .mbr-text {
  color: #BF9341;
  width: 100%;
  margin-top: 1rem;
}
.cid-ucQuEo4cop {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ded7cd;
}
.cid-ucQuEo4cop .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQuEo4cop .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQuEo4cop .container {
  max-width: 900px;
}
.cid-ucQuEo4cop .content-container {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-ucQuEo4cop .content-container {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.cid-ucQuEo4cop .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 45%;
  padding-left: 40px;
}
@media (max-width: 991px) {
  .cid-ucQuEo4cop .card-wrapper {
    padding-left: 32px;
  }
}
@media (max-width: 767px) {
  .cid-ucQuEo4cop .card-wrapper {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
}
.cid-ucQuEo4cop .card-box {
  width: 100%;
}
.cid-ucQuEo4cop .card-title {
  width: 100%;
  color: #192732;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-ucQuEo4cop .card-title {
    margin-bottom: 24px;
    text-align: center !important;
  }
}
.cid-ucQuEo4cop .mbr-text {
  width: 100%;
  color: #192732;
}
@media (max-width: 767px) {
  .cid-ucQuEo4cop .mbr-text {
    text-align: center !important;
  }
}
.cid-ucQuEo4cop .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-ucQuEo4cop .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-ucQuEo4cop .img-container {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 40px;
}
@media (max-width: 991px) {
  .cid-ucQuEo4cop .img-container {
    padding-right: 32px;
  }
}
@media (max-width: 767px) {
  .cid-ucQuEo4cop .img-container {
    width: 100%;
    padding: 0;
  }
}
.cid-ucQuEo4cop .image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-ucQuEo4cop .image-wrapper img {
  object-fit: cover;
  max-height: 100vh;
}
.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: #e2f5a7;
}
@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: #e2f5a7;
}
.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: #e2f5a7;
}
.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-ucQXj9V4mq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/82757c3c-7b86-4d5a-8c66-de4a94b73081-large16x9-gmcbounce-1015x571.jpg");
}
.cid-ucQXj9V4mq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQXj9V4mq .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-ucQXj9V4mq .container {
    padding: 0 24px;
  }
}
.cid-ucQXj9V4mq .card-wrapper .card-wrap {
  display: inline-flex;
  flex-direction: column;
  background-color: #ded7cd;
  border-radius: .6rem !important;
  padding: 42px 48px 48px;
  width: 40%;
}
@media (max-width: 1440px) {
  .cid-ucQXj9V4mq .card-wrapper .card-wrap {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .cid-ucQXj9V4mq .card-wrapper .card-wrap {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .cid-ucQXj9V4mq .card-wrapper .card-wrap {
    padding: 20px;
    width: 100%;
  }
}
.cid-ucQXj9V4mq .card-wrapper .card-wrap .mbr-desc {
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ucQXj9V4mq .card-wrapper .card-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-ucQXj9V4mq .card-wrapper .card-wrap .mbr-section-title {
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ucQXj9V4mq .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-ucQXj9V4mq .card-wrapper .card-wrap .mbr-text {
  width: 100%;
  margin-bottom: 0;
}
.cid-ucQXj9V4mq .mbr-desc {
  color: #202020;
}
.cid-ucQXj9V4mq .mbr-section-title {
  color: #202020;
}
.cid-ucQXj9V4mq .mbr-text {
  color: #202020;
}
.cid-ucQC4bQnmh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a2229;
}
.cid-ucQC4bQnmh .row {
  align-items: center;
  width: 100%;
}
.cid-ucQC4bQnmh .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-ucQC4bQnmh .mbr-section-title {
  color: #000000;
}
.cid-ucQC4bQnmh .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-ucQC4bQnmh .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-ucQC4bQnmh .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-ucQC4bQnmh .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucQC4bQnmh .text-container {
  padding: 32px;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-ucQC4bQnmh .text-container {
    padding: 24px;
  }
}
.cid-ucQC4bQnmh .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucQC4bQnmh .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-ucQC4bQnmh .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #32fc1d;
}
.cid-ucQC4bQnmh .card-title {
  width: 100%;
  color: #c49e4b;
  margin-bottom: 0;
}
.cid-ucQC4bQnmh .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.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: #ecca7f;
  width: 100%;
  margin-top: 20px;
}
.cid-te6hFZ5eog .mbr-text {
  color: #BF9341;
  width: 100%;
  margin-top: 1rem;
}
.cid-ucQB06Mt3L {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ded7cd;
}
.cid-ucQB06Mt3L .container-fluid {
  padding: 0 3rem;
}
.cid-ucQB06Mt3L .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #1455e6 50%, #3c4e84 120%);
  display: inline-block;
}
.cid-ucQB06Mt3L .mbr-section-title {
  color: #000000;
}
.cid-ucQB06Mt3L .mbr-section-subtitle {
  color: #000000;
}
.cid-ucQB06Mt3L .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-ucQB06Mt3L .header-text {
  padding: 2rem 1rem !important;
}
.cid-ucQB06Mt3L .card {
  border-radius: 25px !important;
  background: #353535;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-ucQB06Mt3L .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-ucQB06Mt3L .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-ucQB06Mt3L .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-ucQB06Mt3L .card .card-header a.panel-title:hover .sign {
  background-color: #c49e4b !important;
}
.cid-ucQB06Mt3L .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #000000;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-ucQB06Mt3L .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-ucQB06Mt3L .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-ucQB06Mt3L .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-ucQB06Mt3L .container-fluid {
    padding: 0 1rem;
  }
  .cid-ucQB06Mt3L .header-text {
    padding: 1rem !important;
  }
  .cid-ucQB06Mt3L .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-ucQB06Mt3L .panel-body {
    width: calc(100% - 48px);
  }
  .cid-ucQB06Mt3L .panel-group {
    padding: 0;
  }
}
.cid-ucQB06Mt3L .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQB06Mt3L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQB06Mt3L .header-text,
.cid-ucQB06Mt3L .sign {
  color: #ecca7f;
}
.cid-ucQB06Mt3L .mbr-section-title,
.cid-ucQB06Mt3L .underline {
  color: #bf9341;
}
.cid-ucQu89z5IF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2b2b2b;
}
.cid-ucQu89z5IF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQu89z5IF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQu89z5IF .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-ucQu89z5IF .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ucQu89z5IF .container {
    padding: 0 30px;
  }
}
.cid-ucQu89z5IF .mbr-section-title {
  margin-bottom: 70px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucQu89z5IF .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ucQu89z5IF .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucQu89z5IF .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-ucQu89z5IF .video-block .video-wrapper .app-video-wrapper::before {
  color: #fe5115;
  text-shadow: none;
}
.cid-ucQu89z5IF .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucQu89z5IF .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-te6lv7OxPm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  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: #ecca7f;
  width: 100%;
}
.cid-te6lv7OxPm .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
.cid-te6lv7OxPm .mbr-text {
  color: #ecca7f;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}
.cid-ucQuhkR19n {
  display: flex;
  padding-top: 105px;
  padding-bottom: 105px;
  background: linear-gradient(to bottom, #bf9341, #ffffff);
}
.cid-ucQuhkR19n .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-ucQuhkR19n .mbr-text,
.cid-ucQuhkR19n .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-ucQuhkR19n .mbr-section-title,
.cid-ucQuhkR19n .line {
  color: #232323;
}
.cid-ucQuhkR19n .google-map {
  height: 40rem;
  filter: grayscale(1);
  position: relative;
  border-radius: 2rem;
}
.cid-ucQuhkR19n .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-ucQuhkR19n .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ucQuhkR19n .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucQuhkR19n .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucQuhkR19n h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-ucQuhkR19n h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-ucQuhkR19n .mbr-section-subtitle,
.cid-ucQuhkR19n .align {
  text-align: left;
  color: #232323;
}
.cid-ucQouFn9Uq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a2229;
}
.cid-ucQouFn9Uq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQouFn9Uq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQouFn9Uq .container {
  max-width: 1600px;
}
.cid-ucQouFn9Uq .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #c5e073;
}
@media (max-width: 991px) {
  .cid-ucQouFn9Uq .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-ucQouFn9Uq .border-container {
    padding: 30px 0;
  }
}
.cid-ucQouFn9Uq .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-ucQouFn9Uq .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-ucQouFn9Uq .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-ucQouFn9Uq .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-ucQouFn9Uq .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #1a2229;
  border-color: #c5e073;
}
@media (max-width: 991px) {
  .cid-ucQouFn9Uq .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQouFn9Uq .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-ucQouFn9Uq .border-frame {
    width: 7%;
  }
}
.cid-ucQouFn9Uq .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-ucQouFn9Uq .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-ucQouFn9Uq .footer-item-container:not(:first-child) {
  border-left: 1px solid #c5e073;
}
@media (max-width: 991px) {
  .cid-ucQouFn9Uq .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-ucQouFn9Uq .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid #c5e073;
  }
}
@media (max-width: 575px) {
  .cid-ucQouFn9Uq .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-ucQouFn9Uq .footer-item {
  height: 100%;
}
.cid-ucQouFn9Uq .mbr-section-subtitle {
  color: #ecca7f;
  width: 100%;
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .cid-ucQouFn9Uq .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-ucQouFn9Uq .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-ucQouFn9Uq .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-ucQouFn9Uq .mbr-section-btn {
  margin-top: 20px;
}
.cid-ucQouFn9Uq .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1455e6;
}
.cid-ucQouFn9Uq .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-ucQouFn9Uq .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-ucQouFn9Uq .list li:hover {
  color: #1455e6 !important;
}
.cid-ucQouFn9Uq .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQouFn9Uq .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQouFn9Uq .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQouFn9Uq .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQouFn9Uq .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-ucQouFn9Uq .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-ucQouFn9Uq .social-text {
  color: #1455e6;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-ucQouFn9Uq .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-ucQouFn9Uq .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-ucQouFn9Uq .soc-item:hover .mbr-iconfont {
  color: #1455e6 !important;
}
.cid-ucQouFn9Uq .soc-item:hover .social-text {
  color: #1455e6 !important;
}
.cid-ucQouFn9Uq .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-ucQouFn9Uq .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-ucQouFn9Uq .copyright-container {
    margin-top: 30px;
  }
}
.cid-ucQouFn9Uq .copyright-text {
  color: #ecca7f;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ucQouFn9Uq .copyright-text {
    text-align: center !important;
  }
}
.cid-ucQouFn9Uq .mbr-text,
.cid-ucQouFn9Uq .mbr-section-btn {
  color: #ecca7f;
}
.cid-ucQMxbBI97 .navbar-dropdown {
  position: relative !important;
}
.cid-ucQMxbBI97 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucQMxbBI97 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucQMxbBI97 .dropdown-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: .4s all !important;
}
.cid-ucQMxbBI97 .dropdown-item:hover,
.cid-ucQMxbBI97 .dropdown-item:focus {
  background: rgba(191, 147, 65, 0.5) !important;
  color: white !important;
}
.cid-ucQMxbBI97 .dropdown-item:hover span {
  color: white;
}
.cid-ucQMxbBI97 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucQMxbBI97 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucQMxbBI97 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucQMxbBI97 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucQMxbBI97 .nav-link {
  position: relative;
}
.cid-ucQMxbBI97 .container {
  display: flex;
  margin: auto;
  max-width: 1600px;
}
.cid-ucQMxbBI97 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0 !important;
}
.cid-ucQMxbBI97 .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-ucQMxbBI97 .iconfont-wrapper:hover .mbr-iconfont {
  color: #1455e6;
}
.cid-ucQMxbBI97 .dropdown-menu,
.cid-ucQMxbBI97 .navbar.opened {
  background: #1a2229 !important;
}
.cid-ucQMxbBI97 .nav-item:focus,
.cid-ucQMxbBI97 .nav-link:focus {
  outline: none;
}
.cid-ucQMxbBI97 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucQMxbBI97 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucQMxbBI97 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucQMxbBI97 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucQMxbBI97 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucQMxbBI97 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucQMxbBI97 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a2229;
  padding: 0 !important;
}
.cid-ucQMxbBI97 .navbar.opened {
  transition: all 0.3s;
}
.cid-ucQMxbBI97 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucQMxbBI97 .navbar .navbar-logo img {
  width: auto;
}
.cid-ucQMxbBI97 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucQMxbBI97 .navbar.collapsed {
  justify-content: center;
}
.cid-ucQMxbBI97 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucQMxbBI97 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ucQMxbBI97 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucQMxbBI97 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucQMxbBI97 .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-ucQMxbBI97 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucQMxbBI97 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucQMxbBI97 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucQMxbBI97 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucQMxbBI97 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucQMxbBI97 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucQMxbBI97 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucQMxbBI97 .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-ucQMxbBI97 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucQMxbBI97 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucQMxbBI97 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ucQMxbBI97 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucQMxbBI97 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucQMxbBI97 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  padding: 0 !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.cid-ucQMxbBI97 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucQMxbBI97 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucQMxbBI97 .dropdown-item.active,
.cid-ucQMxbBI97 .dropdown-item:active {
  background-color: transparent;
}
.cid-ucQMxbBI97 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucQMxbBI97 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucQMxbBI97 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucQMxbBI97 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a2229;
}
.cid-ucQMxbBI97 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucQMxbBI97 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucQMxbBI97 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucQMxbBI97 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucQMxbBI97 button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucQMxbBI97 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ucQMxbBI97 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucQMxbBI97 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucQMxbBI97 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucQMxbBI97 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucQMxbBI97 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucQMxbBI97 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucQMxbBI97 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucQMxbBI97 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucQMxbBI97 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ucQMxbBI97 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucQMxbBI97 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucQMxbBI97 .navbar {
    height: 70px;
  }
  .cid-ucQMxbBI97 .navbar.opened {
    height: auto;
  }
  .cid-ucQMxbBI97 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucQMxbBI97 .header-item {
  width: 33.33333333%;
  padding: 10px 0;
}
.cid-ucQMxbBI97 .navbar-toggler {
  margin-left: 10px;
}
.cid-ucQMxbBI97 .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #b84358;
}
.cid-ucQMxbBI97 .navbar-logo {
  margin-right: 0 !important;
}
.cid-ucQMxbBI97 .mbr-text {
  width: 100%;
  color: #BF9341;
}
@media (max-width: 575px) {
  .cid-ucQMxbBI97 .mbr-text {
    display: none;
  }
}
.cid-ucQMxbBI97 .navbar-collapse {
  padding-top: 40px !important;
}
.cid-ucQMxbBI97 .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-ucQMxbBI97 .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-ucQMxcqnaP {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
}
.cid-ucQMxcqnaP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxcqnaP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxcqnaP .content-container {
  display: flex;
  align-items: stretch;
}
@media (max-width: 575px) {
  .cid-ucQMxcqnaP .content-container {
    flex-wrap: wrap;
  }
}
.cid-ucQMxcqnaP .text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 50%;
}
@media (max-width: 575px) {
  .cid-ucQMxcqnaP .text-container {
    width: 100%;
  }
}
.cid-ucQMxcqnaP .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
@media (max-width: 575px) {
  .cid-ucQMxcqnaP .card-box {
    padding-top: 26%;
  }
}
.cid-ucQMxcqnaP .img-container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 575px) {
  .cid-ucQMxcqnaP .img-container {
    width: 100%;
  }
}
.cid-ucQMxcqnaP .image-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.cid-ucQMxcqnaP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 575px) {
  .cid-ucQMxcqnaP .image-wrapper img {
    width: 55%;
  }
}
.cid-ucQMxcqnaP .card-title {
  width: 100%;
  color: #BF9341;
  padding: 80px 22% 80px 17%;
}
@media (max-width: 991px) {
  .cid-ucQMxcqnaP .card-title {
    padding: 70px 17.5% 70px 17.5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxcqnaP .card-title {
    padding: 80% 7.5% 70px 7.5%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxcqnaP .card-title {
    padding: 0 45% 0 0;
  }
}
.cid-ucQMxcqnaP .mbr-text {
  color: #BF9341;
  padding: 56px 17% 0 41%;
}
@media (max-width: 991px) {
  .cid-ucQMxcqnaP .mbr-text {
    padding: 48px 17.5% 0 17.5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxcqnaP .mbr-text {
    padding: 48px 7.5% 0 7.5%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxcqnaP .mbr-text {
    padding: 20% 0 0 26%;
  }
}
.cid-ucQMxcqnaP .btn-content {
  width: 100%;
  padding: 0 22% 0 17%;
}
@media (max-width: 991px) {
  .cid-ucQMxcqnaP .btn-content {
    padding: 0 17.5% 0 17.5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxcqnaP .btn-content {
    padding: 0 7.5% 0 7.5%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxcqnaP .btn-content {
    padding: 0;
  }
}
.cid-ucQMxcqnaP .mbr-section-btn {
  margin-top: 30px;
}
.cid-ucQMxd7czE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ded7cd;
  overflow: hidden;
}
.cid-ucQMxd7czE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxd7czE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxd7czE .row {
  justify-content: left;
}
.cid-ucQMxd7czE .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-ucQMxd7czE .content-container {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxd7czE .content-container {
    flex-wrap: wrap;
    padding: 40px 0;
  }
}
.cid-ucQMxd7czE .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-ucQMxd7czE .line-frame-1 {
  top: calc(100% - 11px);
}
.cid-ucQMxd7czE .line-frame-2 {
  bottom: calc(100% - 11px);
}
.cid-ucQMxd7czE .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-ucQMxd7czE .point-frame-1 {
  top: 19px;
}
.cid-ucQMxd7czE .point-frame-2 {
  bottom: 19px;
}
.cid-ucQMxd7czE .title-container {
  width: 60%;
  padding: 0 80px 0 0;
}
@media (max-width: 991px) {
  .cid-ucQMxd7czE .title-container {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxd7czE .title-container {
    width: 100%;
    padding: 0;
  }
}
.cid-ucQMxd7czE .text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 40%;
  padding: 0 0 0 80px;
}
@media (max-width: 991px) {
  .cid-ucQMxd7czE .text-container {
    padding: 0 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxd7czE .text-container {
    width: 100%;
    padding: 32px 0 0 0;
  }
}
.cid-ucQMxd7czE .item-container {
  width: 100%;
}
.cid-ucQMxd7czE .mbr-section-title {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMxd7czE .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMxd7czE .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .cid-ucQMxd7czE .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-ucQMxdDcD4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
  position: relative;
  overflow: hidden;
}
.cid-ucQMxdDcD4 .container {
  max-width: 920px;
}
.cid-ucQMxdDcD4 .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: #ded7cd;
  border: 1px solid #ded7cd;
}
@media (max-width: 991px) {
  .cid-ucQMxdDcD4 .border-container {
    padding: 7% 5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxdDcD4 .border-container {
    padding: 8% 6%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxdDcD4 .border-container {
    padding: 9% 7%;
  }
}
.cid-ucQMxdDcD4 .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-ucQMxdDcD4 .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-ucQMxdDcD4 .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-ucQMxdDcD4 .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-ucQMxdDcD4 .border-frame {
  position: absolute;
  z-index: 5;
  width: 60px;
  aspect-ratio: 1;
  background-color: #1a2229;
  border-color: #ded7cd;
}
@media (max-width: 991px) {
  .cid-ucQMxdDcD4 .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxdDcD4 .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxdDcD4 .border-frame {
    width: 7%;
  }
}
.cid-ucQMxdDcD4 .content-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucQMxdDcD4 .content-container {
    min-height: auto;
  }
}
.cid-ucQMxdDcD4 .text-container {
  width: 100%;
}
.cid-ucQMxdDcD4 .text-wrapper {
  width: 100%;
}
.cid-ucQMxdDcD4 .mbr-text {
  color: #000000;
  width: 100%;
  margin: 0;
}
.cid-ucQMxdDcD4 .card-title {
  color: #BF9341;
  width: 100%;
  margin-bottom: 0;
  margin-top: 1.5rem;
}
.cid-ucQMxdDcD4 .line-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 0 50% 0;
  height: 1px;
  width: 1000%;
  background-color: #ded7cd;
}
.cid-ucQMxdDcD4 .line-frame-1 {
  transform: rotate(30deg) translate(-50%, -50%);
}
.cid-ucQMxdDcD4 .line-frame-2 {
  transform: rotate(60deg) translate(-50%, -50%);
}
.cid-ucQMxdDcD4 .line-frame-3 {
  transform: rotate(90deg) translate(-50%, -50%);
}
.cid-ucQMxdDcD4 .line-frame-4 {
  transform: rotate(120deg) translate(-50%, -50%);
}
.cid-ucQMxdDcD4 .line-frame-5 {
  transform: rotate(150deg) translate(-50%, -50%);
}
.cid-ucQMxemzyG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ded7cd;
}
.cid-ucQMxemzyG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxemzyG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxemzyG .container {
  max-width: 1600px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ucQMxemzyG .container {
    max-width: 80%;
  }
}
.cid-ucQMxemzyG .content-container {
  display: flex;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-ucQMxemzyG .content-container {
    flex-wrap: wrap;
  }
}
.cid-ucQMxemzyG .text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 30%;
}
@media (max-width: 991px) {
  .cid-ucQMxemzyG .text-container {
    width: 100%;
  }
}
.cid-ucQMxemzyG .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucQMxemzyG .card-box {
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxemzyG .card-box {
    margin-bottom: 40px;
  }
}
.cid-ucQMxemzyG .card-title {
  width: 100%;
  color: #192732;
}
.cid-ucQMxemzyG .mbr-text {
  color: #192732;
  padding: 60px 0 0 23%;
}
@media (max-width: 991px) {
  .cid-ucQMxemzyG .mbr-text {
    padding: 44px 0 0 13%;
    max-width: 56%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxemzyG .mbr-text {
    max-width: 100%;
    padding-left: 0;
  }
}
.cid-ucQMxemzyG .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-ucQMxemzyG .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-ucQMxemzyG .btn-primary-outline {
  color: #192732;
}
.cid-ucQMxemzyG .img-container {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ucQMxemzyG .img-container {
    width: 100%;
  }
}
.cid-ucQMxemzyG .image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-ucQMxemzyG .image-wrapper img {
  object-fit: cover;
}
.cid-ucQMxemzyG .image-wrapper-1 {
  margin-bottom: 32px;
}
.cid-ucQMxemzyG .image-wrapper-1 img {
  width: 32%;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-ucQMxemzyG .image-wrapper-1 img {
    width: 41%;
  }
}
@media (max-width: 991px) {
  .cid-ucQMxemzyG .image-wrapper-1 {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxemzyG .image-wrapper-1 {
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxemzyG .image-wrapper-1 {
    margin-bottom: 40px;
  }
}
.cid-ucQMxemzyG .image-wrapper-2 img {
  width: 83%;
  padding-left: 23.5%;
}
@media (max-width: 991px) {
  .cid-ucQMxemzyG .image-wrapper-2 img {
    width: 80%;
    padding-left: 0;
    margin-right: auto;
  }
}
.cid-ucQMxeS8pd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
  position: relative;
}
.cid-ucQMxeS8pd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #000000, #323337);
}
.cid-ucQMxeS8pd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxeS8pd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxeS8pd .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-ucQMxeS8pd .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-ucQMxeS8pd .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucQMxeS8pd .container {
    padding: 0 16px;
  }
}
.cid-ucQMxeS8pd .content-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-ucQMxeS8pd .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-ucQMxeS8pd .item {
  margin-bottom: 32px;
}
.cid-ucQMxeS8pd .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-ucQMxeS8pd .item .item-wrapper .card-box .title-wrapper .title-wrap {
    margin-bottom: 16px;
  }
}
.cid-ucQMxeS8pd .item .item-wrapper .card-box .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 36px;
  color: #f4f4f4;
  margin-right: 12px;
}
.cid-ucQMxeS8pd .item .item-wrapper .card-box .title-wrapper .title-wrap .card-title {
  margin-bottom: 0;
}
.cid-ucQMxeS8pd .item .item-wrapper .card-box .text-wrap .card-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
.cid-ucQMxeS8pd .mbr-section-title {
  color: #c49e4b;
  text-align: center;
}
.cid-ucQMxeS8pd .card-title {
  color: #f4f4f4;
}
.cid-ucQMxeS8pd .card-text {
  color: #c1c1c1;
}
.cid-ucQMxfKUHZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
}
.cid-ucQMxfKUHZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxfKUHZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxfKUHZ .row {
  justify-content: left;
}
.cid-ucQMxfKUHZ .main-col {
  display: flex;
}
.cid-ucQMxfKUHZ .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 850px;
}
.cid-ucQMxfKUHZ .mbr-section-title {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMxfKUHZ .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-top: 20px;
}
.cid-ucQMxfKUHZ .mbr-text {
  color: #BF9341;
  width: 100%;
  margin-top: 1rem;
}
.cid-ucQMxgqrKr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ded7cd;
}
.cid-ucQMxgqrKr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxgqrKr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxgqrKr .container {
  max-width: 900px;
}
.cid-ucQMxgqrKr .content-container {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-ucQMxgqrKr .content-container {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.cid-ucQMxgqrKr .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 45%;
  padding-left: 40px;
}
@media (max-width: 991px) {
  .cid-ucQMxgqrKr .card-wrapper {
    padding-left: 32px;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxgqrKr .card-wrapper {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
}
.cid-ucQMxgqrKr .card-box {
  width: 100%;
}
.cid-ucQMxgqrKr .card-title {
  width: 100%;
  color: #192732;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-ucQMxgqrKr .card-title {
    margin-bottom: 24px;
    text-align: center !important;
  }
}
.cid-ucQMxgqrKr .mbr-text {
  width: 100%;
  color: #192732;
}
@media (max-width: 767px) {
  .cid-ucQMxgqrKr .mbr-text {
    text-align: center !important;
  }
}
.cid-ucQMxgqrKr .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-ucQMxgqrKr .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-ucQMxgqrKr .img-container {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 40px;
}
@media (max-width: 991px) {
  .cid-ucQMxgqrKr .img-container {
    padding-right: 32px;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxgqrKr .img-container {
    width: 100%;
    padding: 0;
  }
}
.cid-ucQMxgqrKr .image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-ucQMxgqrKr .image-wrapper img {
  object-fit: cover;
  max-height: 100vh;
}
.cid-ucQMxhde7Z {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
  overflow: hidden;
}
.cid-ucQMxhde7Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxhde7Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxhde7Z .row {
  justify-content: left;
}
.cid-ucQMxhde7Z .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(226, 245, 167, 0.1);
}
@media (max-width: 1199px) {
  .cid-ucQMxhde7Z .content-container {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-ucQMxhde7Z .content-container {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxhde7Z .content-container {
    flex-wrap: wrap;
    padding: 40px 0;
  }
}
.cid-ucQMxhde7Z .line-frame {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
  width: 1px;
  background-color: rgba(226, 245, 167, 0.1);
}
.cid-ucQMxhde7Z .line-frame-1 {
  top: calc(100% - 11px);
}
.cid-ucQMxhde7Z .line-frame-2 {
  bottom: calc(100% - 11px);
}
.cid-ucQMxhde7Z .point-frame {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 3px;
  height: 3px;
  background-color: rgba(226, 245, 167, 0.1);
}
.cid-ucQMxhde7Z .point-frame-1 {
  top: 19px;
}
.cid-ucQMxhde7Z .point-frame-2 {
  bottom: 19px;
}
.cid-ucQMxhde7Z .title-container {
  width: 70%;
  padding: 0 40px;
}
@media (max-width: 991px) {
  .cid-ucQMxhde7Z .title-container {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxhde7Z .title-container {
    width: 100%;
    padding: 0;
  }
}
.cid-ucQMxhde7Z .text-container {
  width: 30%;
  padding: 0 40px;
}
@media (max-width: 991px) {
  .cid-ucQMxhde7Z .text-container {
    padding: 0 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxhde7Z .text-container {
    width: 100%;
    padding: 32px 0 0 0;
  }
}
.cid-ucQMxhde7Z .item-container {
  width: 100%;
}
.cid-ucQMxhde7Z .mbr-section-title {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMxhde7Z .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMxhde7Z .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .cid-ucQMxhde7Z .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-ucQMxhde7Z .mbr-section-title-1 {
  text-align: center;
}
.cid-ucRbDveKLA {
  overflow: hidden;
  background-image: url("../../../assets/images/dfddfd-2000x1125.jpg");
}
.cid-ucRbDveKLA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucRbDveKLA .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-ucRbDveKLA .container {
    padding: 0 24px;
  }
}
.cid-ucRbDveKLA .card-wrapper .card-wrap {
  display: inline-flex;
  flex-direction: column;
  background-color: #ecca7f;
  border-radius: .6rem !important;
  padding: 42px 48px 48px;
  width: 40%;
}
@media (max-width: 1440px) {
  .cid-ucRbDveKLA .card-wrapper .card-wrap {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .cid-ucRbDveKLA .card-wrapper .card-wrap {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .cid-ucRbDveKLA .card-wrapper .card-wrap {
    padding: 20px;
    width: 100%;
  }
}
.cid-ucRbDveKLA .card-wrapper .card-wrap .mbr-desc {
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ucRbDveKLA .card-wrapper .card-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-ucRbDveKLA .card-wrapper .card-wrap .mbr-section-title {
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ucRbDveKLA .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-ucRbDveKLA .card-wrapper .card-wrap .mbr-text {
  width: 100%;
  margin-bottom: 0;
}
.cid-ucRbDveKLA .mbr-desc {
  color: #202020;
}
.cid-ucRbDveKLA .mbr-section-title {
  color: #202020;
}
.cid-ucRbDveKLA .mbr-text {
  color: #202020;
}
.cid-ucQMxiI3QM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a2229;
}
.cid-ucQMxiI3QM .row {
  align-items: center;
  width: 100%;
}
.cid-ucQMxiI3QM .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-ucQMxiI3QM .mbr-section-title {
  color: #000000;
}
.cid-ucQMxiI3QM .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-ucQMxiI3QM .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-ucQMxiI3QM .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-ucQMxiI3QM .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucQMxiI3QM .text-container {
  padding: 32px;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-ucQMxiI3QM .text-container {
    padding: 24px;
  }
}
.cid-ucQMxiI3QM .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucQMxiI3QM .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-ucQMxiI3QM .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #32fc1d;
}
.cid-ucQMxiI3QM .card-title {
  width: 100%;
  color: #c49e4b;
  margin-bottom: 0;
}
.cid-ucQMxiI3QM .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-ucQMxjN4qi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a2229;
}
.cid-ucQMxjN4qi .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxjN4qi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxjN4qi .row {
  justify-content: left;
}
.cid-ucQMxjN4qi .main-col {
  display: flex;
}
.cid-ucQMxjN4qi .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 850px;
}
.cid-ucQMxjN4qi .mbr-section-title {
  color: #BF9341;
  width: 100%;
  text-align: center;
}
.cid-ucQMxjN4qi .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-top: 20px;
}
.cid-ucQMxjN4qi .mbr-text {
  color: #BF9341;
  width: 100%;
  margin-top: 1rem;
}
.cid-ucQMxkj8Zv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ded7cd;
}
.cid-ucQMxkj8Zv .container-fluid {
  padding: 0 3rem;
}
.cid-ucQMxkj8Zv .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #1455e6 50%, #3c4e84 120%);
  display: inline-block;
}
.cid-ucQMxkj8Zv .mbr-section-title {
  color: #000000;
}
.cid-ucQMxkj8Zv .mbr-section-subtitle {
  color: #000000;
}
.cid-ucQMxkj8Zv .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-ucQMxkj8Zv .header-text {
  padding: 2rem 1rem !important;
}
.cid-ucQMxkj8Zv .card {
  border-radius: 25px !important;
  background: #ecca7f;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-ucQMxkj8Zv .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-ucQMxkj8Zv .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-ucQMxkj8Zv .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-ucQMxkj8Zv .card .card-header a.panel-title:hover .sign {
  background-color: #c49e4b !important;
}
.cid-ucQMxkj8Zv .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #000000;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-ucQMxkj8Zv .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-ucQMxkj8Zv .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-ucQMxkj8Zv .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-ucQMxkj8Zv .container-fluid {
    padding: 0 1rem;
  }
  .cid-ucQMxkj8Zv .header-text {
    padding: 1rem !important;
  }
  .cid-ucQMxkj8Zv .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-ucQMxkj8Zv .panel-body {
    width: calc(100% - 48px);
  }
  .cid-ucQMxkj8Zv .panel-group {
    padding: 0;
  }
}
.cid-ucQMxkj8Zv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxkj8Zv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxlpgwG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2b2b2b;
}
.cid-ucQMxlpgwG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxlpgwG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxlpgwG .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-ucQMxlpgwG .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ucQMxlpgwG .container {
    padding: 0 30px;
  }
}
.cid-ucQMxlpgwG .mbr-section-title {
  margin-bottom: 70px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucQMxlpgwG .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ucQMxlpgwG .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucQMxlpgwG .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-ucQMxlpgwG .video-block .video-wrapper .app-video-wrapper::before {
  color: #fe5115;
  text-shadow: none;
}
.cid-ucQMxlpgwG .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucQMxlpgwG .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-ucQMxlWkO1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
}
.cid-ucQMxlWkO1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxlWkO1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxlWkO1 .row {
  justify-content: left;
}
.cid-ucQMxlWkO1 .main-col {
  display: flex;
}
.cid-ucQMxlWkO1 .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 850px;
}
.cid-ucQMxlWkO1 .mbr-section-title {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMxlWkO1 .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
.cid-ucQMxlWkO1 .mbr-text {
  color: #ecca7f;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}
.cid-ucRwX2xfz2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1b1818;
}
.cid-ucRwX2xfz2 .mbr-iconfont {
  font-size: 1.5rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: #1b1818;
  border-radius: 50%;
  padding: 1.5rem;
}
@media (max-width: 767px) {
  .cid-ucRwX2xfz2 .mbr-iconfont {
    padding: 1rem;
    font-size: 1.2rem !important;
  }
}
.cid-ucRwX2xfz2 .panel-group {
  border: none;
}
.cid-ucRwX2xfz2 .card-header {
  padding: 1.2rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-ucRwX2xfz2 .card-header {
    padding: 1rem 0rem;
  }
}
.cid-ucRwX2xfz2 .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-ucRwX2xfz2 .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-ucRwX2xfz2 .content {
  margin: 5rem auto;
}
.cid-ucRwX2xfz2 .img-col {
  padding: 0;
}
.cid-ucRwX2xfz2 .img-item {
  height: 100%;
}
.cid-ucRwX2xfz2 img {
  height: 100%;
  object-fit: cover;
}
.cid-ucRwX2xfz2 .collapsed span {
  transform: rotate(0deg);
}
.cid-ucRwX2xfz2 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ucRwX2xfz2 p {
  margin-bottom: 0.3rem;
}
.cid-ucRwX2xfz2 .panel-title-edit {
  color: #1b1818;
}
.cid-ucRwX2xfz2 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-ucRwX2xfz2 .card {
  background: #c49e4b;
  padding: 0rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-ucRwX2xfz2 .card {
    padding: 1rem;
  }
}
.cid-ucRwX2xfz2 .panel-text {
  color: #1b1818;
}
.cid-ucRwX2xfz2 H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ucRwX2xfz2 H4 {
  text-align: center;
  color: #ffffff;
}
.cid-ucQMxmrCre {
  display: flex;
  padding-top: 105px;
  padding-bottom: 105px;
  background: linear-gradient(to bottom, #ecca7f, #ffffff);
}
.cid-ucQMxmrCre .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-ucQMxmrCre .mbr-text,
.cid-ucQMxmrCre .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-ucQMxmrCre .mbr-section-title,
.cid-ucQMxmrCre .line {
  color: #232323;
}
.cid-ucQMxmrCre .google-map {
  height: 40rem;
  filter: grayscale(1);
  position: relative;
  border-radius: 2rem;
}
.cid-ucQMxmrCre .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-ucQMxmrCre .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ucQMxmrCre .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucQMxmrCre .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucQMxmrCre h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-ucQMxmrCre h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-ucQMxmrCre .mbr-section-subtitle,
.cid-ucQMxmrCre .align {
  text-align: left;
  color: #232323;
}
.cid-ucQMxnEWR6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a2229;
}
.cid-ucQMxnEWR6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxnEWR6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxnEWR6 .container {
  max-width: 1600px;
}
.cid-ucQMxnEWR6 .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #c5e073;
}
@media (max-width: 991px) {
  .cid-ucQMxnEWR6 .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxnEWR6 .border-container {
    padding: 30px 0;
  }
}
.cid-ucQMxnEWR6 .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-ucQMxnEWR6 .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-ucQMxnEWR6 .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-ucQMxnEWR6 .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-ucQMxnEWR6 .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #1a2229;
  border-color: #c5e073;
}
@media (max-width: 991px) {
  .cid-ucQMxnEWR6 .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxnEWR6 .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxnEWR6 .border-frame {
    width: 7%;
  }
}
.cid-ucQMxnEWR6 .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-ucQMxnEWR6 .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-ucQMxnEWR6 .footer-item-container:not(:first-child) {
  border-left: 1px solid #c5e073;
}
@media (max-width: 991px) {
  .cid-ucQMxnEWR6 .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-ucQMxnEWR6 .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid #c5e073;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxnEWR6 .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-ucQMxnEWR6 .footer-item {
  height: 100%;
}
.cid-ucQMxnEWR6 .mbr-section-subtitle {
  color: #ecca7f;
  width: 100%;
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .cid-ucQMxnEWR6 .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxnEWR6 .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-ucQMxnEWR6 .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMxnEWR6 .mbr-section-btn {
  margin-top: 20px;
}
.cid-ucQMxnEWR6 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1455e6;
}
.cid-ucQMxnEWR6 .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-ucQMxnEWR6 .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-ucQMxnEWR6 .list li:hover {
  color: #1455e6 !important;
}
.cid-ucQMxnEWR6 .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQMxnEWR6 .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQMxnEWR6 .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQMxnEWR6 .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQMxnEWR6 .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-ucQMxnEWR6 .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-ucQMxnEWR6 .social-text {
  color: #1455e6;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-ucQMxnEWR6 .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-ucQMxnEWR6 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-ucQMxnEWR6 .soc-item:hover .mbr-iconfont {
  color: #1455e6 !important;
}
.cid-ucQMxnEWR6 .soc-item:hover .social-text {
  color: #1455e6 !important;
}
.cid-ucQMxnEWR6 .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-ucQMxnEWR6 .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxnEWR6 .copyright-container {
    margin-top: 30px;
  }
}
.cid-ucQMxnEWR6 .copyright-text {
  color: #ecca7f;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ucQMxnEWR6 .copyright-text {
    text-align: center !important;
  }
}
.cid-ucQMxnEWR6 .mbr-text,
.cid-ucQMxnEWR6 .mbr-section-btn {
  color: #ecca7f;
}
.cid-ucQMxV1PGs .navbar-dropdown {
  position: relative !important;
}
.cid-ucQMxV1PGs .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucQMxV1PGs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucQMxV1PGs .dropdown-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: .4s all !important;
}
.cid-ucQMxV1PGs .dropdown-item:hover,
.cid-ucQMxV1PGs .dropdown-item:focus {
  background: rgba(191, 147, 65, 0.5) !important;
  color: white !important;
}
.cid-ucQMxV1PGs .dropdown-item:hover span {
  color: white;
}
.cid-ucQMxV1PGs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucQMxV1PGs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucQMxV1PGs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucQMxV1PGs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucQMxV1PGs .nav-link {
  position: relative;
}
.cid-ucQMxV1PGs .container {
  display: flex;
  margin: auto;
  max-width: 1600px;
}
.cid-ucQMxV1PGs .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0 !important;
}
.cid-ucQMxV1PGs .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-ucQMxV1PGs .iconfont-wrapper:hover .mbr-iconfont {
  color: #1455e6;
}
.cid-ucQMxV1PGs .dropdown-menu,
.cid-ucQMxV1PGs .navbar.opened {
  background: #1a2229 !important;
}
.cid-ucQMxV1PGs .nav-item:focus,
.cid-ucQMxV1PGs .nav-link:focus {
  outline: none;
}
.cid-ucQMxV1PGs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucQMxV1PGs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucQMxV1PGs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucQMxV1PGs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucQMxV1PGs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucQMxV1PGs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucQMxV1PGs .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a2229;
  padding: 0 !important;
}
.cid-ucQMxV1PGs .navbar.opened {
  transition: all 0.3s;
}
.cid-ucQMxV1PGs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucQMxV1PGs .navbar .navbar-logo img {
  width: auto;
}
.cid-ucQMxV1PGs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucQMxV1PGs .navbar.collapsed {
  justify-content: center;
}
.cid-ucQMxV1PGs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucQMxV1PGs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ucQMxV1PGs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucQMxV1PGs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucQMxV1PGs .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-ucQMxV1PGs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucQMxV1PGs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucQMxV1PGs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucQMxV1PGs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucQMxV1PGs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucQMxV1PGs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucQMxV1PGs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucQMxV1PGs .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-ucQMxV1PGs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucQMxV1PGs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucQMxV1PGs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ucQMxV1PGs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucQMxV1PGs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucQMxV1PGs .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  padding: 0 !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.cid-ucQMxV1PGs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucQMxV1PGs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucQMxV1PGs .dropdown-item.active,
.cid-ucQMxV1PGs .dropdown-item:active {
  background-color: transparent;
}
.cid-ucQMxV1PGs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucQMxV1PGs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucQMxV1PGs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucQMxV1PGs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a2229;
}
.cid-ucQMxV1PGs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucQMxV1PGs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucQMxV1PGs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucQMxV1PGs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucQMxV1PGs button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucQMxV1PGs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ucQMxV1PGs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucQMxV1PGs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucQMxV1PGs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucQMxV1PGs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucQMxV1PGs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucQMxV1PGs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucQMxV1PGs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucQMxV1PGs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucQMxV1PGs .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ucQMxV1PGs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucQMxV1PGs .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucQMxV1PGs .navbar {
    height: 70px;
  }
  .cid-ucQMxV1PGs .navbar.opened {
    height: auto;
  }
  .cid-ucQMxV1PGs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucQMxV1PGs .header-item {
  width: 33.33333333%;
  padding: 10px 0;
}
.cid-ucQMxV1PGs .navbar-toggler {
  margin-left: 10px;
}
.cid-ucQMxV1PGs .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #b84358;
}
.cid-ucQMxV1PGs .navbar-logo {
  margin-right: 0 !important;
}
.cid-ucQMxV1PGs .mbr-text {
  width: 100%;
  color: #BF9341;
}
@media (max-width: 575px) {
  .cid-ucQMxV1PGs .mbr-text {
    display: none;
  }
}
.cid-ucQMxV1PGs .navbar-collapse {
  padding-top: 40px !important;
}
.cid-ucQMxV1PGs .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-ucQMxV1PGs .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-ucQMxVGgbb {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
}
.cid-ucQMxVGgbb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxVGgbb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxVGgbb .content-container {
  display: flex;
  align-items: stretch;
}
@media (max-width: 575px) {
  .cid-ucQMxVGgbb .content-container {
    flex-wrap: wrap;
  }
}
.cid-ucQMxVGgbb .text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 50%;
}
@media (max-width: 575px) {
  .cid-ucQMxVGgbb .text-container {
    width: 100%;
  }
}
.cid-ucQMxVGgbb .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
@media (max-width: 575px) {
  .cid-ucQMxVGgbb .card-box {
    padding-top: 26%;
  }
}
.cid-ucQMxVGgbb .img-container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 575px) {
  .cid-ucQMxVGgbb .img-container {
    width: 100%;
  }
}
.cid-ucQMxVGgbb .image-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.cid-ucQMxVGgbb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 575px) {
  .cid-ucQMxVGgbb .image-wrapper img {
    width: 55%;
  }
}
.cid-ucQMxVGgbb .card-title {
  width: 100%;
  color: #BF9341;
  padding: 80px 22% 80px 17%;
}
@media (max-width: 991px) {
  .cid-ucQMxVGgbb .card-title {
    padding: 70px 17.5% 70px 17.5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxVGgbb .card-title {
    padding: 80% 7.5% 70px 7.5%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxVGgbb .card-title {
    padding: 0 45% 0 0;
  }
}
.cid-ucQMxVGgbb .mbr-text {
  color: #BF9341;
  padding: 56px 17% 0 41%;
}
@media (max-width: 991px) {
  .cid-ucQMxVGgbb .mbr-text {
    padding: 48px 17.5% 0 17.5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxVGgbb .mbr-text {
    padding: 48px 7.5% 0 7.5%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxVGgbb .mbr-text {
    padding: 20% 0 0 26%;
  }
}
.cid-ucQMxVGgbb .btn-content {
  width: 100%;
  padding: 0 22% 0 17%;
}
@media (max-width: 991px) {
  .cid-ucQMxVGgbb .btn-content {
    padding: 0 17.5% 0 17.5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxVGgbb .btn-content {
    padding: 0 7.5% 0 7.5%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxVGgbb .btn-content {
    padding: 0;
  }
}
.cid-ucQMxVGgbb .mbr-section-btn {
  margin-top: 30px;
}
.cid-ucQMxWbj1r {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ded7cd;
  overflow: hidden;
}
.cid-ucQMxWbj1r .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxWbj1r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxWbj1r .row {
  justify-content: left;
}
.cid-ucQMxWbj1r .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-ucQMxWbj1r .content-container {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxWbj1r .content-container {
    flex-wrap: wrap;
    padding: 40px 0;
  }
}
.cid-ucQMxWbj1r .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-ucQMxWbj1r .line-frame-1 {
  top: calc(100% - 11px);
}
.cid-ucQMxWbj1r .line-frame-2 {
  bottom: calc(100% - 11px);
}
.cid-ucQMxWbj1r .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-ucQMxWbj1r .point-frame-1 {
  top: 19px;
}
.cid-ucQMxWbj1r .point-frame-2 {
  bottom: 19px;
}
.cid-ucQMxWbj1r .title-container {
  width: 60%;
  padding: 0 80px 0 0;
}
@media (max-width: 991px) {
  .cid-ucQMxWbj1r .title-container {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxWbj1r .title-container {
    width: 100%;
    padding: 0;
  }
}
.cid-ucQMxWbj1r .text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 40%;
  padding: 0 0 0 80px;
}
@media (max-width: 991px) {
  .cid-ucQMxWbj1r .text-container {
    padding: 0 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxWbj1r .text-container {
    width: 100%;
    padding: 32px 0 0 0;
  }
}
.cid-ucQMxWbj1r .item-container {
  width: 100%;
}
.cid-ucQMxWbj1r .mbr-section-title {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMxWbj1r .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMxWbj1r .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .cid-ucQMxWbj1r .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-ucQMxXhsYJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
  position: relative;
  overflow: hidden;
}
.cid-ucQMxXhsYJ .container {
  max-width: 920px;
}
.cid-ucQMxXhsYJ .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: #ded7cd;
  border: 1px solid #ded7cd;
}
@media (max-width: 991px) {
  .cid-ucQMxXhsYJ .border-container {
    padding: 7% 5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxXhsYJ .border-container {
    padding: 8% 6%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxXhsYJ .border-container {
    padding: 9% 7%;
  }
}
.cid-ucQMxXhsYJ .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-ucQMxXhsYJ .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-ucQMxXhsYJ .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-ucQMxXhsYJ .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-ucQMxXhsYJ .border-frame {
  position: absolute;
  z-index: 5;
  width: 60px;
  aspect-ratio: 1;
  background-color: #1a2229;
  border-color: #ded7cd;
}
@media (max-width: 991px) {
  .cid-ucQMxXhsYJ .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxXhsYJ .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxXhsYJ .border-frame {
    width: 7%;
  }
}
.cid-ucQMxXhsYJ .content-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucQMxXhsYJ .content-container {
    min-height: auto;
  }
}
.cid-ucQMxXhsYJ .text-container {
  width: 100%;
}
.cid-ucQMxXhsYJ .text-wrapper {
  width: 100%;
}
.cid-ucQMxXhsYJ .mbr-text {
  color: #000000;
  width: 100%;
  margin: 0;
}
.cid-ucQMxXhsYJ .card-title {
  color: #BF9341;
  width: 100%;
  margin-bottom: 0;
  margin-top: 1.5rem;
}
.cid-ucQMxXhsYJ .line-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 0 50% 0;
  height: 1px;
  width: 1000%;
  background-color: #ded7cd;
}
.cid-ucQMxXhsYJ .line-frame-1 {
  transform: rotate(30deg) translate(-50%, -50%);
}
.cid-ucQMxXhsYJ .line-frame-2 {
  transform: rotate(60deg) translate(-50%, -50%);
}
.cid-ucQMxXhsYJ .line-frame-3 {
  transform: rotate(90deg) translate(-50%, -50%);
}
.cid-ucQMxXhsYJ .line-frame-4 {
  transform: rotate(120deg) translate(-50%, -50%);
}
.cid-ucQMxXhsYJ .line-frame-5 {
  transform: rotate(150deg) translate(-50%, -50%);
}
.cid-ucQMxXGHLI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ded7cd;
}
.cid-ucQMxXGHLI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxXGHLI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxXGHLI .container {
  max-width: 1600px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ucQMxXGHLI .container {
    max-width: 80%;
  }
}
.cid-ucQMxXGHLI .content-container {
  display: flex;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-ucQMxXGHLI .content-container {
    flex-wrap: wrap;
  }
}
.cid-ucQMxXGHLI .text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 30%;
}
@media (max-width: 991px) {
  .cid-ucQMxXGHLI .text-container {
    width: 100%;
  }
}
.cid-ucQMxXGHLI .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucQMxXGHLI .card-box {
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxXGHLI .card-box {
    margin-bottom: 40px;
  }
}
.cid-ucQMxXGHLI .card-title {
  width: 100%;
  color: #192732;
}
.cid-ucQMxXGHLI .mbr-text {
  color: #192732;
  padding: 60px 0 0 23%;
}
@media (max-width: 991px) {
  .cid-ucQMxXGHLI .mbr-text {
    padding: 44px 0 0 13%;
    max-width: 56%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxXGHLI .mbr-text {
    max-width: 100%;
    padding-left: 0;
  }
}
.cid-ucQMxXGHLI .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-ucQMxXGHLI .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-ucQMxXGHLI .btn-primary-outline {
  color: #192732;
}
.cid-ucQMxXGHLI .img-container {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ucQMxXGHLI .img-container {
    width: 100%;
  }
}
.cid-ucQMxXGHLI .image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-ucQMxXGHLI .image-wrapper img {
  object-fit: cover;
}
.cid-ucQMxXGHLI .image-wrapper-1 {
  margin-bottom: 32px;
}
.cid-ucQMxXGHLI .image-wrapper-1 img {
  width: 32%;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-ucQMxXGHLI .image-wrapper-1 img {
    width: 41%;
  }
}
@media (max-width: 991px) {
  .cid-ucQMxXGHLI .image-wrapper-1 {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxXGHLI .image-wrapper-1 {
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .cid-ucQMxXGHLI .image-wrapper-1 {
    margin-bottom: 40px;
  }
}
.cid-ucQMxXGHLI .image-wrapper-2 img {
  width: 83%;
  padding-left: 23.5%;
}
@media (max-width: 991px) {
  .cid-ucQMxXGHLI .image-wrapper-2 img {
    width: 80%;
    padding-left: 0;
    margin-right: auto;
  }
}
.cid-ucQMxY9HFb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
  position: relative;
}
.cid-ucQMxY9HFb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #000000, #323337);
}
.cid-ucQMxY9HFb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxY9HFb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxY9HFb .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-ucQMxY9HFb .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-ucQMxY9HFb .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucQMxY9HFb .container {
    padding: 0 16px;
  }
}
.cid-ucQMxY9HFb .content-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-ucQMxY9HFb .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-ucQMxY9HFb .item {
  margin-bottom: 32px;
}
.cid-ucQMxY9HFb .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-ucQMxY9HFb .item .item-wrapper .card-box .title-wrapper .title-wrap {
    margin-bottom: 16px;
  }
}
.cid-ucQMxY9HFb .item .item-wrapper .card-box .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 36px;
  color: #f4f4f4;
  margin-right: 12px;
}
.cid-ucQMxY9HFb .item .item-wrapper .card-box .title-wrapper .title-wrap .card-title {
  margin-bottom: 0;
}
.cid-ucQMxY9HFb .item .item-wrapper .card-box .text-wrap .card-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
.cid-ucQMxY9HFb .mbr-section-title {
  color: #c49e4b;
  text-align: center;
}
.cid-ucQMxY9HFb .card-title {
  color: #f4f4f4;
}
.cid-ucQMxY9HFb .card-text {
  color: #c1c1c1;
}
.cid-ucQMxYS6LE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
}
.cid-ucQMxYS6LE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxYS6LE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxYS6LE .row {
  justify-content: left;
}
.cid-ucQMxYS6LE .main-col {
  display: flex;
}
.cid-ucQMxYS6LE .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 850px;
}
.cid-ucQMxYS6LE .mbr-section-title {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMxYS6LE .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-top: 20px;
}
.cid-ucQMxYS6LE .mbr-text {
  color: #ecca7f;
  width: 100%;
  margin-top: 1rem;
}
.cid-ucQMxZibWP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ded7cd;
}
.cid-ucQMxZibWP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxZibWP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxZibWP .container {
  max-width: 900px;
}
.cid-ucQMxZibWP .content-container {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-ucQMxZibWP .content-container {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.cid-ucQMxZibWP .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 45%;
  padding-left: 40px;
}
@media (max-width: 991px) {
  .cid-ucQMxZibWP .card-wrapper {
    padding-left: 32px;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxZibWP .card-wrapper {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
}
.cid-ucQMxZibWP .card-box {
  width: 100%;
}
.cid-ucQMxZibWP .card-title {
  width: 100%;
  color: #192732;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-ucQMxZibWP .card-title {
    margin-bottom: 24px;
    text-align: center !important;
  }
}
.cid-ucQMxZibWP .mbr-text {
  width: 100%;
  color: #192732;
}
@media (max-width: 767px) {
  .cid-ucQMxZibWP .mbr-text {
    text-align: center !important;
  }
}
.cid-ucQMxZibWP .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-ucQMxZibWP .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-ucQMxZibWP .img-container {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 40px;
}
@media (max-width: 991px) {
  .cid-ucQMxZibWP .img-container {
    padding-right: 32px;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxZibWP .img-container {
    width: 100%;
    padding: 0;
  }
}
.cid-ucQMxZibWP .image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-ucQMxZibWP .image-wrapper img {
  object-fit: cover;
  max-height: 100vh;
}
.cid-ucQMxZRRJh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
  overflow: hidden;
}
.cid-ucQMxZRRJh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMxZRRJh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMxZRRJh .row {
  justify-content: left;
}
.cid-ucQMxZRRJh .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(226, 245, 167, 0.1);
}
@media (max-width: 1199px) {
  .cid-ucQMxZRRJh .content-container {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-ucQMxZRRJh .content-container {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxZRRJh .content-container {
    flex-wrap: wrap;
    padding: 40px 0;
  }
}
.cid-ucQMxZRRJh .line-frame {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
  width: 1px;
  background-color: rgba(226, 245, 167, 0.1);
}
.cid-ucQMxZRRJh .line-frame-1 {
  top: calc(100% - 11px);
}
.cid-ucQMxZRRJh .line-frame-2 {
  bottom: calc(100% - 11px);
}
.cid-ucQMxZRRJh .point-frame {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 3px;
  height: 3px;
  background-color: rgba(226, 245, 167, 0.1);
}
.cid-ucQMxZRRJh .point-frame-1 {
  top: 19px;
}
.cid-ucQMxZRRJh .point-frame-2 {
  bottom: 19px;
}
.cid-ucQMxZRRJh .title-container {
  width: 70%;
  padding: 0 40px;
}
@media (max-width: 991px) {
  .cid-ucQMxZRRJh .title-container {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxZRRJh .title-container {
    width: 100%;
    padding: 0;
  }
}
.cid-ucQMxZRRJh .text-container {
  width: 30%;
  padding: 0 40px;
}
@media (max-width: 991px) {
  .cid-ucQMxZRRJh .text-container {
    padding: 0 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-ucQMxZRRJh .text-container {
    width: 100%;
    padding: 32px 0 0 0;
  }
}
.cid-ucQMxZRRJh .item-container {
  width: 100%;
}
.cid-ucQMxZRRJh .mbr-section-title {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMxZRRJh .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMxZRRJh .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .cid-ucQMxZRRJh .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-ucQMxZRRJh .mbr-section-title-1 {
  text-align: center;
}
.cid-ucQMxZRRJh .mbr-section-title-2 {
  color: #ecca7f;
}
.cid-ucQMxZRRJh .mbr-text,
.cid-ucQMxZRRJh .mbr-section-btn {
  color: #ecca7f;
}
.cid-ucRh82A5A9 {
  overflow: hidden;
  background-image: url("../../../assets/images/62100cd207351.image-902x500.jpg");
}
.cid-ucRh82A5A9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucRh82A5A9 .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-ucRh82A5A9 .container {
    padding: 0 24px;
  }
}
.cid-ucRh82A5A9 .card-wrapper .card-wrap {
  display: inline-flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: .6rem !important;
  padding: 42px 48px 48px;
  width: 40%;
}
@media (max-width: 1440px) {
  .cid-ucRh82A5A9 .card-wrapper .card-wrap {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .cid-ucRh82A5A9 .card-wrapper .card-wrap {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .cid-ucRh82A5A9 .card-wrapper .card-wrap {
    padding: 20px;
    width: 100%;
  }
}
.cid-ucRh82A5A9 .card-wrapper .card-wrap .mbr-desc {
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ucRh82A5A9 .card-wrapper .card-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-ucRh82A5A9 .card-wrapper .card-wrap .mbr-section-title {
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ucRh82A5A9 .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-ucRh82A5A9 .card-wrapper .card-wrap .mbr-text {
  width: 100%;
  margin-bottom: 0;
}
.cid-ucRh82A5A9 .mbr-desc {
  color: #202020;
}
.cid-ucRh82A5A9 .mbr-section-title {
  color: #202020;
}
.cid-ucRh82A5A9 .mbr-text {
  color: #202020;
}
.cid-ucQMy0YnKF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a2229;
}
.cid-ucQMy0YnKF .row {
  align-items: center;
  width: 100%;
}
.cid-ucQMy0YnKF .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-ucQMy0YnKF .mbr-section-title {
  color: #000000;
}
.cid-ucQMy0YnKF .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-ucQMy0YnKF .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-ucQMy0YnKF .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-ucQMy0YnKF .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucQMy0YnKF .text-container {
  padding: 32px;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-ucQMy0YnKF .text-container {
    padding: 24px;
  }
}
.cid-ucQMy0YnKF .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucQMy0YnKF .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-ucQMy0YnKF .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #32fc1d;
}
.cid-ucQMy0YnKF .card-title {
  width: 100%;
  color: #c49e4b;
  margin-bottom: 0;
}
.cid-ucQMy0YnKF .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-ucQMy1IfK1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a2229;
}
.cid-ucQMy1IfK1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMy1IfK1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMy1IfK1 .row {
  justify-content: left;
}
.cid-ucQMy1IfK1 .main-col {
  display: flex;
}
.cid-ucQMy1IfK1 .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 850px;
}
.cid-ucQMy1IfK1 .mbr-section-title {
  color: #BF9341;
  width: 100%;
  text-align: center;
}
.cid-ucQMy1IfK1 .mbr-section-subtitle {
  color: #ecca7f;
  width: 100%;
  margin-top: 20px;
}
.cid-ucQMy1IfK1 .mbr-text {
  color: #BF9341;
  width: 100%;
  margin-top: 1rem;
}
.cid-ucQMy2firn {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ded7cd;
}
.cid-ucQMy2firn .container-fluid {
  padding: 0 3rem;
}
.cid-ucQMy2firn .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #1455e6 50%, #3c4e84 120%);
  display: inline-block;
}
.cid-ucQMy2firn .mbr-section-title {
  color: #000000;
}
.cid-ucQMy2firn .mbr-section-subtitle {
  color: #000000;
}
.cid-ucQMy2firn .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-ucQMy2firn .header-text {
  padding: 2rem 1rem !important;
}
.cid-ucQMy2firn .card {
  border-radius: 25px !important;
  background: #ecca7f;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-ucQMy2firn .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-ucQMy2firn .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-ucQMy2firn .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-ucQMy2firn .card .card-header a.panel-title:hover .sign {
  background-color: #c49e4b !important;
}
.cid-ucQMy2firn .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #000000;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-ucQMy2firn .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-ucQMy2firn .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-ucQMy2firn .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-ucQMy2firn .container-fluid {
    padding: 0 1rem;
  }
  .cid-ucQMy2firn .header-text {
    padding: 1rem !important;
  }
  .cid-ucQMy2firn .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-ucQMy2firn .panel-body {
    width: calc(100% - 48px);
  }
  .cid-ucQMy2firn .panel-group {
    padding: 0;
  }
}
.cid-ucQMy2firn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMy2firn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMy2Xncj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2b2b2b;
}
.cid-ucQMy2Xncj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMy2Xncj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMy2Xncj .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-ucQMy2Xncj .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ucQMy2Xncj .container {
    padding: 0 30px;
  }
}
.cid-ucQMy2Xncj .mbr-section-title {
  margin-bottom: 70px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucQMy2Xncj .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ucQMy2Xncj .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucQMy2Xncj .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-ucQMy2Xncj .video-block .video-wrapper .app-video-wrapper::before {
  color: #fe5115;
  text-shadow: none;
}
.cid-ucQMy2Xncj .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucQMy2Xncj .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-ucQMy3uIvB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
}
.cid-ucQMy3uIvB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMy3uIvB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMy3uIvB .row {
  justify-content: left;
}
.cid-ucQMy3uIvB .main-col {
  display: flex;
}
.cid-ucQMy3uIvB .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 850px;
}
.cid-ucQMy3uIvB .mbr-section-title {
  color: #BF9341;
  width: 100%;
  text-align: center;
}
.cid-ucQMy3uIvB .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
.cid-ucQMy3uIvB .mbr-text {
  color: #ecca7f;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}
.cid-ucRygpEGcK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1b1818;
}
.cid-ucRygpEGcK .mbr-iconfont {
  font-size: 1.5rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: #1b1818;
  border-radius: 50%;
  padding: 1.5rem;
}
@media (max-width: 767px) {
  .cid-ucRygpEGcK .mbr-iconfont {
    padding: 1rem;
    font-size: 1.2rem !important;
  }
}
.cid-ucRygpEGcK .panel-group {
  border: none;
}
.cid-ucRygpEGcK .card-header {
  padding: 1.2rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-ucRygpEGcK .card-header {
    padding: 1rem 0rem;
  }
}
.cid-ucRygpEGcK .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-ucRygpEGcK .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-ucRygpEGcK .content {
  margin: 5rem auto;
}
.cid-ucRygpEGcK .img-col {
  padding: 0;
}
.cid-ucRygpEGcK .img-item {
  height: 100%;
}
.cid-ucRygpEGcK img {
  height: 100%;
  object-fit: cover;
}
.cid-ucRygpEGcK .collapsed span {
  transform: rotate(0deg);
}
.cid-ucRygpEGcK .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ucRygpEGcK p {
  margin-bottom: 0.3rem;
}
.cid-ucRygpEGcK .panel-title-edit {
  color: #1b1818;
}
.cid-ucRygpEGcK .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-ucRygpEGcK .card {
  background: #c49e4b;
  padding: 0rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-ucRygpEGcK .card {
    padding: 1rem;
  }
}
.cid-ucRygpEGcK .panel-text {
  color: #1b1818;
}
.cid-ucRygpEGcK H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ucRygpEGcK H4 {
  text-align: center;
  color: #ffffff;
}
.cid-ucQMy460Mv {
  display: flex;
  padding-top: 105px;
  padding-bottom: 105px;
  background: linear-gradient(to bottom, #ecca7f, #ffffff);
}
.cid-ucQMy460Mv .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-ucQMy460Mv .mbr-text,
.cid-ucQMy460Mv .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-ucQMy460Mv .mbr-section-title,
.cid-ucQMy460Mv .line {
  color: #232323;
}
.cid-ucQMy460Mv .google-map {
  height: 40rem;
  filter: grayscale(1);
  position: relative;
  border-radius: 2rem;
}
.cid-ucQMy460Mv .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-ucQMy460Mv .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ucQMy460Mv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucQMy460Mv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucQMy460Mv h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-ucQMy460Mv h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-ucQMy460Mv .mbr-section-subtitle,
.cid-ucQMy460Mv .align {
  text-align: left;
  color: #232323;
}
.cid-ucQMy4ONvN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a2229;
}
.cid-ucQMy4ONvN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMy4ONvN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMy4ONvN .container {
  max-width: 1600px;
}
.cid-ucQMy4ONvN .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #c5e073;
}
@media (max-width: 991px) {
  .cid-ucQMy4ONvN .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-ucQMy4ONvN .border-container {
    padding: 30px 0;
  }
}
.cid-ucQMy4ONvN .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-ucQMy4ONvN .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-ucQMy4ONvN .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-ucQMy4ONvN .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-ucQMy4ONvN .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #1a2229;
  border-color: #c5e073;
}
@media (max-width: 991px) {
  .cid-ucQMy4ONvN .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMy4ONvN .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMy4ONvN .border-frame {
    width: 7%;
  }
}
.cid-ucQMy4ONvN .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-ucQMy4ONvN .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-ucQMy4ONvN .footer-item-container:not(:first-child) {
  border-left: 1px solid #c5e073;
}
@media (max-width: 991px) {
  .cid-ucQMy4ONvN .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-ucQMy4ONvN .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid #c5e073;
  }
}
@media (max-width: 575px) {
  .cid-ucQMy4ONvN .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-ucQMy4ONvN .footer-item {
  height: 100%;
}
.cid-ucQMy4ONvN .mbr-section-subtitle {
  color: #ecca7f;
  width: 100%;
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .cid-ucQMy4ONvN .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-ucQMy4ONvN .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-ucQMy4ONvN .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMy4ONvN .mbr-section-btn {
  margin-top: 20px;
}
.cid-ucQMy4ONvN .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1455e6;
}
.cid-ucQMy4ONvN .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-ucQMy4ONvN .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-ucQMy4ONvN .list li:hover {
  color: #1455e6 !important;
}
.cid-ucQMy4ONvN .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQMy4ONvN .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQMy4ONvN .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQMy4ONvN .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQMy4ONvN .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-ucQMy4ONvN .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-ucQMy4ONvN .social-text {
  color: #1455e6;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-ucQMy4ONvN .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-ucQMy4ONvN .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-ucQMy4ONvN .soc-item:hover .mbr-iconfont {
  color: #1455e6 !important;
}
.cid-ucQMy4ONvN .soc-item:hover .social-text {
  color: #1455e6 !important;
}
.cid-ucQMy4ONvN .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-ucQMy4ONvN .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-ucQMy4ONvN .copyright-container {
    margin-top: 30px;
  }
}
.cid-ucQMy4ONvN .copyright-text {
  color: #ecca7f;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ucQMy4ONvN .copyright-text {
    text-align: center !important;
  }
}
.cid-ucQMy4ONvN .mbr-text,
.cid-ucQMy4ONvN .mbr-section-btn {
  color: #ecca7f;
}
.cid-ucQMyB7Szr .navbar-dropdown {
  position: relative !important;
}
.cid-ucQMyB7Szr .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucQMyB7Szr .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucQMyB7Szr .dropdown-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: .4s all !important;
}
.cid-ucQMyB7Szr .dropdown-item:hover,
.cid-ucQMyB7Szr .dropdown-item:focus {
  background: rgba(191, 147, 65, 0.5) !important;
  color: white !important;
}
.cid-ucQMyB7Szr .dropdown-item:hover span {
  color: white;
}
.cid-ucQMyB7Szr .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucQMyB7Szr .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucQMyB7Szr .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucQMyB7Szr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucQMyB7Szr .nav-link {
  position: relative;
}
.cid-ucQMyB7Szr .container {
  display: flex;
  margin: auto;
  max-width: 1600px;
}
.cid-ucQMyB7Szr .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0 !important;
}
.cid-ucQMyB7Szr .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-ucQMyB7Szr .iconfont-wrapper:hover .mbr-iconfont {
  color: #1455e6;
}
.cid-ucQMyB7Szr .dropdown-menu,
.cid-ucQMyB7Szr .navbar.opened {
  background: #1a2229 !important;
}
.cid-ucQMyB7Szr .nav-item:focus,
.cid-ucQMyB7Szr .nav-link:focus {
  outline: none;
}
.cid-ucQMyB7Szr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucQMyB7Szr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucQMyB7Szr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucQMyB7Szr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucQMyB7Szr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucQMyB7Szr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucQMyB7Szr .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a2229;
  padding: 0 !important;
}
.cid-ucQMyB7Szr .navbar.opened {
  transition: all 0.3s;
}
.cid-ucQMyB7Szr .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucQMyB7Szr .navbar .navbar-logo img {
  width: auto;
}
.cid-ucQMyB7Szr .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucQMyB7Szr .navbar.collapsed {
  justify-content: center;
}
.cid-ucQMyB7Szr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucQMyB7Szr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ucQMyB7Szr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucQMyB7Szr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucQMyB7Szr .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-ucQMyB7Szr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucQMyB7Szr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucQMyB7Szr .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucQMyB7Szr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucQMyB7Szr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucQMyB7Szr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucQMyB7Szr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucQMyB7Szr .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-ucQMyB7Szr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucQMyB7Szr .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucQMyB7Szr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ucQMyB7Szr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucQMyB7Szr .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucQMyB7Szr .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  padding: 0 !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.cid-ucQMyB7Szr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucQMyB7Szr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucQMyB7Szr .dropdown-item.active,
.cid-ucQMyB7Szr .dropdown-item:active {
  background-color: transparent;
}
.cid-ucQMyB7Szr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucQMyB7Szr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucQMyB7Szr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucQMyB7Szr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a2229;
}
.cid-ucQMyB7Szr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucQMyB7Szr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucQMyB7Szr ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucQMyB7Szr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucQMyB7Szr button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucQMyB7Szr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ucQMyB7Szr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucQMyB7Szr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucQMyB7Szr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucQMyB7Szr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucQMyB7Szr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucQMyB7Szr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucQMyB7Szr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucQMyB7Szr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucQMyB7Szr .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ucQMyB7Szr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucQMyB7Szr .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucQMyB7Szr .navbar {
    height: 70px;
  }
  .cid-ucQMyB7Szr .navbar.opened {
    height: auto;
  }
  .cid-ucQMyB7Szr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucQMyB7Szr .header-item {
  width: 33.33333333%;
  padding: 10px 0;
}
.cid-ucQMyB7Szr .navbar-toggler {
  margin-left: 10px;
}
.cid-ucQMyB7Szr .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #b84358;
}
.cid-ucQMyB7Szr .navbar-logo {
  margin-right: 0 !important;
}
.cid-ucQMyB7Szr .mbr-text {
  width: 100%;
  color: #BF9341;
}
@media (max-width: 575px) {
  .cid-ucQMyB7Szr .mbr-text {
    display: none;
  }
}
.cid-ucQMyB7Szr .navbar-collapse {
  padding-top: 40px !important;
}
.cid-ucQMyB7Szr .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-ucQMyB7Szr .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-ucQMyBD8qP {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
}
.cid-ucQMyBD8qP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMyBD8qP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMyBD8qP .content-container {
  display: flex;
  align-items: stretch;
}
@media (max-width: 575px) {
  .cid-ucQMyBD8qP .content-container {
    flex-wrap: wrap;
  }
}
.cid-ucQMyBD8qP .text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 50%;
}
@media (max-width: 575px) {
  .cid-ucQMyBD8qP .text-container {
    width: 100%;
  }
}
.cid-ucQMyBD8qP .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
@media (max-width: 575px) {
  .cid-ucQMyBD8qP .card-box {
    padding-top: 26%;
  }
}
.cid-ucQMyBD8qP .img-container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 575px) {
  .cid-ucQMyBD8qP .img-container {
    width: 100%;
  }
}
.cid-ucQMyBD8qP .image-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.cid-ucQMyBD8qP .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 575px) {
  .cid-ucQMyBD8qP .image-wrapper img {
    width: 55%;
  }
}
.cid-ucQMyBD8qP .card-title {
  width: 100%;
  color: #BF9341;
  padding: 80px 22% 80px 17%;
}
@media (max-width: 991px) {
  .cid-ucQMyBD8qP .card-title {
    padding: 70px 17.5% 70px 17.5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMyBD8qP .card-title {
    padding: 80% 7.5% 70px 7.5%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMyBD8qP .card-title {
    padding: 0 45% 0 0;
  }
}
.cid-ucQMyBD8qP .mbr-text {
  color: #BF9341;
  padding: 56px 17% 0 41%;
}
@media (max-width: 991px) {
  .cid-ucQMyBD8qP .mbr-text {
    padding: 48px 17.5% 0 17.5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMyBD8qP .mbr-text {
    padding: 48px 7.5% 0 7.5%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMyBD8qP .mbr-text {
    padding: 20% 0 0 26%;
  }
}
.cid-ucQMyBD8qP .btn-content {
  width: 100%;
  padding: 0 22% 0 17%;
}
@media (max-width: 991px) {
  .cid-ucQMyBD8qP .btn-content {
    padding: 0 17.5% 0 17.5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMyBD8qP .btn-content {
    padding: 0 7.5% 0 7.5%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMyBD8qP .btn-content {
    padding: 0;
  }
}
.cid-ucQMyBD8qP .mbr-section-btn {
  margin-top: 30px;
}
.cid-ucQMyCaZ3d {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ded7cd;
  overflow: hidden;
}
.cid-ucQMyCaZ3d .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMyCaZ3d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMyCaZ3d .row {
  justify-content: left;
}
.cid-ucQMyCaZ3d .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-ucQMyCaZ3d .content-container {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .cid-ucQMyCaZ3d .content-container {
    flex-wrap: wrap;
    padding: 40px 0;
  }
}
.cid-ucQMyCaZ3d .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-ucQMyCaZ3d .line-frame-1 {
  top: calc(100% - 11px);
}
.cid-ucQMyCaZ3d .line-frame-2 {
  bottom: calc(100% - 11px);
}
.cid-ucQMyCaZ3d .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-ucQMyCaZ3d .point-frame-1 {
  top: 19px;
}
.cid-ucQMyCaZ3d .point-frame-2 {
  bottom: 19px;
}
.cid-ucQMyCaZ3d .title-container {
  width: 60%;
  padding: 0 80px 0 0;
}
@media (max-width: 991px) {
  .cid-ucQMyCaZ3d .title-container {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 767px) {
  .cid-ucQMyCaZ3d .title-container {
    width: 100%;
    padding: 0;
  }
}
.cid-ucQMyCaZ3d .text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 40%;
  padding: 0 0 0 80px;
}
@media (max-width: 991px) {
  .cid-ucQMyCaZ3d .text-container {
    padding: 0 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-ucQMyCaZ3d .text-container {
    width: 100%;
    padding: 32px 0 0 0;
  }
}
.cid-ucQMyCaZ3d .item-container {
  width: 100%;
}
.cid-ucQMyCaZ3d .mbr-section-title {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMyCaZ3d .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMyCaZ3d .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .cid-ucQMyCaZ3d .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-ucQMyCFNE9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
  position: relative;
  overflow: hidden;
}
.cid-ucQMyCFNE9 .container {
  max-width: 920px;
}
.cid-ucQMyCFNE9 .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: #ded7cd;
  border: 1px solid #ded7cd;
}
@media (max-width: 991px) {
  .cid-ucQMyCFNE9 .border-container {
    padding: 7% 5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMyCFNE9 .border-container {
    padding: 8% 6%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMyCFNE9 .border-container {
    padding: 9% 7%;
  }
}
.cid-ucQMyCFNE9 .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-ucQMyCFNE9 .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-ucQMyCFNE9 .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-ucQMyCFNE9 .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-ucQMyCFNE9 .border-frame {
  position: absolute;
  z-index: 5;
  width: 60px;
  aspect-ratio: 1;
  background-color: #1a2229;
  border-color: #ded7cd;
}
@media (max-width: 991px) {
  .cid-ucQMyCFNE9 .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMyCFNE9 .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMyCFNE9 .border-frame {
    width: 7%;
  }
}
.cid-ucQMyCFNE9 .content-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucQMyCFNE9 .content-container {
    min-height: auto;
  }
}
.cid-ucQMyCFNE9 .text-container {
  width: 100%;
}
.cid-ucQMyCFNE9 .text-wrapper {
  width: 100%;
}
.cid-ucQMyCFNE9 .mbr-text {
  color: #000000;
  width: 100%;
  margin: 0;
}
.cid-ucQMyCFNE9 .card-title {
  color: #BF9341;
  width: 100%;
  margin-bottom: 0;
  margin-top: 1.5rem;
}
.cid-ucQMyCFNE9 .line-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 0 50% 0;
  height: 1px;
  width: 1000%;
  background-color: #ded7cd;
}
.cid-ucQMyCFNE9 .line-frame-1 {
  transform: rotate(30deg) translate(-50%, -50%);
}
.cid-ucQMyCFNE9 .line-frame-2 {
  transform: rotate(60deg) translate(-50%, -50%);
}
.cid-ucQMyCFNE9 .line-frame-3 {
  transform: rotate(90deg) translate(-50%, -50%);
}
.cid-ucQMyCFNE9 .line-frame-4 {
  transform: rotate(120deg) translate(-50%, -50%);
}
.cid-ucQMyCFNE9 .line-frame-5 {
  transform: rotate(150deg) translate(-50%, -50%);
}
.cid-ucQMyD7QmN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ded7cd;
}
.cid-ucQMyD7QmN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMyD7QmN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMyD7QmN .container {
  max-width: 1600px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ucQMyD7QmN .container {
    max-width: 80%;
  }
}
.cid-ucQMyD7QmN .content-container {
  display: flex;
  align-items: stretch;
}
@media (max-width: 991px) {
  .cid-ucQMyD7QmN .content-container {
    flex-wrap: wrap;
  }
}
.cid-ucQMyD7QmN .text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 30%;
}
@media (max-width: 991px) {
  .cid-ucQMyD7QmN .text-container {
    width: 100%;
  }
}
.cid-ucQMyD7QmN .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ucQMyD7QmN .card-box {
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .cid-ucQMyD7QmN .card-box {
    margin-bottom: 40px;
  }
}
.cid-ucQMyD7QmN .card-title {
  width: 100%;
  color: #192732;
}
.cid-ucQMyD7QmN .mbr-text {
  color: #192732;
  padding: 60px 0 0 23%;
}
@media (max-width: 991px) {
  .cid-ucQMyD7QmN .mbr-text {
    padding: 44px 0 0 13%;
    max-width: 56%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMyD7QmN .mbr-text {
    max-width: 100%;
    padding-left: 0;
  }
}
.cid-ucQMyD7QmN .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .cid-ucQMyD7QmN .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-ucQMyD7QmN .btn-primary-outline {
  color: #192732;
}
.cid-ucQMyD7QmN .img-container {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ucQMyD7QmN .img-container {
    width: 100%;
  }
}
.cid-ucQMyD7QmN .image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-ucQMyD7QmN .image-wrapper img {
  object-fit: cover;
}
.cid-ucQMyD7QmN .image-wrapper-1 {
  margin-bottom: 32px;
}
.cid-ucQMyD7QmN .image-wrapper-1 img {
  width: 32%;
  margin-left: auto;
}
@media (max-width: 991px) {
  .cid-ucQMyD7QmN .image-wrapper-1 img {
    width: 41%;
  }
}
@media (max-width: 991px) {
  .cid-ucQMyD7QmN .image-wrapper-1 {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .cid-ucQMyD7QmN .image-wrapper-1 {
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .cid-ucQMyD7QmN .image-wrapper-1 {
    margin-bottom: 40px;
  }
}
.cid-ucQMyD7QmN .image-wrapper-2 img {
  width: 83%;
  padding-left: 23.5%;
}
@media (max-width: 991px) {
  .cid-ucQMyD7QmN .image-wrapper-2 img {
    width: 80%;
    padding-left: 0;
    margin-right: auto;
  }
}
.cid-ucQMyDEaNR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f4f4;
  position: relative;
}
.cid-ucQMyDEaNR::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #000000, #323337);
}
.cid-ucQMyDEaNR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMyDEaNR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMyDEaNR .container-fluid {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
@media (max-width: 1440px) {
  .cid-ucQMyDEaNR .container-fluid {
    padding: 0 42px;
  }
}
@media (max-width: 992px) {
  .cid-ucQMyDEaNR .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ucQMyDEaNR .container {
    padding: 0 16px;
  }
}
.cid-ucQMyDEaNR .content-wrapper .mbr-section-title {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-ucQMyDEaNR .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-ucQMyDEaNR .item {
  margin-bottom: 32px;
}
.cid-ucQMyDEaNR .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-ucQMyDEaNR .item .item-wrapper .card-box .title-wrapper .title-wrap {
    margin-bottom: 16px;
  }
}
.cid-ucQMyDEaNR .item .item-wrapper .card-box .title-wrapper .title-wrap .mbr-iconfont {
  font-size: 36px;
  color: #f4f4f4;
  margin-right: 12px;
}
.cid-ucQMyDEaNR .item .item-wrapper .card-box .title-wrapper .title-wrap .card-title {
  margin-bottom: 0;
}
.cid-ucQMyDEaNR .item .item-wrapper .card-box .text-wrap .card-text {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
.cid-ucQMyDEaNR .mbr-section-title {
  color: #c49e4b;
  text-align: center;
}
.cid-ucQMyDEaNR .card-title {
  color: #f4f4f4;
}
.cid-ucQMyDEaNR .card-text {
  color: #c1c1c1;
}
.cid-ucQMyEn8Bt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
}
.cid-ucQMyEn8Bt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMyEn8Bt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMyEn8Bt .row {
  justify-content: left;
}
.cid-ucQMyEn8Bt .main-col {
  display: flex;
}
.cid-ucQMyEn8Bt .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 850px;
}
.cid-ucQMyEn8Bt .mbr-section-title {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMyEn8Bt .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-top: 20px;
}
.cid-ucQMyEn8Bt .mbr-text {
  color: #ecca7f;
  width: 100%;
  margin-top: 1rem;
}
.cid-ucQMyEW3ap {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ded7cd;
}
.cid-ucQMyEW3ap .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMyEW3ap .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMyEW3ap .container {
  max-width: 900px;
}
.cid-ucQMyEW3ap .content-container {
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .cid-ucQMyEW3ap .content-container {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.cid-ucQMyEW3ap .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 45%;
  padding-left: 40px;
}
@media (max-width: 991px) {
  .cid-ucQMyEW3ap .card-wrapper {
    padding-left: 32px;
  }
}
@media (max-width: 767px) {
  .cid-ucQMyEW3ap .card-wrapper {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
}
.cid-ucQMyEW3ap .card-box {
  width: 100%;
}
.cid-ucQMyEW3ap .card-title {
  width: 100%;
  color: #192732;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-ucQMyEW3ap .card-title {
    margin-bottom: 24px;
    text-align: center !important;
  }
}
.cid-ucQMyEW3ap .mbr-text {
  width: 100%;
  color: #192732;
}
@media (max-width: 767px) {
  .cid-ucQMyEW3ap .mbr-text {
    text-align: center !important;
  }
}
.cid-ucQMyEW3ap .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-ucQMyEW3ap .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-ucQMyEW3ap .img-container {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 40px;
}
@media (max-width: 991px) {
  .cid-ucQMyEW3ap .img-container {
    padding-right: 32px;
  }
}
@media (max-width: 767px) {
  .cid-ucQMyEW3ap .img-container {
    width: 100%;
    padding: 0;
  }
}
.cid-ucQMyEW3ap .image-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.cid-ucQMyEW3ap .image-wrapper img {
  object-fit: cover;
  max-height: 100vh;
}
.cid-ucQMyFtR5v {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
  overflow: hidden;
}
.cid-ucQMyFtR5v .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMyFtR5v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMyFtR5v .row {
  justify-content: left;
}
.cid-ucQMyFtR5v .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(226, 245, 167, 0.1);
}
@media (max-width: 1199px) {
  .cid-ucQMyFtR5v .content-container {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .cid-ucQMyFtR5v .content-container {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .cid-ucQMyFtR5v .content-container {
    flex-wrap: wrap;
    padding: 40px 0;
  }
}
.cid-ucQMyFtR5v .line-frame {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
  width: 1px;
  background-color: rgba(226, 245, 167, 0.1);
}
.cid-ucQMyFtR5v .line-frame-1 {
  top: calc(100% - 11px);
}
.cid-ucQMyFtR5v .line-frame-2 {
  bottom: calc(100% - 11px);
}
.cid-ucQMyFtR5v .point-frame {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 3px;
  height: 3px;
  background-color: rgba(226, 245, 167, 0.1);
}
.cid-ucQMyFtR5v .point-frame-1 {
  top: 19px;
}
.cid-ucQMyFtR5v .point-frame-2 {
  bottom: 19px;
}
.cid-ucQMyFtR5v .title-container {
  width: 70%;
  padding: 0 40px;
}
@media (max-width: 991px) {
  .cid-ucQMyFtR5v .title-container {
    padding: 0 40px 0 0;
  }
}
@media (max-width: 767px) {
  .cid-ucQMyFtR5v .title-container {
    width: 100%;
    padding: 0;
  }
}
.cid-ucQMyFtR5v .text-container {
  width: 30%;
  padding: 0 40px;
}
@media (max-width: 991px) {
  .cid-ucQMyFtR5v .text-container {
    padding: 0 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-ucQMyFtR5v .text-container {
    width: 100%;
    padding: 32px 0 0 0;
  }
}
.cid-ucQMyFtR5v .item-container {
  width: 100%;
}
.cid-ucQMyFtR5v .mbr-section-title {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMyFtR5v .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMyFtR5v .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 575px) {
  .cid-ucQMyFtR5v .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-ucRm8tymT0 {
  overflow: hidden;
  background-image: url("../../../assets/images/as7-9076-scaled-2000x1333.jpg");
}
.cid-ucRm8tymT0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucRm8tymT0 .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-ucRm8tymT0 .container {
    padding: 0 24px;
  }
}
.cid-ucRm8tymT0 .card-wrapper .card-wrap {
  display: inline-flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: .6rem !important;
  padding: 42px 48px 48px;
  width: 40%;
}
@media (max-width: 1440px) {
  .cid-ucRm8tymT0 .card-wrapper .card-wrap {
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .cid-ucRm8tymT0 .card-wrapper .card-wrap {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .cid-ucRm8tymT0 .card-wrapper .card-wrap {
    padding: 20px;
    width: 100%;
  }
}
.cid-ucRm8tymT0 .card-wrapper .card-wrap .mbr-desc {
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ucRm8tymT0 .card-wrapper .card-wrap .mbr-desc {
    margin-bottom: 28px;
  }
}
.cid-ucRm8tymT0 .card-wrapper .card-wrap .mbr-section-title {
  width: 100%;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-ucRm8tymT0 .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 28px;
  }
}
.cid-ucRm8tymT0 .card-wrapper .card-wrap .mbr-text {
  width: 100%;
  margin-bottom: 0;
}
.cid-ucRm8tymT0 .mbr-desc {
  color: #202020;
}
.cid-ucRm8tymT0 .mbr-section-title {
  color: #202020;
}
.cid-ucRm8tymT0 .mbr-text {
  color: #202020;
}
.cid-ucQMyGKSK2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a2229;
}
.cid-ucQMyGKSK2 .row {
  align-items: center;
  width: 100%;
}
.cid-ucQMyGKSK2 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-ucQMyGKSK2 .mbr-section-title {
  color: #000000;
}
.cid-ucQMyGKSK2 .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-ucQMyGKSK2 .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-ucQMyGKSK2 .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-ucQMyGKSK2 .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-ucQMyGKSK2 .text-container {
  padding: 32px;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-ucQMyGKSK2 .text-container {
    padding: 24px;
  }
}
.cid-ucQMyGKSK2 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucQMyGKSK2 .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-ucQMyGKSK2 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #32fc1d;
}
.cid-ucQMyGKSK2 .card-title {
  width: 100%;
  color: #c49e4b;
  margin-bottom: 0;
}
.cid-ucQMyGKSK2 .mbr-text {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-ucQMyHNLEN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a2229;
}
.cid-ucQMyHNLEN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMyHNLEN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMyHNLEN .row {
  justify-content: left;
}
.cid-ucQMyHNLEN .main-col {
  display: flex;
}
.cid-ucQMyHNLEN .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 850px;
}
.cid-ucQMyHNLEN .mbr-section-title {
  color: #BF9341;
  width: 100%;
  text-align: center;
}
.cid-ucQMyHNLEN .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-top: 20px;
}
.cid-ucQMyHNLEN .mbr-text {
  color: #BF9341;
  width: 100%;
  margin-top: 1rem;
}
.cid-ucQMyIzNeR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ded7cd;
}
.cid-ucQMyIzNeR .container-fluid {
  padding: 0 3rem;
}
.cid-ucQMyIzNeR .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #1455e6 50%, #3c4e84 120%);
  display: inline-block;
}
.cid-ucQMyIzNeR .mbr-section-title {
  color: #000000;
}
.cid-ucQMyIzNeR .mbr-section-subtitle {
  color: #000000;
}
.cid-ucQMyIzNeR .panel-group {
  width: 100%;
  margin: 2rem auto;
  margin-top: 0;
}
.cid-ucQMyIzNeR .header-text {
  padding: 2rem 1rem !important;
}
.cid-ucQMyIzNeR .card {
  border-radius: 25px !important;
  background: #ecca7f;
  margin-bottom: 1rem;
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.1);
}
.cid-ucQMyIzNeR .card .card-header {
  border-radius: 25px;
  border: 0px;
  padding: 0;
  background-color: transparent !important;
}
.cid-ucQMyIzNeR .card .card-header a.panel-title {
  transition: all .3s;
  border-radius: 25px 25px 0 0;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
  padding-right: 2rem;
}
.cid-ucQMyIzNeR .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-ucQMyIzNeR .card .card-header a.panel-title:hover .sign {
  background-color: #c49e4b !important;
}
.cid-ucQMyIzNeR .card .card-header a.panel-title .sign {
  position: absolute;
  right: 0;
  top: -1px;
  bottom: 0;
  border-radius: 0 25px 25px 0;
  background-color: #000000;
  padding: 2rem;
  padding-top: 36px;
  color: white;
}
.cid-ucQMyIzNeR .card .card-header a.panel-title h4 {
  padding: 1rem 1rem;
  margin-bottom: 0;
}
.cid-ucQMyIzNeR .card .card-header a.collapsed {
  border-radius: 25px;
}
.cid-ucQMyIzNeR .card .panel-body {
  width: calc(100% - 80px);
  border-radius: 0 0 0 25px;
}
@media (max-width: 767px) {
  .cid-ucQMyIzNeR .container-fluid {
    padding: 0 1rem;
  }
  .cid-ucQMyIzNeR .header-text {
    padding: 1rem !important;
  }
  .cid-ucQMyIzNeR .sign {
    padding: 16px !important;
    padding-top: 22px !important;
  }
  .cid-ucQMyIzNeR .panel-body {
    width: calc(100% - 48px);
  }
  .cid-ucQMyIzNeR .panel-group {
    padding: 0;
  }
}
.cid-ucQMyIzNeR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMyIzNeR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMyJIpqH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #2b2b2b;
}
.cid-ucQMyJIpqH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMyJIpqH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMyJIpqH .container-fluid {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .cid-ucQMyJIpqH .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ucQMyJIpqH .container {
    padding: 0 30px;
  }
}
.cid-ucQMyJIpqH .mbr-section-title {
  margin-bottom: 70px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ucQMyJIpqH .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-ucQMyJIpqH .video-block .video-wrapper .app-video-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucQMyJIpqH .video-block .video-wrapper .app-video-wrapper img {
    height: 350px;
  }
}
.cid-ucQMyJIpqH .video-block .video-wrapper .app-video-wrapper::before {
  color: #fe5115;
  text-shadow: none;
}
.cid-ucQMyJIpqH .video-block .video-wrapper iframe {
  height: 700px;
  object-fit: cover;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-ucQMyJIpqH .video-block .video-wrapper iframe {
    height: 350px;
  }
}
.cid-ucQMyKDr5n {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a2229;
}
.cid-ucQMyKDr5n .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMyKDr5n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMyKDr5n .row {
  justify-content: left;
}
.cid-ucQMyKDr5n .main-col {
  display: flex;
}
.cid-ucQMyKDr5n .content-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 850px;
}
.cid-ucQMyKDr5n .mbr-section-title {
  color: #BF9341;
  width: 100%;
  text-align: center;
}
.cid-ucQMyKDr5n .mbr-section-subtitle {
  color: #BF9341;
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
.cid-ucQMyKDr5n .mbr-text {
  color: #ecca7f;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}
.cid-ucRyHnKSQH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #1b1818;
}
.cid-ucRyHnKSQH .mbr-iconfont {
  font-size: 1.5rem !important;
  font-family: 'Moririse2' !important;
  color: white;
  transition: all 0.3s;
  transform: rotate(45deg);
  background: #1b1818;
  border-radius: 50%;
  padding: 1.5rem;
}
@media (max-width: 767px) {
  .cid-ucRyHnKSQH .mbr-iconfont {
    padding: 1rem;
    font-size: 1.2rem !important;
  }
}
.cid-ucRyHnKSQH .panel-group {
  border: none;
}
.cid-ucRyHnKSQH .card-header {
  padding: 1.2rem 0.5rem;
}
@media (max-width: 767px) {
  .cid-ucRyHnKSQH .card-header {
    padding: 1rem 0rem;
  }
}
.cid-ucRyHnKSQH .panel-body {
  padding: 0 0.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-ucRyHnKSQH .panel-body {
    padding: 0rem;
    padding-bottom: 1rem;
  }
}
.cid-ucRyHnKSQH .content {
  margin: 5rem auto;
}
.cid-ucRyHnKSQH .img-col {
  padding: 0;
}
.cid-ucRyHnKSQH .img-item {
  height: 100%;
}
.cid-ucRyHnKSQH img {
  height: 100%;
  object-fit: cover;
}
.cid-ucRyHnKSQH .collapsed span {
  transform: rotate(0deg);
}
.cid-ucRyHnKSQH .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ucRyHnKSQH p {
  margin-bottom: 0.3rem;
}
.cid-ucRyHnKSQH .panel-title-edit {
  color: #1b1818;
}
.cid-ucRyHnKSQH .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
  border: 0;
  border-radius: 2rem;
}
.cid-ucRyHnKSQH .card {
  background: #c49e4b;
  padding: 0rem 2rem;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .cid-ucRyHnKSQH .card {
    padding: 1rem;
  }
}
.cid-ucRyHnKSQH .panel-text {
  color: #1b1818;
}
.cid-ucRyHnKSQH H3 {
  text-align: center;
  color: #ffffff;
}
.cid-ucRyHnKSQH H4 {
  text-align: center;
  color: #ffffff;
}
.cid-ucQMyLBn1Z {
  display: flex;
  padding-top: 105px;
  padding-bottom: 105px;
  background: linear-gradient(to bottom, #ecca7f, #ffffff);
}
.cid-ucQMyLBn1Z .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-ucQMyLBn1Z .mbr-text,
.cid-ucQMyLBn1Z .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-ucQMyLBn1Z .mbr-section-title,
.cid-ucQMyLBn1Z .line {
  color: #232323;
}
.cid-ucQMyLBn1Z .google-map {
  height: 40rem;
  filter: grayscale(1);
  position: relative;
  border-radius: 2rem;
}
.cid-ucQMyLBn1Z .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-ucQMyLBn1Z .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ucQMyLBn1Z .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucQMyLBn1Z .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucQMyLBn1Z h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-ucQMyLBn1Z h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-ucQMyLBn1Z .mbr-section-subtitle,
.cid-ucQMyLBn1Z .align {
  text-align: left;
  color: #232323;
}
.cid-ucQMyMvcxo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a2229;
}
.cid-ucQMyMvcxo .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQMyMvcxo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQMyMvcxo .container {
  max-width: 1600px;
}
.cid-ucQMyMvcxo .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #c5e073;
}
@media (max-width: 991px) {
  .cid-ucQMyMvcxo .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-ucQMyMvcxo .border-container {
    padding: 30px 0;
  }
}
.cid-ucQMyMvcxo .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-ucQMyMvcxo .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-ucQMyMvcxo .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-ucQMyMvcxo .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-ucQMyMvcxo .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #1a2229;
  border-color: #c5e073;
}
@media (max-width: 991px) {
  .cid-ucQMyMvcxo .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQMyMvcxo .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-ucQMyMvcxo .border-frame {
    width: 7%;
  }
}
.cid-ucQMyMvcxo .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-ucQMyMvcxo .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-ucQMyMvcxo .footer-item-container:not(:first-child) {
  border-left: 1px solid #c5e073;
}
@media (max-width: 991px) {
  .cid-ucQMyMvcxo .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-ucQMyMvcxo .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid #c5e073;
  }
}
@media (max-width: 575px) {
  .cid-ucQMyMvcxo .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-ucQMyMvcxo .footer-item {
  height: 100%;
}
.cid-ucQMyMvcxo .mbr-section-subtitle {
  color: #ecca7f;
  width: 100%;
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .cid-ucQMyMvcxo .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-ucQMyMvcxo .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-ucQMyMvcxo .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-ucQMyMvcxo .mbr-section-btn {
  margin-top: 20px;
}
.cid-ucQMyMvcxo .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1455e6;
}
.cid-ucQMyMvcxo .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-ucQMyMvcxo .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-ucQMyMvcxo .list li:hover {
  color: #1455e6 !important;
}
.cid-ucQMyMvcxo .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQMyMvcxo .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQMyMvcxo .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQMyMvcxo .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQMyMvcxo .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-ucQMyMvcxo .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-ucQMyMvcxo .social-text {
  color: #1455e6;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-ucQMyMvcxo .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-ucQMyMvcxo .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-ucQMyMvcxo .soc-item:hover .mbr-iconfont {
  color: #1455e6 !important;
}
.cid-ucQMyMvcxo .soc-item:hover .social-text {
  color: #1455e6 !important;
}
.cid-ucQMyMvcxo .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-ucQMyMvcxo .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-ucQMyMvcxo .copyright-container {
    margin-top: 30px;
  }
}
.cid-ucQMyMvcxo .copyright-text {
  color: #ecca7f;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ucQMyMvcxo .copyright-text {
    text-align: center !important;
  }
}
.cid-ucQMyMvcxo .mbr-text,
.cid-ucQMyMvcxo .mbr-section-btn {
  color: #ecca7f;
}
.cid-te6eVEWIgs .navbar-dropdown {
  position: relative !important;
}
.cid-te6eVEWIgs .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-te6eVEWIgs .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-te6eVEWIgs .dropdown-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: .4s all !important;
}
.cid-te6eVEWIgs .dropdown-item:hover,
.cid-te6eVEWIgs .dropdown-item:focus {
  background: rgba(191, 147, 65, 0.5) !important;
  color: white !important;
}
.cid-te6eVEWIgs .dropdown-item:hover span {
  color: white;
}
.cid-te6eVEWIgs .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-te6eVEWIgs .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-te6eVEWIgs .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-te6eVEWIgs .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-te6eVEWIgs .nav-link {
  position: relative;
}
.cid-te6eVEWIgs .container {
  display: flex;
  margin: auto;
  max-width: 1600px;
}
.cid-te6eVEWIgs .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0 !important;
}
.cid-te6eVEWIgs .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-te6eVEWIgs .iconfont-wrapper:hover .mbr-iconfont {
  color: #1455e6;
}
.cid-te6eVEWIgs .dropdown-menu,
.cid-te6eVEWIgs .navbar.opened {
  background: #1a2229 !important;
}
.cid-te6eVEWIgs .nav-item:focus,
.cid-te6eVEWIgs .nav-link:focus {
  outline: none;
}
.cid-te6eVEWIgs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-te6eVEWIgs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-te6eVEWIgs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-te6eVEWIgs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-te6eVEWIgs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-te6eVEWIgs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-te6eVEWIgs .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a2229;
  padding: 0 !important;
}
.cid-te6eVEWIgs .navbar.opened {
  transition: all 0.3s;
}
.cid-te6eVEWIgs .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-te6eVEWIgs .navbar .navbar-logo img {
  width: auto;
}
.cid-te6eVEWIgs .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-te6eVEWIgs .navbar.collapsed {
  justify-content: center;
}
.cid-te6eVEWIgs .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-te6eVEWIgs .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-te6eVEWIgs .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-te6eVEWIgs .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-te6eVEWIgs .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-te6eVEWIgs .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-te6eVEWIgs .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-te6eVEWIgs .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-te6eVEWIgs .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-te6eVEWIgs .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-te6eVEWIgs .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-te6eVEWIgs .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-te6eVEWIgs .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-te6eVEWIgs .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-te6eVEWIgs .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-te6eVEWIgs .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-te6eVEWIgs .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-te6eVEWIgs .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-te6eVEWIgs .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  padding: 0 !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.cid-te6eVEWIgs .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-te6eVEWIgs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-te6eVEWIgs .dropdown-item.active,
.cid-te6eVEWIgs .dropdown-item:active {
  background-color: transparent;
}
.cid-te6eVEWIgs .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-te6eVEWIgs .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-te6eVEWIgs .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-te6eVEWIgs .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a2229;
}
.cid-te6eVEWIgs .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-te6eVEWIgs .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-te6eVEWIgs ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-te6eVEWIgs .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-te6eVEWIgs button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-te6eVEWIgs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-te6eVEWIgs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-te6eVEWIgs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-te6eVEWIgs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-te6eVEWIgs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-te6eVEWIgs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-te6eVEWIgs nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-te6eVEWIgs nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-te6eVEWIgs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-te6eVEWIgs .navbar-dropdown {
  padding: 0 1rem;
}
.cid-te6eVEWIgs a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-te6eVEWIgs .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-te6eVEWIgs .navbar {
    height: 70px;
  }
  .cid-te6eVEWIgs .navbar.opened {
    height: auto;
  }
  .cid-te6eVEWIgs .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-te6eVEWIgs .header-item {
  width: 33.33333333%;
  padding: 10px 0;
}
.cid-te6eVEWIgs .navbar-toggler {
  margin-left: 10px;
}
.cid-te6eVEWIgs .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #b84358;
}
.cid-te6eVEWIgs .navbar-logo {
  margin-right: 0 !important;
}
.cid-te6eVEWIgs .mbr-text {
  width: 100%;
  color: #BF9341;
}
@media (max-width: 575px) {
  .cid-te6eVEWIgs .mbr-text {
    display: none;
  }
}
.cid-te6eVEWIgs .navbar-collapse {
  padding-top: 40px !important;
}
.cid-te6eVEWIgs .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-te6eVEWIgs .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-ucRofSpv9W {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/istockphoto-1305387125-170667a-509x339.jpg");
}
.cid-ucRofSpv9W .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucRofSpv9W .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-ucRofSpv9W .container {
    padding: 10px 8px;
  }
}
.cid-ucRofSpv9W .row {
  border-radius: 25px;
  background-color: #222222;
  box-shadow: inset 0 0 5rem #bf9341;
  padding: 100px 40px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-ucRofSpv9W .row {
    padding: 50px 10px;
  }
}
.cid-ucRofSpv9W .row .card {
  padding: 0;
}
.cid-ucRofSpv9W .mbr-section-subtitle {
  opacity: .5;
  margin-bottom: 40px;
  color: #bf9341;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucRofSpv9W .mbr-section-subtitle {
    margin-bottom: 30px;
  }
}
.cid-ucRofSpv9W .mbr-section-title {
  margin: 0;
  color: #ecca7f;
  text-align: center;
}
.cid-ucRofSpv9W .mbr-section-title span {
  opacity: .5;
}
.cid-ucRplb0LBh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #bf9341;
}
.cid-ucRplb0LBh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucRplb0LBh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucRplb0LBh .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-ucRplb0LBh .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-ucRplb0LBh .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ucRplb0LBh .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucRplb0LBh .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucRplb0LBh .content-head {
  max-width: 800px;
}
.cid-ucRplb0LBh .mbr-section-title {
  color: #ffffff;
}
.cid-ucQouFn9Uq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a2229;
}
.cid-ucQouFn9Uq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucQouFn9Uq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucQouFn9Uq .container {
  max-width: 1600px;
}
.cid-ucQouFn9Uq .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #c5e073;
}
@media (max-width: 991px) {
  .cid-ucQouFn9Uq .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-ucQouFn9Uq .border-container {
    padding: 30px 0;
  }
}
.cid-ucQouFn9Uq .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-ucQouFn9Uq .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-ucQouFn9Uq .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-ucQouFn9Uq .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-ucQouFn9Uq .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #1a2229;
  border-color: #c5e073;
}
@media (max-width: 991px) {
  .cid-ucQouFn9Uq .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-ucQouFn9Uq .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-ucQouFn9Uq .border-frame {
    width: 7%;
  }
}
.cid-ucQouFn9Uq .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-ucQouFn9Uq .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-ucQouFn9Uq .footer-item-container:not(:first-child) {
  border-left: 1px solid #c5e073;
}
@media (max-width: 991px) {
  .cid-ucQouFn9Uq .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-ucQouFn9Uq .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid #c5e073;
  }
}
@media (max-width: 575px) {
  .cid-ucQouFn9Uq .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-ucQouFn9Uq .footer-item {
  height: 100%;
}
.cid-ucQouFn9Uq .mbr-section-subtitle {
  color: #ecca7f;
  width: 100%;
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .cid-ucQouFn9Uq .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-ucQouFn9Uq .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-ucQouFn9Uq .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-ucQouFn9Uq .mbr-section-btn {
  margin-top: 20px;
}
.cid-ucQouFn9Uq .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1455e6;
}
.cid-ucQouFn9Uq .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-ucQouFn9Uq .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-ucQouFn9Uq .list li:hover {
  color: #1455e6 !important;
}
.cid-ucQouFn9Uq .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQouFn9Uq .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQouFn9Uq .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQouFn9Uq .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucQouFn9Uq .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-ucQouFn9Uq .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-ucQouFn9Uq .social-text {
  color: #1455e6;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-ucQouFn9Uq .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-ucQouFn9Uq .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-ucQouFn9Uq .soc-item:hover .mbr-iconfont {
  color: #1455e6 !important;
}
.cid-ucQouFn9Uq .soc-item:hover .social-text {
  color: #1455e6 !important;
}
.cid-ucQouFn9Uq .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-ucQouFn9Uq .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-ucQouFn9Uq .copyright-container {
    margin-top: 30px;
  }
}
.cid-ucQouFn9Uq .copyright-text {
  color: #ecca7f;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ucQouFn9Uq .copyright-text {
    text-align: center !important;
  }
}
.cid-ucQouFn9Uq .mbr-text,
.cid-ucQouFn9Uq .mbr-section-btn {
  color: #ecca7f;
}
.cid-ucRpycXLjk .navbar-dropdown {
  position: relative !important;
}
.cid-ucRpycXLjk .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucRpycXLjk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucRpycXLjk .dropdown-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: .4s all !important;
}
.cid-ucRpycXLjk .dropdown-item:hover,
.cid-ucRpycXLjk .dropdown-item:focus {
  background: rgba(191, 147, 65, 0.5) !important;
  color: white !important;
}
.cid-ucRpycXLjk .dropdown-item:hover span {
  color: white;
}
.cid-ucRpycXLjk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucRpycXLjk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucRpycXLjk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucRpycXLjk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucRpycXLjk .nav-link {
  position: relative;
}
.cid-ucRpycXLjk .container {
  display: flex;
  margin: auto;
  max-width: 1600px;
}
.cid-ucRpycXLjk .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0 !important;
}
.cid-ucRpycXLjk .iconfont-wrapper .mbr-iconfont {
  transition: .4s all;
}
.cid-ucRpycXLjk .iconfont-wrapper:hover .mbr-iconfont {
  color: #1455e6;
}
.cid-ucRpycXLjk .dropdown-menu,
.cid-ucRpycXLjk .navbar.opened {
  background: #1a2229 !important;
}
.cid-ucRpycXLjk .nav-item:focus,
.cid-ucRpycXLjk .nav-link:focus {
  outline: none;
}
.cid-ucRpycXLjk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucRpycXLjk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucRpycXLjk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucRpycXLjk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucRpycXLjk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucRpycXLjk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucRpycXLjk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #1a2229;
  padding: 0 !important;
}
.cid-ucRpycXLjk .navbar.opened {
  transition: all 0.3s;
}
.cid-ucRpycXLjk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucRpycXLjk .navbar .navbar-logo img {
  width: auto;
}
.cid-ucRpycXLjk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ucRpycXLjk .navbar.collapsed {
  justify-content: center;
}
.cid-ucRpycXLjk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucRpycXLjk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-ucRpycXLjk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucRpycXLjk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucRpycXLjk .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-ucRpycXLjk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ucRpycXLjk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucRpycXLjk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucRpycXLjk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucRpycXLjk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucRpycXLjk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucRpycXLjk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucRpycXLjk .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-ucRpycXLjk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucRpycXLjk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucRpycXLjk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-ucRpycXLjk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucRpycXLjk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucRpycXLjk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  padding: 0 !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.cid-ucRpycXLjk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ucRpycXLjk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucRpycXLjk .dropdown-item.active,
.cid-ucRpycXLjk .dropdown-item:active {
  background-color: transparent;
}
.cid-ucRpycXLjk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucRpycXLjk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucRpycXLjk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucRpycXLjk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #1a2229;
}
.cid-ucRpycXLjk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucRpycXLjk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucRpycXLjk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ucRpycXLjk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ucRpycXLjk button.navbar-toggler {
  outline: none;
  width: 26px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ucRpycXLjk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 25px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ucRpycXLjk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucRpycXLjk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucRpycXLjk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ucRpycXLjk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ucRpycXLjk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucRpycXLjk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ucRpycXLjk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ucRpycXLjk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucRpycXLjk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ucRpycXLjk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucRpycXLjk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucRpycXLjk .navbar {
    height: 70px;
  }
  .cid-ucRpycXLjk .navbar.opened {
    height: auto;
  }
  .cid-ucRpycXLjk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucRpycXLjk .header-item {
  width: 33.33333333%;
  padding: 10px 0;
}
.cid-ucRpycXLjk .navbar-toggler {
  margin-left: 10px;
}
.cid-ucRpycXLjk .hamburger-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #b84358;
}
.cid-ucRpycXLjk .navbar-logo {
  margin-right: 0 !important;
}
.cid-ucRpycXLjk .mbr-text {
  width: 100%;
  color: #BF9341;
}
@media (max-width: 575px) {
  .cid-ucRpycXLjk .mbr-text {
    display: none;
  }
}
.cid-ucRpycXLjk .navbar-collapse {
  padding-top: 40px !important;
}
.cid-ucRpycXLjk .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .cid-ucRpycXLjk .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
}
.cid-ucRpydDjKF {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/2015-04-10-10-16-031-1312x983.jpg");
}
.cid-ucRpydDjKF .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucRpydDjKF .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-ucRpydDjKF .container {
    padding: 10px 8px;
  }
}
.cid-ucRpydDjKF .row {
  border-radius: 25px;
  background-color: #222222;
  box-shadow: inset 0 0 5rem #bf9341;
  padding: 100px 40px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cid-ucRpydDjKF .row {
    padding: 50px 10px;
  }
}
.cid-ucRpydDjKF .row .card {
  padding: 0;
}
.cid-ucRpydDjKF .mbr-section-subtitle {
  opacity: .5;
  margin-bottom: 40px;
  color: #c49e4b;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ucRpydDjKF .mbr-section-subtitle {
    margin-bottom: 30px;
  }
}
.cid-ucRpydDjKF .mbr-section-title {
  margin: 0;
  color: #c49e4b;
  text-align: center;
}
.cid-ucRpydDjKF .mbr-section-title span {
  opacity: .5;
}
.cid-ucRpTyefgJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #27232c;
  overflow: hidden;
}
.cid-ucRpTyefgJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucRpTyefgJ .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-ucRpTyefgJ .container {
    padding: 0 30px;
  }
}
.cid-ucRpTyefgJ .card {
  justify-content: center;
}
.cid-ucRpTyefgJ .content-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .cid-ucRpTyefgJ .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-ucRpTyefgJ .content-wrapper {
    padding: 0;
  }
}
.cid-ucRpTyefgJ .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-ucRpTyefgJ .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ucRpTyefgJ .mbr-section-title {
  color: #bee0d6;
}
.cid-ucRpTyefgJ .mbr-section-title,
.cid-ucRpTyefgJ .mbr-section-btn {
  text-align: center;
  color: #ecca7f;
}
.cid-ucRpyeb6K3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #bf9341;
}
.cid-ucRpyeb6K3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucRpyeb6K3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucRpyeb6K3 .google-map {
  height: 35rem;
  position: relative;
  border-radius: 2rem;
}
.cid-ucRpyeb6K3 .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-ucRpyeb6K3 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ucRpyeb6K3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ucRpyeb6K3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ucRpyeb6K3 .content-head {
  max-width: 800px;
}
.cid-ucRpyeb6K3 .mbr-section-title {
  color: #ffffff;
}
.cid-ucRpyeQ1Pg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1a2229;
}
.cid-ucRpyeQ1Pg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucRpyeQ1Pg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucRpyeQ1Pg .container {
  max-width: 1600px;
}
.cid-ucRpyeQ1Pg .border-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #c5e073;
}
@media (max-width: 991px) {
  .cid-ucRpyeQ1Pg .border-container {
    padding: 48px 0;
  }
}
@media (max-width: 575px) {
  .cid-ucRpyeQ1Pg .border-container {
    padding: 30px 0;
  }
}
.cid-ucRpyeQ1Pg .frame-top-left {
  top: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-bottom-right-radius: 100%;
}
.cid-ucRpyeQ1Pg .frame-top-right {
  top: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-bottom-left-radius: 100%;
}
.cid-ucRpyeQ1Pg .frame-bottom-left {
  bottom: -1px;
  left: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
  border-top-right-radius: 100%;
}
.cid-ucRpyeQ1Pg .frame-bottom-right {
  bottom: -1px;
  right: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
  border-top-left-radius: 100%;
}
.cid-ucRpyeQ1Pg .border-frame {
  position: absolute;
  z-index: 3;
  width: 60px;
  aspect-ratio: 1;
  background-color: #1a2229;
  border-color: #c5e073;
}
@media (max-width: 991px) {
  .cid-ucRpyeQ1Pg .border-frame {
    width: 5%;
  }
}
@media (max-width: 767px) {
  .cid-ucRpyeQ1Pg .border-frame {
    width: 6%;
  }
}
@media (max-width: 575px) {
  .cid-ucRpyeQ1Pg .border-frame {
    width: 7%;
  }
}
.cid-ucRpyeQ1Pg .footer-main-container {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}
.cid-ucRpyeQ1Pg .footer-item-container {
  width: 33.33333333%;
  flex-grow: 1;
  padding: 80px;
}
.cid-ucRpyeQ1Pg .footer-item-container:not(:first-child) {
  border-left: 1px solid #c5e073;
}
@media (max-width: 991px) {
  .cid-ucRpyeQ1Pg .footer-item-container {
    width: 100%;
    padding: 40px 40px 40px 120px;
  }
  .cid-ucRpyeQ1Pg .footer-item-container:not(:first-child) {
    border-left: none;
    border-top: 1px solid #c5e073;
  }
}
@media (max-width: 575px) {
  .cid-ucRpyeQ1Pg .footer-item-container {
    padding: 26px 26px 26px 76px;
  }
}
.cid-ucRpyeQ1Pg .footer-item {
  height: 100%;
}
.cid-ucRpyeQ1Pg .mbr-section-subtitle {
  color: #ecca7f;
  width: 100%;
  margin-bottom: 64px;
}
@media (max-width: 991px) {
  .cid-ucRpyeQ1Pg .mbr-section-subtitle {
    margin-bottom: 56px;
  }
}
@media (max-width: 575px) {
  .cid-ucRpyeQ1Pg .mbr-section-subtitle {
    margin-bottom: 40px;
  }
}
.cid-ucRpyeQ1Pg .mbr-text {
  color: #BF9341;
  width: 100%;
}
.cid-ucRpyeQ1Pg .mbr-section-btn {
  margin-top: 20px;
}
.cid-ucRpyeQ1Pg .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #1455e6;
}
.cid-ucRpyeQ1Pg .list li {
  position: relative;
  width: 100%;
  color: inherit !important;
  padding: 0 0 0 30px;
  margin: 10px 0;
  transition: .3s all;
}
.cid-ucRpyeQ1Pg .list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: currentColor;
}
.cid-ucRpyeQ1Pg .list li:hover {
  color: #1455e6 !important;
}
.cid-ucRpyeQ1Pg .list a {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucRpyeQ1Pg .list a p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucRpyeQ1Pg .list a:hover {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucRpyeQ1Pg .list a:hover p {
  color: inherit !important;
  line-height: inherit !important;
}
.cid-ucRpyeQ1Pg .social-row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cid-ucRpyeQ1Pg .social-row .mbr-iconfont {
  font-size: 18px;
  color: #b84358;
  margin-right: 20px;
}
.cid-ucRpyeQ1Pg .social-text {
  color: #1455e6;
  transition: .4s all;
  margin-bottom: 0 !important;
}
.cid-ucRpyeQ1Pg .soc-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
  transition: .4s all;
}
.cid-ucRpyeQ1Pg .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s all;
}
.cid-ucRpyeQ1Pg .soc-item:hover .mbr-iconfont {
  color: #1455e6 !important;
}
.cid-ucRpyeQ1Pg .soc-item:hover .social-text {
  color: #1455e6 !important;
}
.cid-ucRpyeQ1Pg .copyright-container {
  width: 100%;
  padding: 0;
  margin-top: 56px;
}
@media (max-width: 991px) {
  .cid-ucRpyeQ1Pg .copyright-container {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cid-ucRpyeQ1Pg .copyright-container {
    margin-top: 30px;
  }
}
.cid-ucRpyeQ1Pg .copyright-text {
  color: #ecca7f;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-ucRpyeQ1Pg .copyright-text {
    text-align: center !important;
  }
}
.cid-ucRpyeQ1Pg .mbr-text,
.cid-ucRpyeQ1Pg .mbr-section-btn {
  color: #ecca7f;
}
