body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 5rem;
  line-height: 88px;
  letter-spacing: -0.01em;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 3.125rem;
  line-height: 1.16;
  letter-spacing: -0.01em;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -0.015em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 2rem;
  line-height: 1.228;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.3rem;
  line-height: 34px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 30px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #f8833a !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #ffd387 !important;
}
.bg-danger {
  background-color: #1b4f71 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #dc3905 !important;
  border-color: #dc3905 !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: #872303 !important;
  border-color: #872303 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #872303 !important;
  border-color: #872303 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #f8833a !important;
  border-color: #f8833a !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: #d45608 !important;
  border-color: #d45608 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #d45608 !important;
  border-color: #d45608 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffd387 !important;
  border-color: #ffd387 !important;
  color: #875500 !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: #ffb330 !important;
  border-color: #ffb330 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #875500 !important;
  background-color: #ffb330 !important;
  border-color: #ffb330 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #1b4f71 !important;
  border-color: #1b4f71 !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: #0a1e2b !important;
  border-color: #0a1e2b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0a1e2b !important;
  border-color: #0a1e2b !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #dc3905;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #872303 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #dc3905 !important;
  border-color: #dc3905 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f8833a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d45608 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #f8833a !important;
  border-color: #f8833a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffd387;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffb330 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #875500 !important;
  background-color: #ffd387 !important;
  border-color: #ffd387 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1b4f71;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #0a1e2b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #1b4f71 !important;
  border-color: #1b4f71 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #dc3905 !important;
}
.text-success {
  color: #f8833a !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #ffd387 !important;
}
.text-danger {
  color: #1b4f71 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #781f03 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #c55007 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffae21 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #07151f !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: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #ffd387;
}
.alert-danger {
  background-color: #1b4f71;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #3b95d0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !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: #dc3905 !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='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  box-shadow: none;
  border: none;
  padding: 14px 30px 14px;
}
.mbr-section-btn .btn:hover .mbr-iconfont,
.mbr-section-btn-main .btn:hover .mbr-iconfont {
  transform: translateX(5px);
}
.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
  margin-left: 14px;
  transform: translateX(0);
  transition: all 0.3s ease-out;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline {
  border: 1px solid #000000 !important;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover {
  color: #000000 !important;
}
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline {
  border: 1px solid #dc3905 !important;
}
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover {
  color: #dc3905 !important;
}
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline {
  border: 1px solid #f8833a !important;
}
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover {
  color: #f8833a !important;
}
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline {
  border: 1px solid #ffffff !important;
}
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover {
  color: #ffffff !important;
}
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline {
  border: 1px solid #ffd387 !important;
}
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover {
  color: #ffd387 !important;
}
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline {
  border: 1px solid #1b4f71 !important;
}
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover {
  color: #1b4f71 !important;
}
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline {
  border: 1px solid #000000 !important;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover {
  color: #000000 !important;
}
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
  border: 1px solid #ffffff !important;
}
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover {
  color: #ffffff !important;
}
.cid-uGoB1JcBR7 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uGoB1JcBR7 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uGoB1JcBR7 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGoB1JcBR7 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
}
.cid-uGoB1JcBR7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGoB1JcBR7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGoB1JcBR7 .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uGoB1JcBR7 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uGoB1JcBR7 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uGoB1JcBR7 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uGoB1JcBR7 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uGoB1JcBR7 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uGoB1JcBR7 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uGoB1JcBR7 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uGoB1JcBR7 .navbar-logo {
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .navbar-logo {
    padding-left: 0;
  }
}
.cid-uGoB1JcBR7 .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uGoB1JcBR7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uGoB1JcBR7 .container {
  display: flex;
  height: 80px;
  padding: 0 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 247, 238, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #fff7ee;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uGoB1JcBR7 .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .container {
    width: 95%;
    height: 56px !important;
    padding: 0.5rem;
    margin-top: 0rem;
  }
}
.cid-uGoB1JcBR7 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGoB1JcBR7 .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #fff7ee;
  background: rgba(255, 247, 238, 0) !important;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .nav-item:focus,
.cid-uGoB1JcBR7 .nav-link:focus {
  outline: none;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGoB1JcBR7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGoB1JcBR7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGoB1JcBR7 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uGoB1JcBR7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uGoB1JcBR7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGoB1JcBR7 .navbar .navbar-logo img {
  width: auto;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uGoB1JcBR7 .navbar.collapsed {
  justify-content: center;
}
.cid-uGoB1JcBR7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGoB1JcBR7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGoB1JcBR7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uGoB1JcBR7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGoB1JcBR7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGoB1JcBR7 .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-uGoB1JcBR7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGoB1JcBR7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGoB1JcBR7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .navbar {
    min-height: 72px;
  }
  .cid-uGoB1JcBR7 .navbar .navbar-logo img {
    height: 2.5rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uGoB1JcBR7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGoB1JcBR7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGoB1JcBR7 .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-uGoB1JcBR7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGoB1JcBR7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uGoB1JcBR7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGoB1JcBR7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGoB1JcBR7 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uGoB1JcBR7 .dropdown-item.active,
.cid-uGoB1JcBR7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uGoB1JcBR7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGoB1JcBR7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGoB1JcBR7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGoB1JcBR7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff7ee;
}
.cid-uGoB1JcBR7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uGoB1JcBR7 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uGoB1JcBR7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGoB1JcBR7 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uGoB1JcBR7 .navbar-buttons {
    text-align: left;
  }
}
.cid-uGoB1JcBR7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uGoB1JcBR7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGoB1JcBR7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uGoB1JcBR7 .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGoB1JcBR7 .navbar {
    height: 70px;
  }
  .cid-uGoB1JcBR7 .navbar.opened {
    height: auto;
  }
  .cid-uGoB1JcBR7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uGoB1JcBR7 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uGoB1JcBR7 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uGoB1JcBR7 .navbar-brand {
    margin-right: auto;
  }
  .cid-uGoB1JcBR7 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fff7ee;
    opacity: 1;
    border-color: rgba(255, 247, 238, 0) !important;
    background: rgba(255, 247, 238, 0) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uGoB1JcBR7 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uGoB1JcBR7 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uGoB1JcBR7 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uGnbWZvTsz {
  display: flex;
  background-image: url("../../../assets/images/american-pavers-4.webp");
}
.cid-uGnbWZvTsz .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-uGnbWZvTsz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGnbWZvTsz .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uGnbWZvTsz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .cid-uGnbWZvTsz {
    align-items: center;
  }
  .cid-uGnbWZvTsz .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uGnbWZvTsz .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uGnbWZvTsz {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uGnbWZvTsz .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uGnbWZvTsz .content-wrap {
    width: 100%;
  }
}
.cid-uGnbWZvTsz .mbr-section-subtitle,
.cid-uGnbWZvTsz .line {
  color: #ffffff;
}
.cid-uGnbWZvTsz .mbr-text,
.cid-uGnbWZvTsz .mbr-section-btn {
  text-align: left;
}
.cid-uyPIuwqxtG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uyPIuwqxtG .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-uyPIuwqxtG .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-uyPIuwqxtG .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-uyPIuwqxtG .mbr-text,
.cid-uyPIuwqxtG .mbr-section-btn {
  color: #181818;
}
.cid-uGzfbTYJKq {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uGzfbTYJKq .col-sm-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cid-uGzfbTYJKq .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uGzfbTYJKq .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uGzfbTYJKq .card-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-uGzfbTYJKq .row {
    margin: 0;
  }
}
.cid-uGzfbTYJKq .container {
  border-top: 1px solid #ebebeb;
  padding-top: 2rem;
}
.cid-uGzfbTYJKq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGzfbTYJKq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyNd9cGpOB {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ebebeb;
}
.cid-uyNd9cGpOB .mbr-media {
  position: relative;
}
.cid-uyNd9cGpOB .mbr-media img {
  width: 101%;
  object-fit: cover;
}
.cid-uyNd9cGpOB a:hover {
  background-image: none !important;
}
.cid-uyNd9cGpOB .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-uyNd9cGpOB .card-wrapper {
  border: 1px solid #000000;
  padding: 0;
  overflow: hidden;
}
.cid-uyNd9cGpOB .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
  color: #000000;
}
.cid-uyNd9cGpOB .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uyNd9cGpOB .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uyNd9cGpOB .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uyNd9cGpOB .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uyNd9cGpOB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uyNd9cGpOB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyNd9cGpOB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyNd9cGpOB .mbr-section-title {
  color: #221b35;
}
.cid-uyPiNlhAEK {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uyPiNlhAEK .mbr-section-title {
  text-align: center;
}
.cid-uyPiNlhAEK .mbr-section-subtitle {
  text-align: center;
}
.cid-tD2kjyVv1i {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ebebeb;
}
.cid-tD2kjyVv1i .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-tD2kjyVv1i .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-tD2kjyVv1i .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tD2kjyVv1i .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-tD2kjyVv1i .social-list .soc-item {
  display: inline-block;
  margin: 0 0.3rem;
}
.cid-tD2kjyVv1i .text2 {
  color: #000000;
  text-align: left;
}
.cid-tD2kjyVv1i .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-tD2kjyVv1i .logo-title {
  text-align: center;
}
.cid-tD2kjyVv1i .logo-sub-title {
  text-align: center;
}
.cid-tD2kjyVv1i .links {
  text-align: center;
  color: #656565;
}
.cid-tD2kjyVv1i .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uyPCNsZ9Bu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1b4f71;
}
.cid-uyPCNsZ9Bu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyPCNsZ9Bu .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-uyPCNsZ9Bu .container {
    padding: 0 30px;
  }
}
.cid-uyPCNsZ9Bu .content-wrapper {
  display: flex;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uyPCNsZ9Bu .content-wrapper {
    display: block;
  }
}
.cid-uyPCNsZ9Bu .content-wrapper .card {
  justify-content: center;
}
.cid-uyPCNsZ9Bu .content-wrapper .content-wrap {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .cid-uyPCNsZ9Bu .content-wrapper .content-wrap {
    width: 100%;
    padding: 40px 0 60px;
  }
}
.cid-uyPCNsZ9Bu .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uyPCNsZ9Bu .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 40px;
}
.cid-uyPCNsZ9Bu .content-wrapper .image-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 50%;
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uyPCNsZ9Bu .content-wrapper .image-wrapper {
    min-height: auto;
    height: 400px;
    width: 100%;
  }
}
.cid-uyPCNsZ9Bu .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uyPCNsZ9Bu .content-wrapper .image-wrapper .list {
  position: relative;
  display: inline-block;
  max-width: 310px;
  flex-direction: column;
  width: fit-content;
  padding: 50px 30px;
  list-style-type: none;
  background-color: #eaffe2;
  border-radius: 2rem 0 2rem 0;
  margin: 50px 50px -100px 0;
}
@media (max-width: 992px) {
  .cid-uyPCNsZ9Bu .content-wrapper .image-wrapper .list {
    padding: 40px 20px;
    max-width: 100%;
    width: 100%;
    margin: 50px 0 -100px 0;
  }
}
.cid-uyPCNsZ9Bu .content-wrapper .image-wrapper .list .item-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uyPCNsZ9Bu .content-wrapper .image-wrapper .list .item-wrap {
    display: block;
  }
}
.cid-uyPCNsZ9Bu .content-wrapper .image-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uyPCNsZ9Bu .content-wrapper .image-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
@media (max-width: 992px) {
  .cid-uyPCNsZ9Bu .content-wrapper .image-wrapper .list .item-wrap::before {
    top: 10px;
  }
}
.cid-uyPCNsZ9Bu .mbr-section-title {
  color: #144031;
}
.cid-uyPCNsZ9Bu .mbr-text {
  color: #ffffff;
}
.cid-uyPCNsZ9Bu .list {
  color: #144031;
}
.cid-uyPCNsZ9Bu .mbr-section-title,
.cid-uyPCNsZ9Bu .mbr-section-btn {
  color: #ffffff;
}
.cid-tGfZYRj9kS {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ebebeb;
}
.cid-tGfZYRj9kS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGfZYRj9kS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGfZYRj9kS .container-fluid {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tGfZYRj9kS .container-fluid {
    padding: 0;
  }
}
.cid-tGfZYRj9kS .container-fluid .row {
  padding: 0;
}
.cid-tGfZYRj9kS .row {
  justify-content: center;
}
.cid-tGfZYRj9kS .item {
  position: relative;
  margin-bottom: 30px;
}
.cid-tGfZYRj9kS .item .item-link {
  width: 100%;
  height: 100%;
}
.cid-tGfZYRj9kS .item .item-link img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tGfZYRj9kS .item .item-link .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 510px;
}
.cid-tGfZYRj9kS .item .item-link .item-wrapper:hover .item-content .active-overlay {
  opacity: .4;
}
.cid-tGfZYRj9kS .item .item-link .item-wrapper .item-content {
  padding: 24px 28px;
  z-index: 1;
  position: relative;
}
.cid-tGfZYRj9kS .item .item-link .item-wrapper .item-content .active-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #000000 0, rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: all 0.3s ease-out;
  pointer-events: none;
}
.cid-tGfZYRj9kS .item .item-link .item-wrapper .item-content .item-date-wrap .item-date {
  padding: 0 10px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  margin-bottom: 0;
  display: inline;
  position: relative;
}
.cid-tGfZYRj9kS .item .item-link .item-wrapper .item-content .item-text {
  margin: 20px 0 0;
  position: relative;
}
.cid-tGfZYRj9kS .item .item-link .item-wrapper .item-content .item-desc {
  margin: 28px 0 0;
  position: relative;
}
.cid-tGfZYRj9kS .item-date {
  color: #ffffff;
}
.cid-tGfZYRj9kS .item-text {
  color: #ffffff;
}
.cid-tGfZYRj9kS .item-desc {
  color: #ffffff;
}
.cid-uHDv0PjGzm {
  display: flex;
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uHDv0PjGzm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHDv0PjGzm .dot {
  margin-top: 0.8rem;
  width: 20px;
  height: 20px;
  background: #000000;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.cid-uHDv0PjGzm h1 {
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .cid-uHDv0PjGzm h1 {
    margin-bottom: 1rem;
  }
}
.cid-uHDv0PjGzm p {
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 992px) {
  .cid-uHDv0PjGzm p {
    margin-bottom: 2rem;
  }
}
.cid-uHDv0PjGzm .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 3rem;
}
.cid-uHDv0PjGzm .image-wrapper,
.cid-uHDv0PjGzm img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uHDv0PjGzm .image-wrapper,
  .cid-uHDv0PjGzm img {
    padding-bottom: 0.5rem;
  }
}
.cid-uHDv0PjGzm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uHDv0PjGzm .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uHDv0PjGzm {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uHDv0PjGzm .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uHDv0PjGzm .content-wrap {
    width: 100%;
  }
}
.cid-uHDv0PjGzm .mbr-section-subtitle,
.cid-uHDv0PjGzm .line {
  color: #291f1e;
}
.cid-uHDv0PjGzm .mbr-text,
.cid-uHDv0PjGzm .mbr-section-btn {
  text-align: right;
  color: #291f1e;
}
.cid-uHDv0PjGzm .mbr-section-title {
  color: #291f1e;
}
.cid-uHDv0PjGzm .mbr-section-title,
.cid-uHDv0PjGzm .mbr-section-btn,
.cid-uHDv0PjGzm .line {
  text-align: left;
  color: #291f1e;
}
.cid-uHDv0PjGzm .mbr-text {
  text-align: left;
}
.cid-tGg2xcmEQv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f9f9f9;
}
.cid-tGg2xcmEQv .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #012b3a;
  text-align: left;
}
.cid-tGg2xcmEQv .mbr-section-title {
  margin-bottom: 10px;
  color: #012b3a;
  text-align: left;
}
.cid-tGg2xcmEQv .btn {
  padding: 15px 30px !important;
}
.cid-tGg2xcmEQv a {
  font-weight: 400;
}
.cid-tGg2xcmEQv .mbr-section-subtitle,
.cid-tGg2xcmEQv .button-align {
  text-align: center;
  color: #000000;
}
.cid-tGg2xcmEQv .row {
  justify-content: center;
  display: flex;
}
.cid-uAtWFFlhII {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f9f9f9;
}
.cid-uAtWFFlhII .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAtWFFlhII .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAtWFFlhII .container,
.cid-uAtWFFlhII .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uAtWFFlhII .container,
  .cid-uAtWFFlhII .container-fluid {
    padding: 0 20px;
  }
}
.cid-uAtWFFlhII .row {
  position: relative;
  padding: 100px 16px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background-color: #f9f9f9;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uAtWFFlhII .row {
    padding: 85px 8px;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uAtWFFlhII .map-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .cid-uAtWFFlhII .map-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAtWFFlhII .map-wrapper .google-map iframe {
  height: 300px;
}
@media (max-width: 992px) {
  .cid-uAtWFFlhII .map-wrapper .google-map iframe {
    height: 250px;
  }
}
.cid-uAtWFFlhII .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uAtWFFlhII .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAtWFFlhII .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uAtWFFlhII .mbr-iconfont {
  font-size: 32px;
  display: block;
  margin-right: 10px;
}
.cid-uAtWFFlhII .address-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uAtWFFlhII .address-wrapper {
    display: block;
  }
}
.cid-uAtWFFlhII .address-wrapper .text-wrapper {
  display: flex;
  margin-bottom: 35px;
}
@media (max-width: 992px) {
  .cid-uAtWFFlhII .address-wrapper .text-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uAtWFFlhII .address-wrapper .text-wrapper .text-wrap .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-uAtWFFlhII .address-wrapper .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uAtWFFlhII .links-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uAtWFFlhII .links-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uAtWFFlhII .links-wrapper .links-wrap {
    margin-bottom: 20px;
  }
}
.cid-uAtWFFlhII .links-wrapper .links-wrap a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uAtWFFlhII .links-wrapper .links-wrap a:hover .mbr-email,
.cid-uAtWFFlhII .links-wrapper .links-wrap a:hover .mbr-phone {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .cid-uAtWFFlhII .links-wrapper .links-wrap a {
    margin-bottom: 20px;
  }
}
.cid-uAtWFFlhII .links-wrapper .links-wrap a .mbr-email,
.cid-uAtWFFlhII .links-wrapper .links-wrap a .mbr-phone {
  margin-bottom: 0;
}
.cid-uAtWFFlhII .mbr-section-title {
  color: #232323;
}
.cid-uAtWFFlhII .mbr-section-subtitle,
.cid-uAtWFFlhII .mbr-iconfont {
  color: #3d4045;
}
.cid-uAtWFFlhII .mbr-email {
  color: #166fa9;
}
.cid-uAtWFFlhII .mbr-phone {
  color: #166fa9;
}
.cid-uAtWFFlhII .mbr-text {
  color: #166fa9;
}
.cid-uyPFNCEms7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uyPFNCEms7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyPFNCEms7 .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-uyPFNCEms7 .container {
    padding: 0 30px;
  }
}
.cid-uyPFNCEms7 .card {
  justify-content: center;
}
.cid-uyPFNCEms7 .content-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .cid-uyPFNCEms7 .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uyPFNCEms7 .content-wrapper {
    padding: 0;
  }
}
.cid-uyPFNCEms7 .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uyPFNCEms7 .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uyPFNCEms7 .mbr-section-title {
  color: #bee0d6;
}
.cid-uyPFNCEms7 .mbr-section-title,
.cid-uyPFNCEms7 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uyPvhykTOk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uyPvhykTOk .col-sm-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cid-uyPvhykTOk .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uyPvhykTOk .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uyPvhykTOk .card-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-uyPvhykTOk .row {
    margin: 0;
  }
}
.cid-uyPvhykTOk .container {
  border-top: 1px solid #ebebeb;
  padding-top: 2rem;
}
.cid-uyPvhykTOk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyPvhykTOk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAE7lpc9K2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uAE7lpc9K2 .row {
  align-items: stretch;
  justify-content: center;
  padding: 0rem 0.5rem;
}
.cid-uAE7lpc9K2 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  padding: 1rem;
  justify-content: center;
  width: 100%;
}
.cid-uAE7lpc9K2 .row .img-item img {
  width: 100%;
  object-fit: cover;
  height: 350px;
}
@media (max-height: 767px) {
  .cid-uAE7lpc9K2 .row .img-item img {
    height: 250px;
  }
}
@media (max-width: 992px) {
  .cid-uAE7lpc9K2 .row .img-item {
    padding: 0rem;
  }
}
.cid-uAE7lpc9K2 .big {
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .cid-uAE7lpc9K2 .big {
    transform: scale(1);
  }
}
.cid-uAE7lpc9K2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAE7lpc9K2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAsgDEC5Mm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #1b4f71;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uAsgDEC5Mm .col-main {
    flex-direction: column;
  }
}
.cid-uAsgDEC5Mm .border-item {
  width: 100%;
  height: 1px;
  background: #efefef;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uAsgDEC5Mm .border-item {
    order: 1;
  }
}
.cid-uAsgDEC5Mm .mbr-text {
  max-width: 49%;
  width: 100%;
  color: #fff7ee;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uAsgDEC5Mm .mbr-text {
    order: 3;
    max-width: 100%;
    text-align: center;
  }
}
.cid-uAsgDEC5Mm .list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 49%;
  width: 100%;
  list-style: none;
  padding-left: 0;
  color: #24262b;
}
@media (max-width: 991px) {
  .cid-uAsgDEC5Mm .list {
    align-items: center;
    justify-content: center;
    order: 2;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.cid-uAsgDEC5Mm .list li {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 8px;
  display: inline-block;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: .3s all;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cid-uAsgDEC5Mm .list li:not(:first-child):before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: currentColor;
  }
}
.cid-uAsgDEC5Mm .list li:hover {
  color: #000000;
  border-bottom: 2px solid currentColor;
}
.cid-uAsgDEC5Mm .list li a {
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.cid-uGoB1JcBR7 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uGoB1JcBR7 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uGoB1JcBR7 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGoB1JcBR7 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
}
.cid-uGoB1JcBR7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGoB1JcBR7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGoB1JcBR7 .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uGoB1JcBR7 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uGoB1JcBR7 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uGoB1JcBR7 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uGoB1JcBR7 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uGoB1JcBR7 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uGoB1JcBR7 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uGoB1JcBR7 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uGoB1JcBR7 .navbar-logo {
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .navbar-logo {
    padding-left: 0;
  }
}
.cid-uGoB1JcBR7 .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uGoB1JcBR7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uGoB1JcBR7 .container {
  display: flex;
  height: 80px;
  padding: 0 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 247, 238, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #fff7ee;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uGoB1JcBR7 .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .container {
    width: 95%;
    height: 56px !important;
    padding: 0.5rem;
    margin-top: 0rem;
  }
}
.cid-uGoB1JcBR7 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGoB1JcBR7 .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #fff7ee;
  background: rgba(255, 247, 238, 0) !important;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .nav-item:focus,
.cid-uGoB1JcBR7 .nav-link:focus {
  outline: none;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGoB1JcBR7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGoB1JcBR7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGoB1JcBR7 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uGoB1JcBR7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uGoB1JcBR7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGoB1JcBR7 .navbar .navbar-logo img {
  width: auto;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uGoB1JcBR7 .navbar.collapsed {
  justify-content: center;
}
.cid-uGoB1JcBR7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGoB1JcBR7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGoB1JcBR7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uGoB1JcBR7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGoB1JcBR7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGoB1JcBR7 .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-uGoB1JcBR7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGoB1JcBR7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGoB1JcBR7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .navbar {
    min-height: 72px;
  }
  .cid-uGoB1JcBR7 .navbar .navbar-logo img {
    height: 2.5rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uGoB1JcBR7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGoB1JcBR7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGoB1JcBR7 .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-uGoB1JcBR7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGoB1JcBR7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uGoB1JcBR7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGoB1JcBR7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGoB1JcBR7 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uGoB1JcBR7 .dropdown-item.active,
.cid-uGoB1JcBR7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uGoB1JcBR7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGoB1JcBR7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGoB1JcBR7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGoB1JcBR7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff7ee;
}
.cid-uGoB1JcBR7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uGoB1JcBR7 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uGoB1JcBR7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGoB1JcBR7 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uGoB1JcBR7 .navbar-buttons {
    text-align: left;
  }
}
.cid-uGoB1JcBR7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uGoB1JcBR7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGoB1JcBR7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uGoB1JcBR7 .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGoB1JcBR7 .navbar {
    height: 70px;
  }
  .cid-uGoB1JcBR7 .navbar.opened {
    height: auto;
  }
  .cid-uGoB1JcBR7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uGoB1JcBR7 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uGoB1JcBR7 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uGoB1JcBR7 .navbar-brand {
    margin-right: auto;
  }
  .cid-uGoB1JcBR7 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fff7ee;
    opacity: 1;
    border-color: rgba(255, 247, 238, 0) !important;
    background: rgba(255, 247, 238, 0) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uGoB1JcBR7 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uGoB1JcBR7 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uGoB1JcBR7 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uyPL4bzA5w .modal-body .close {
  background: #1b1b1b;
}
.cid-uyPL4bzA5w .modal-body .close span {
  font-style: normal;
}
.cid-uyPL4bzA5w .carousel-inner > .active,
.cid-uyPL4bzA5w .carousel-inner > .next,
.cid-uyPL4bzA5w .carousel-inner > .prev {
  display: table;
}
.cid-uyPL4bzA5w .carousel-control .icon-next,
.cid-uyPL4bzA5w .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uyPL4bzA5w .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uyPL4bzA5w .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uyPL4bzA5w .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uyPL4bzA5w .boxed-slider > div {
  position: relative;
}
.cid-uyPL4bzA5w .container img {
  width: 100%;
}
.cid-uyPL4bzA5w .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uyPL4bzA5w .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uyPL4bzA5w .mbr-table-cell {
  padding: 0;
}
.cid-uyPL4bzA5w .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uyPL4bzA5w .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-uyPL4bzA5w .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uyPL4bzA5w .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-uyPL4bzA5w .carousel-item .container {
    width: 100%;
  }
}
.cid-uyPL4bzA5w .carousel-item-next.carousel-item-left,
.cid-uyPL4bzA5w .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-uyPL4bzA5w .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-uyPL4bzA5w .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyPL4bzA5w .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyPL4bzA5w .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uyPL4bzA5w .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uyPL4bzA5w .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uyPL4bzA5w .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uyPL4bzA5w .mbr-slider .carousel-indicators li.active,
.cid-uyPL4bzA5w .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uyPL4bzA5w .mbr-slider .carousel-indicators li::after,
.cid-uyPL4bzA5w .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uyPL4bzA5w .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uyPL4bzA5w .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uyPL4bzA5w .mbr-slider > .container img {
  width: 100%;
}
.cid-uyPL4bzA5w .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uyPL4bzA5w .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uyPL4bzA5w .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uyPL4bzA5w .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uyPL4bzA5w .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uyPL4bzA5w .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-uyPL4bzA5w .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uyPL4bzA5w .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uyPL4bzA5w .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uyPL4bzA5w .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uyPL4bzA5w .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uyPL4bzA5w .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uyPL4bzA5w .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uyPL4bzA5w P {
  color: #ffffff;
}
.cid-uyPTldqeDL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
  flex-direction: column;
  justify-content: center;
}
.cid-uyPTldqeDL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyPTldqeDL .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-uyPTldqeDL .container {
    padding: 0 16px;
  }
}
.cid-uyPTldqeDL .row {
  justify-content: space-between;
}
.cid-uyPTldqeDL .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uyPTldqeDL .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uyPTldqeDL .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uyPTldqeDL .image-wrapper {
    margin-top: 32px;
  }
}
.cid-uyPTldqeDL .image-wrapper img {
  height: 550px;
  object-fit: cover;
  border-radius: .5rem !important;
}
@media (max-width: 992px) {
  .cid-uyPTldqeDL .image-wrapper img {
    height: 350px;
  }
}
.cid-uyPTldqeDL .mbr-desc {
  color: #a8a8a8;
}
.cid-uyPTldqeDL .mbr-section-title {
  color: #000000;
}
.cid-uyPTldqeDL .mbr-text {
  color: #000000;
}
.cid-uArCrcUzAw {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uArCrcUzAw .mbr-section-title {
  text-align: center;
}
.cid-uArCrcUzAw .mbr-section-subtitle {
  text-align: center;
}
.cid-uyPT3AG6vL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ebebeb;
  overflow: hidden;
}
.cid-uyPT3AG6vL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyPT3AG6vL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyPT3AG6vL .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uyPT3AG6vL .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uyPT3AG6vL .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uyPT3AG6vL .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uyPT3AG6vL .container {
    padding: 0 16px;
  }
}
.cid-uyPT3AG6vL .row {
  justify-content: space-between;
}
.cid-uyPT3AG6vL .row:hover,
.cid-uyPT3AG6vL .row:focus {
  cursor: pointer;
}
.cid-uyPT3AG6vL .row .card {
  position: relative;
  z-index: 1;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uyPT3AG6vL .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uyPT3AG6vL .image-wrapper img {
  height: 400px;
  object-fit: cover;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-uyPT3AG6vL .image-wrapper img {
    height: 300px;
  }
}
.cid-uyPT3AG6vL .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uyPT3AG6vL .content-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uyPT3AG6vL .mbr-section-title {
  color: #000000;
}
.cid-uyPT3AG6vL .mbr-text {
  color: #000000;
}
.cid-uyPMBn5CAL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uyPMBn5CAL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uyPMBn5CAL .container {
  max-width: 1400px;
}
.cid-uyPMBn5CAL .image-wrapper {
  position: relative;
}
.cid-uyPMBn5CAL .image-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uyPMBn5CAL .image-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uyPMBn5CAL .row {
  flex-direction: row-reverse;
}
.cid-uyPMBn5CAL img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uyPMBn5CAL .mbr-text {
  color: #818181;
}
.cid-uyPMBn5CAL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyPMBn5CAL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uArIFJROjG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uArIFJROjG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uArIFJROjG .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-uArIFJROjG .container {
    padding: 0 30px;
  }
}
.cid-uArIFJROjG .card {
  justify-content: center;
}
.cid-uArIFJROjG .content-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .cid-uArIFJROjG .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uArIFJROjG .content-wrapper {
    padding: 0;
  }
}
.cid-uArIFJROjG .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uArIFJROjG .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uArIFJROjG .mbr-section-title {
  color: #bee0d6;
}
.cid-uArIFJROjG .mbr-section-title,
.cid-uArIFJROjG .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uAsc7Orjgy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uAsc7Orjgy .col-sm-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cid-uAsc7Orjgy .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uAsc7Orjgy .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAsc7Orjgy .card-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-uAsc7Orjgy .row {
    margin: 0;
  }
}
.cid-uAsc7Orjgy .container {
  border-top: 1px solid #ebebeb;
  padding-top: 2rem;
}
.cid-uAsc7Orjgy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAsc7Orjgy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAE8DoQD0o {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uAE8DoQD0o .row {
  align-items: stretch;
  justify-content: center;
  padding: 0rem 0.5rem;
}
.cid-uAE8DoQD0o .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  padding: 1rem;
  justify-content: center;
  width: 100%;
}
.cid-uAE8DoQD0o .row .img-item img {
  width: 100%;
  object-fit: cover;
  height: 350px;
}
@media (max-height: 767px) {
  .cid-uAE8DoQD0o .row .img-item img {
    height: 250px;
  }
}
@media (max-width: 992px) {
  .cid-uAE8DoQD0o .row .img-item {
    padding: 0rem;
  }
}
.cid-uAE8DoQD0o .big {
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .cid-uAE8DoQD0o .big {
    transform: scale(1);
  }
}
.cid-uAE8DoQD0o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAE8DoQD0o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAsgDEC5Mm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #1b4f71;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uAsgDEC5Mm .col-main {
    flex-direction: column;
  }
}
.cid-uAsgDEC5Mm .border-item {
  width: 100%;
  height: 1px;
  background: #efefef;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uAsgDEC5Mm .border-item {
    order: 1;
  }
}
.cid-uAsgDEC5Mm .mbr-text {
  max-width: 49%;
  width: 100%;
  color: #fff7ee;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uAsgDEC5Mm .mbr-text {
    order: 3;
    max-width: 100%;
    text-align: center;
  }
}
.cid-uAsgDEC5Mm .list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 49%;
  width: 100%;
  list-style: none;
  padding-left: 0;
  color: #24262b;
}
@media (max-width: 991px) {
  .cid-uAsgDEC5Mm .list {
    align-items: center;
    justify-content: center;
    order: 2;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.cid-uAsgDEC5Mm .list li {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 8px;
  display: inline-block;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: .3s all;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cid-uAsgDEC5Mm .list li:not(:first-child):before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: currentColor;
  }
}
.cid-uAsgDEC5Mm .list li:hover {
  color: #000000;
  border-bottom: 2px solid currentColor;
}
.cid-uAsgDEC5Mm .list li a {
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.cid-uGoB1JcBR7 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uGoB1JcBR7 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uGoB1JcBR7 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGoB1JcBR7 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
}
.cid-uGoB1JcBR7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGoB1JcBR7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGoB1JcBR7 .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uGoB1JcBR7 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uGoB1JcBR7 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uGoB1JcBR7 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uGoB1JcBR7 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uGoB1JcBR7 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uGoB1JcBR7 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uGoB1JcBR7 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uGoB1JcBR7 .navbar-logo {
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .navbar-logo {
    padding-left: 0;
  }
}
.cid-uGoB1JcBR7 .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uGoB1JcBR7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uGoB1JcBR7 .container {
  display: flex;
  height: 80px;
  padding: 0 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 247, 238, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #fff7ee;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uGoB1JcBR7 .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .container {
    width: 95%;
    height: 56px !important;
    padding: 0.5rem;
    margin-top: 0rem;
  }
}
.cid-uGoB1JcBR7 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGoB1JcBR7 .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #fff7ee;
  background: rgba(255, 247, 238, 0) !important;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .nav-item:focus,
.cid-uGoB1JcBR7 .nav-link:focus {
  outline: none;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGoB1JcBR7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGoB1JcBR7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGoB1JcBR7 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uGoB1JcBR7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uGoB1JcBR7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGoB1JcBR7 .navbar .navbar-logo img {
  width: auto;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uGoB1JcBR7 .navbar.collapsed {
  justify-content: center;
}
.cid-uGoB1JcBR7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGoB1JcBR7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGoB1JcBR7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uGoB1JcBR7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGoB1JcBR7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGoB1JcBR7 .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-uGoB1JcBR7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGoB1JcBR7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGoB1JcBR7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .navbar {
    min-height: 72px;
  }
  .cid-uGoB1JcBR7 .navbar .navbar-logo img {
    height: 2.5rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uGoB1JcBR7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGoB1JcBR7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGoB1JcBR7 .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-uGoB1JcBR7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGoB1JcBR7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uGoB1JcBR7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGoB1JcBR7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGoB1JcBR7 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uGoB1JcBR7 .dropdown-item.active,
.cid-uGoB1JcBR7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uGoB1JcBR7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGoB1JcBR7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGoB1JcBR7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGoB1JcBR7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff7ee;
}
.cid-uGoB1JcBR7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uGoB1JcBR7 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uGoB1JcBR7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGoB1JcBR7 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uGoB1JcBR7 .navbar-buttons {
    text-align: left;
  }
}
.cid-uGoB1JcBR7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uGoB1JcBR7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGoB1JcBR7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uGoB1JcBR7 .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGoB1JcBR7 .navbar {
    height: 70px;
  }
  .cid-uGoB1JcBR7 .navbar.opened {
    height: auto;
  }
  .cid-uGoB1JcBR7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uGoB1JcBR7 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uGoB1JcBR7 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uGoB1JcBR7 .navbar-brand {
    margin-right: auto;
  }
  .cid-uGoB1JcBR7 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fff7ee;
    opacity: 1;
    border-color: rgba(255, 247, 238, 0) !important;
    background: rgba(255, 247, 238, 0) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uGoB1JcBR7 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uGoB1JcBR7 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uGoB1JcBR7 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uyQ3FO4u5z .modal-body .close {
  background: #1b1b1b;
}
.cid-uyQ3FO4u5z .modal-body .close span {
  font-style: normal;
}
.cid-uyQ3FO4u5z .carousel-inner > .active,
.cid-uyQ3FO4u5z .carousel-inner > .next,
.cid-uyQ3FO4u5z .carousel-inner > .prev {
  display: table;
}
.cid-uyQ3FO4u5z .carousel-control .icon-next,
.cid-uyQ3FO4u5z .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uyQ3FO4u5z .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uyQ3FO4u5z .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uyQ3FO4u5z .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uyQ3FO4u5z .boxed-slider > div {
  position: relative;
}
.cid-uyQ3FO4u5z .container img {
  width: 100%;
}
.cid-uyQ3FO4u5z .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uyQ3FO4u5z .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uyQ3FO4u5z .mbr-table-cell {
  padding: 0;
}
.cid-uyQ3FO4u5z .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uyQ3FO4u5z .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-uyQ3FO4u5z .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uyQ3FO4u5z .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-uyQ3FO4u5z .carousel-item .container {
    width: 100%;
  }
}
.cid-uyQ3FO4u5z .carousel-item-next.carousel-item-left,
.cid-uyQ3FO4u5z .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-uyQ3FO4u5z .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-uyQ3FO4u5z .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyQ3FO4u5z .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyQ3FO4u5z .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uyQ3FO4u5z .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uyQ3FO4u5z .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uyQ3FO4u5z .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uyQ3FO4u5z .mbr-slider .carousel-indicators li.active,
.cid-uyQ3FO4u5z .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uyQ3FO4u5z .mbr-slider .carousel-indicators li::after,
.cid-uyQ3FO4u5z .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uyQ3FO4u5z .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uyQ3FO4u5z .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uyQ3FO4u5z .mbr-slider > .container img {
  width: 100%;
}
.cid-uyQ3FO4u5z .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uyQ3FO4u5z .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uyQ3FO4u5z .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uyQ3FO4u5z .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uyQ3FO4u5z .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uyQ3FO4u5z .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-uyQ3FO4u5z .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uyQ3FO4u5z .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uyQ3FO4u5z .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uyQ3FO4u5z .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uyQ3FO4u5z .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uyQ3FO4u5z .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uyQ3FO4u5z .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uyQ3FPjRpJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-uyQ3FPjRpJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyQ3FPjRpJ .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-uyQ3FPjRpJ .container {
    padding: 0 16px;
  }
}
.cid-uyQ3FPjRpJ .row {
  justify-content: space-between;
}
.cid-uyQ3FPjRpJ .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uyQ3FPjRpJ .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uyQ3FPjRpJ .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uyQ3FPjRpJ .image-wrapper {
    margin-top: 32px;
  }
}
.cid-uyQ3FPjRpJ .image-wrapper img {
  height: 550px;
  object-fit: cover;
  border-radius: .5rem !important;
}
@media (max-width: 992px) {
  .cid-uyQ3FPjRpJ .image-wrapper img {
    height: 350px;
  }
}
.cid-uyQ3FPjRpJ .mbr-desc {
  color: #a8a8a8;
}
.cid-uyQ3FPjRpJ .mbr-section-title {
  color: #000000;
}
.cid-uyQ3FPjRpJ .mbr-text {
  color: #000000;
}
.cid-uyQ3FQGIcd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ebebeb;
  overflow: hidden;
}
.cid-uyQ3FQGIcd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyQ3FQGIcd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyQ3FQGIcd .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uyQ3FQGIcd .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uyQ3FQGIcd .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uyQ3FQGIcd .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uyQ3FQGIcd .container {
    padding: 0 16px;
  }
}
.cid-uyQ3FQGIcd .row {
  justify-content: space-between;
}
.cid-uyQ3FQGIcd .row:hover,
.cid-uyQ3FQGIcd .row:focus {
  cursor: pointer;
}
.cid-uyQ3FQGIcd .row .card {
  position: relative;
  z-index: 1;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uyQ3FQGIcd .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uyQ3FQGIcd .image-wrapper img {
  height: 400px;
  object-fit: cover;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-uyQ3FQGIcd .image-wrapper img {
    height: 300px;
  }
}
.cid-uyQ3FQGIcd .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uyQ3FQGIcd .content-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uyQ3FQGIcd .mbr-section-title {
  color: #000000;
}
.cid-uyQ3FQGIcd .mbr-text {
  color: #000000;
}
.cid-uyQ3FS2QyN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uyQ3FS2QyN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uyQ3FS2QyN .container {
  max-width: 1400px;
}
.cid-uyQ3FS2QyN .image-wrapper {
  position: relative;
}
.cid-uyQ3FS2QyN .image-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uyQ3FS2QyN .image-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uyQ3FS2QyN .row {
  flex-direction: row-reverse;
}
.cid-uyQ3FS2QyN img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uyQ3FS2QyN .mbr-text {
  color: #818181;
}
.cid-uyQ3FS2QyN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyQ3FS2QyN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uArKf6DRiP {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uArKf6DRiP .mbr-section-title {
  text-align: center;
}
.cid-uArKf6DRiP .mbr-section-subtitle {
  text-align: center;
}
.cid-uArKgjBbZS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ebebeb;
}
.cid-uArKgjBbZS .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uArKgjBbZS .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uArKgjBbZS .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uArKgjBbZS .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-uArKgjBbZS .social-list .soc-item {
  display: inline-block;
  margin: 0 0.3rem;
}
.cid-uArKgjBbZS .text2 {
  color: #000000;
  text-align: left;
}
.cid-uArKgjBbZS .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-uArKgjBbZS .logo-title {
  text-align: center;
}
.cid-uArKgjBbZS .logo-sub-title {
  text-align: center;
}
.cid-uArKgjBbZS .links {
  text-align: center;
  color: #656565;
}
.cid-uArKgjBbZS .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uArKaG7MuG {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uArKaG7MuG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uArKaG7MuG .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-uArKaG7MuG .container {
    padding: 0 30px;
  }
}
.cid-uArKaG7MuG .card {
  justify-content: center;
}
.cid-uArKaG7MuG .content-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .cid-uArKaG7MuG .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uArKaG7MuG .content-wrapper {
    padding: 0;
  }
}
.cid-uArKaG7MuG .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uArKaG7MuG .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uArKaG7MuG .mbr-section-title {
  color: #bee0d6;
}
.cid-uArKaG7MuG .mbr-section-title,
.cid-uArKaG7MuG .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uAscgZ3MWY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uAscgZ3MWY .col-sm-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cid-uAscgZ3MWY .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uAscgZ3MWY .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAscgZ3MWY .card-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-uAscgZ3MWY .row {
    margin: 0;
  }
}
.cid-uAscgZ3MWY .container {
  border-top: 1px solid #ebebeb;
  padding-top: 2rem;
}
.cid-uAscgZ3MWY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAscgZ3MWY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAE8LLOx0H {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uAE8LLOx0H .row {
  align-items: stretch;
  justify-content: center;
  padding: 0rem 0.5rem;
}
.cid-uAE8LLOx0H .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  padding: 1rem;
  justify-content: center;
  width: 100%;
}
.cid-uAE8LLOx0H .row .img-item img {
  width: 100%;
  object-fit: cover;
  height: 350px;
}
@media (max-height: 767px) {
  .cid-uAE8LLOx0H .row .img-item img {
    height: 250px;
  }
}
@media (max-width: 992px) {
  .cid-uAE8LLOx0H .row .img-item {
    padding: 0rem;
  }
}
.cid-uAE8LLOx0H .big {
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .cid-uAE8LLOx0H .big {
    transform: scale(1);
  }
}
.cid-uAE8LLOx0H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAE8LLOx0H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAsgDEC5Mm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #1b4f71;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uAsgDEC5Mm .col-main {
    flex-direction: column;
  }
}
.cid-uAsgDEC5Mm .border-item {
  width: 100%;
  height: 1px;
  background: #efefef;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uAsgDEC5Mm .border-item {
    order: 1;
  }
}
.cid-uAsgDEC5Mm .mbr-text {
  max-width: 49%;
  width: 100%;
  color: #fff7ee;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uAsgDEC5Mm .mbr-text {
    order: 3;
    max-width: 100%;
    text-align: center;
  }
}
.cid-uAsgDEC5Mm .list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 49%;
  width: 100%;
  list-style: none;
  padding-left: 0;
  color: #24262b;
}
@media (max-width: 991px) {
  .cid-uAsgDEC5Mm .list {
    align-items: center;
    justify-content: center;
    order: 2;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.cid-uAsgDEC5Mm .list li {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 8px;
  display: inline-block;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: .3s all;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cid-uAsgDEC5Mm .list li:not(:first-child):before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: currentColor;
  }
}
.cid-uAsgDEC5Mm .list li:hover {
  color: #000000;
  border-bottom: 2px solid currentColor;
}
.cid-uAsgDEC5Mm .list li a {
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.cid-uGoB1JcBR7 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uGoB1JcBR7 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uGoB1JcBR7 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGoB1JcBR7 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
}
.cid-uGoB1JcBR7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGoB1JcBR7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGoB1JcBR7 .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uGoB1JcBR7 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uGoB1JcBR7 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uGoB1JcBR7 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uGoB1JcBR7 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uGoB1JcBR7 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uGoB1JcBR7 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uGoB1JcBR7 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uGoB1JcBR7 .navbar-logo {
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .navbar-logo {
    padding-left: 0;
  }
}
.cid-uGoB1JcBR7 .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uGoB1JcBR7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uGoB1JcBR7 .container {
  display: flex;
  height: 80px;
  padding: 0 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 247, 238, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #fff7ee;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uGoB1JcBR7 .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .container {
    width: 95%;
    height: 56px !important;
    padding: 0.5rem;
    margin-top: 0rem;
  }
}
.cid-uGoB1JcBR7 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGoB1JcBR7 .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #fff7ee;
  background: rgba(255, 247, 238, 0) !important;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .nav-item:focus,
.cid-uGoB1JcBR7 .nav-link:focus {
  outline: none;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGoB1JcBR7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGoB1JcBR7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGoB1JcBR7 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uGoB1JcBR7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uGoB1JcBR7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGoB1JcBR7 .navbar .navbar-logo img {
  width: auto;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uGoB1JcBR7 .navbar.collapsed {
  justify-content: center;
}
.cid-uGoB1JcBR7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGoB1JcBR7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGoB1JcBR7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uGoB1JcBR7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGoB1JcBR7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGoB1JcBR7 .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-uGoB1JcBR7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGoB1JcBR7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGoB1JcBR7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .navbar {
    min-height: 72px;
  }
  .cid-uGoB1JcBR7 .navbar .navbar-logo img {
    height: 2.5rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uGoB1JcBR7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGoB1JcBR7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGoB1JcBR7 .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-uGoB1JcBR7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGoB1JcBR7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uGoB1JcBR7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGoB1JcBR7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGoB1JcBR7 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uGoB1JcBR7 .dropdown-item.active,
.cid-uGoB1JcBR7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uGoB1JcBR7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGoB1JcBR7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGoB1JcBR7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGoB1JcBR7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff7ee;
}
.cid-uGoB1JcBR7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uGoB1JcBR7 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uGoB1JcBR7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGoB1JcBR7 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uGoB1JcBR7 .navbar-buttons {
    text-align: left;
  }
}
.cid-uGoB1JcBR7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uGoB1JcBR7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGoB1JcBR7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uGoB1JcBR7 .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGoB1JcBR7 .navbar {
    height: 70px;
  }
  .cid-uGoB1JcBR7 .navbar.opened {
    height: auto;
  }
  .cid-uGoB1JcBR7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uGoB1JcBR7 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uGoB1JcBR7 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uGoB1JcBR7 .navbar-brand {
    margin-right: auto;
  }
  .cid-uGoB1JcBR7 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fff7ee;
    opacity: 1;
    border-color: rgba(255, 247, 238, 0) !important;
    background: rgba(255, 247, 238, 0) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uGoB1JcBR7 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uGoB1JcBR7 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uGoB1JcBR7 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uyQ9GBPXCL .modal-body .close {
  background: #1b1b1b;
}
.cid-uyQ9GBPXCL .modal-body .close span {
  font-style: normal;
}
.cid-uyQ9GBPXCL .carousel-inner > .active,
.cid-uyQ9GBPXCL .carousel-inner > .next,
.cid-uyQ9GBPXCL .carousel-inner > .prev {
  display: table;
}
.cid-uyQ9GBPXCL .carousel-control .icon-next,
.cid-uyQ9GBPXCL .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-uyQ9GBPXCL .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uyQ9GBPXCL .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uyQ9GBPXCL .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-uyQ9GBPXCL .boxed-slider > div {
  position: relative;
}
.cid-uyQ9GBPXCL .container img {
  width: 100%;
}
.cid-uyQ9GBPXCL .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-uyQ9GBPXCL .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uyQ9GBPXCL .mbr-table-cell {
  padding: 0;
}
.cid-uyQ9GBPXCL .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uyQ9GBPXCL .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-uyQ9GBPXCL .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uyQ9GBPXCL .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-uyQ9GBPXCL .carousel-item .container {
    width: 100%;
  }
}
.cid-uyQ9GBPXCL .carousel-item-next.carousel-item-left,
.cid-uyQ9GBPXCL .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-uyQ9GBPXCL .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-uyQ9GBPXCL .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uyQ9GBPXCL .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uyQ9GBPXCL .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-uyQ9GBPXCL .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uyQ9GBPXCL .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uyQ9GBPXCL .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-uyQ9GBPXCL .mbr-slider .carousel-indicators li.active,
.cid-uyQ9GBPXCL .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-uyQ9GBPXCL .mbr-slider .carousel-indicators li::after,
.cid-uyQ9GBPXCL .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-uyQ9GBPXCL .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-uyQ9GBPXCL .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-uyQ9GBPXCL .mbr-slider > .container img {
  width: 100%;
}
.cid-uyQ9GBPXCL .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uyQ9GBPXCL .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-uyQ9GBPXCL .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uyQ9GBPXCL .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-uyQ9GBPXCL .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-uyQ9GBPXCL .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-uyQ9GBPXCL .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-uyQ9GBPXCL .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-uyQ9GBPXCL .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-uyQ9GBPXCL .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-uyQ9GBPXCL .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-uyQ9GBPXCL .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-uyQ9GBPXCL .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-uyQ9GD6SIE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-uyQ9GD6SIE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyQ9GD6SIE .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-uyQ9GD6SIE .container {
    padding: 0 16px;
  }
}
.cid-uyQ9GD6SIE .row {
  justify-content: space-between;
}
.cid-uyQ9GD6SIE .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uyQ9GD6SIE .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uyQ9GD6SIE .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uyQ9GD6SIE .image-wrapper {
    margin-top: 32px;
  }
}
.cid-uyQ9GD6SIE .image-wrapper img {
  height: 550px;
  object-fit: cover;
  border-radius: .5rem !important;
}
@media (max-width: 992px) {
  .cid-uyQ9GD6SIE .image-wrapper img {
    height: 350px;
  }
}
.cid-uyQ9GD6SIE .mbr-desc {
  color: #a8a8a8;
}
.cid-uyQ9GD6SIE .mbr-section-title {
  color: #000000;
}
.cid-uyQ9GD6SIE .mbr-text {
  color: #000000;
}
.cid-uyQ9GEqAo5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ebebeb;
  overflow: hidden;
}
.cid-uyQ9GEqAo5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyQ9GEqAo5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uyQ9GEqAo5 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uyQ9GEqAo5 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uyQ9GEqAo5 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uyQ9GEqAo5 .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uyQ9GEqAo5 .container {
    padding: 0 16px;
  }
}
.cid-uyQ9GEqAo5 .row {
  justify-content: space-between;
}
.cid-uyQ9GEqAo5 .row:hover,
.cid-uyQ9GEqAo5 .row:focus {
  cursor: pointer;
}
.cid-uyQ9GEqAo5 .row .card {
  position: relative;
  z-index: 1;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uyQ9GEqAo5 .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uyQ9GEqAo5 .image-wrapper img {
  height: 400px;
  object-fit: cover;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-uyQ9GEqAo5 .image-wrapper img {
    height: 300px;
  }
}
.cid-uyQ9GEqAo5 .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uyQ9GEqAo5 .content-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uyQ9GEqAo5 .mbr-section-title {
  color: #000000;
}
.cid-uyQ9GEqAo5 .mbr-text {
  color: #000000;
}
.cid-uyQ9GFIzYL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uyQ9GFIzYL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uyQ9GFIzYL .container {
  max-width: 1400px;
}
.cid-uyQ9GFIzYL .image-wrapper {
  position: relative;
}
.cid-uyQ9GFIzYL .image-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uyQ9GFIzYL .image-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uyQ9GFIzYL .row {
  flex-direction: row-reverse;
}
.cid-uyQ9GFIzYL img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uyQ9GFIzYL .mbr-text {
  color: #818181;
}
.cid-uyQ9GFIzYL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uyQ9GFIzYL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uArKVgXwTn {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uArKVgXwTn .mbr-section-title {
  text-align: center;
}
.cid-uArKVgXwTn .mbr-section-subtitle {
  text-align: center;
}
.cid-uArKWdFxoD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ebebeb;
}
.cid-uArKWdFxoD .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uArKWdFxoD .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uArKWdFxoD .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uArKWdFxoD .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-uArKWdFxoD .social-list .soc-item {
  display: inline-block;
  margin: 0 0.3rem;
}
.cid-uArKWdFxoD .text2 {
  color: #000000;
  text-align: left;
}
.cid-uArKWdFxoD .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-uArKWdFxoD .logo-title {
  text-align: center;
}
.cid-uArKWdFxoD .logo-sub-title {
  text-align: center;
}
.cid-uArKWdFxoD .links {
  text-align: center;
  color: #656565;
}
.cid-uArKWdFxoD .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uArKXxorxW {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uArKXxorxW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uArKXxorxW .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-uArKXxorxW .container {
    padding: 0 30px;
  }
}
.cid-uArKXxorxW .card {
  justify-content: center;
}
.cid-uArKXxorxW .content-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .cid-uArKXxorxW .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uArKXxorxW .content-wrapper {
    padding: 0;
  }
}
.cid-uArKXxorxW .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uArKXxorxW .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uArKXxorxW .mbr-section-title {
  color: #bee0d6;
}
.cid-uArKXxorxW .mbr-section-title,
.cid-uArKXxorxW .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uAscnFgFqq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uAscnFgFqq .col-sm-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cid-uAscnFgFqq .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uAscnFgFqq .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uAscnFgFqq .card-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-uAscnFgFqq .row {
    margin: 0;
  }
}
.cid-uAscnFgFqq .container {
  border-top: 1px solid #ebebeb;
  padding-top: 2rem;
}
.cid-uAscnFgFqq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAscnFgFqq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAE8ScSIm1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uAE8ScSIm1 .row {
  align-items: stretch;
  justify-content: center;
  padding: 0rem 0.5rem;
}
.cid-uAE8ScSIm1 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  padding: 1rem;
  justify-content: center;
  width: 100%;
}
.cid-uAE8ScSIm1 .row .img-item img {
  width: 100%;
  object-fit: cover;
  height: 350px;
}
@media (max-height: 767px) {
  .cid-uAE8ScSIm1 .row .img-item img {
    height: 250px;
  }
}
@media (max-width: 992px) {
  .cid-uAE8ScSIm1 .row .img-item {
    padding: 0rem;
  }
}
.cid-uAE8ScSIm1 .big {
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .cid-uAE8ScSIm1 .big {
    transform: scale(1);
  }
}
.cid-uAE8ScSIm1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uAE8ScSIm1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uAsgDEC5Mm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #1b4f71;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uAsgDEC5Mm .col-main {
    flex-direction: column;
  }
}
.cid-uAsgDEC5Mm .border-item {
  width: 100%;
  height: 1px;
  background: #efefef;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uAsgDEC5Mm .border-item {
    order: 1;
  }
}
.cid-uAsgDEC5Mm .mbr-text {
  max-width: 49%;
  width: 100%;
  color: #fff7ee;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uAsgDEC5Mm .mbr-text {
    order: 3;
    max-width: 100%;
    text-align: center;
  }
}
.cid-uAsgDEC5Mm .list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 49%;
  width: 100%;
  list-style: none;
  padding-left: 0;
  color: #24262b;
}
@media (max-width: 991px) {
  .cid-uAsgDEC5Mm .list {
    align-items: center;
    justify-content: center;
    order: 2;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.cid-uAsgDEC5Mm .list li {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 8px;
  display: inline-block;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: .3s all;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cid-uAsgDEC5Mm .list li:not(:first-child):before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: currentColor;
  }
}
.cid-uAsgDEC5Mm .list li:hover {
  color: #000000;
  border-bottom: 2px solid currentColor;
}
.cid-uAsgDEC5Mm .list li a {
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.cid-uGoB1JcBR7 {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uGoB1JcBR7 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uGoB1JcBR7 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uGoB1JcBR7 .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
}
.cid-uGoB1JcBR7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uGoB1JcBR7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uGoB1JcBR7 .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uGoB1JcBR7 .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uGoB1JcBR7 .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uGoB1JcBR7 .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uGoB1JcBR7 .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uGoB1JcBR7 .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uGoB1JcBR7 .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uGoB1JcBR7 .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uGoB1JcBR7 .navbar-logo {
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .navbar-logo {
    padding-left: 0;
  }
}
.cid-uGoB1JcBR7 .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uGoB1JcBR7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uGoB1JcBR7 .container {
  display: flex;
  height: 80px;
  padding: 0 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 247, 238, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #fff7ee;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uGoB1JcBR7 .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .container {
    width: 95%;
    height: 56px !important;
    padding: 0.5rem;
    margin-top: 0rem;
  }
}
.cid-uGoB1JcBR7 .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uGoB1JcBR7 .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #fff7ee;
  background: rgba(255, 247, 238, 0) !important;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .nav-item:focus,
.cid-uGoB1JcBR7 .nav-link:focus {
  outline: none;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uGoB1JcBR7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uGoB1JcBR7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uGoB1JcBR7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uGoB1JcBR7 .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uGoB1JcBR7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uGoB1JcBR7 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uGoB1JcBR7 .navbar .navbar-logo img {
  width: auto;
  border-radius: 4px !important;
}
.cid-uGoB1JcBR7 .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uGoB1JcBR7 .navbar.collapsed {
  justify-content: center;
}
.cid-uGoB1JcBR7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uGoB1JcBR7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uGoB1JcBR7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uGoB1JcBR7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uGoB1JcBR7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uGoB1JcBR7 .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-uGoB1JcBR7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uGoB1JcBR7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uGoB1JcBR7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uGoB1JcBR7 .navbar {
    min-height: 72px;
  }
  .cid-uGoB1JcBR7 .navbar .navbar-logo img {
    height: 2.5rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uGoB1JcBR7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uGoB1JcBR7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uGoB1JcBR7 .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-uGoB1JcBR7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uGoB1JcBR7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uGoB1JcBR7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uGoB1JcBR7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uGoB1JcBR7 .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uGoB1JcBR7 .dropdown-item.active,
.cid-uGoB1JcBR7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uGoB1JcBR7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uGoB1JcBR7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uGoB1JcBR7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uGoB1JcBR7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff7ee;
}
.cid-uGoB1JcBR7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uGoB1JcBR7 .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uGoB1JcBR7 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uGoB1JcBR7 .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uGoB1JcBR7 .navbar-buttons {
    text-align: left;
  }
}
.cid-uGoB1JcBR7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uGoB1JcBR7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uGoB1JcBR7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uGoB1JcBR7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uGoB1JcBR7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uGoB1JcBR7 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uGoB1JcBR7 .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uGoB1JcBR7 .navbar {
    height: 70px;
  }
  .cid-uGoB1JcBR7 .navbar.opened {
    height: auto;
  }
  .cid-uGoB1JcBR7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uGoB1JcBR7 .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uGoB1JcBR7 .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uGoB1JcBR7 .navbar-brand {
    margin-right: auto;
  }
  .cid-uGoB1JcBR7 .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fff7ee;
    opacity: 1;
    border-color: rgba(255, 247, 238, 0) !important;
    background: rgba(255, 247, 238, 0) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uGoB1JcBR7 .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uGoB1JcBR7 .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uGoB1JcBR7 .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uGoB1JcBR7 .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uGoB1JcBR7 .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uDicnHdqTG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uDicnHdqTG .mbr-text {
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
.cid-uDicnHdqTG .card-img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-uDicnHdqTG .card-title {
  margin-bottom: 2rem;
  text-align: center;
  color: #ffffff;
  letter-spacing: 0.1em;
}
.cid-uDicnHdqTG .mbr-text,
.cid-uDicnHdqTG .mbr-section-btn {
  color: #181818;
}
.cid-uDicnHyk0y {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDicnHyk0y .col-sm-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cid-uDicnHyk0y .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uDicnHyk0y .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDicnHyk0y .card-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-uDicnHyk0y .row {
    margin: 0;
  }
}
.cid-uDicnHyk0y .container {
  border-top: 1px solid #ebebeb;
  padding-top: 2rem;
}
.cid-uDicnHyk0y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDicnHyk0y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uEuSSGiUxG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uEuSSGiUxG .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uEuSSGiUxG .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uEuSSGiUxG .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uEuSSGiUxG .mbr-gallery-filter {
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-uEuSSGiUxG .container {
  padding: 0;
}
.cid-uEuSSGiUxG .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uEuSSGiUxG .icon-focus {
  display: none;
}
.cid-uEuSSGiUxG .btn-primary-outline {
  border: none !important;
  color: gray !important;
  padding: 1rem 1rem;
  position: relative;
  background: transparent !important;
  font-weight: 400;
}
.cid-uEuSSGiUxG .btn-primary-outline:hover {
  background: transparent !important;
  color: #000000 !important;
}
.cid-uEuSSGiUxG li.active .btn {
  background: transparent !important;
  color: black !important;
}
.cid-uEuSSGiUxG li {
  position: relative;
}
.cid-uEuSSGiUxG .mbr-gallery-filter ul li:not(:last-child):after {
  content: '';
  position: absolute;
  height: 24px;
  width: 1px;
  right: 0px;
  top: 26px;
  background: lightgray;
  transform: rotate(35deg);
}
.cid-uEuSSGiUxG .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uEuSSGiUxG .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uEuSSGiUxG .mbr-gallery-item > div:hover:before {
  opacity: 0.3 !important;
}
.cid-uEuSSGiUxG .btn {
  font-family: Inter !important;
}
.cid-uEuSSGiUxG .mbr-gallery-title {
  font-size: 0.9em;
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 0;
  height: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 2;
  justify-content: center;
  align-items: flex-end;
  transition: all 0.3s;
  opacity: 0;
}
.cid-uEuSSGiUxG .mbr-gallery-title:hover {
  opacity: 1;
}
.cid-uEuSSGiUxG .mbr-gallery-title:before {
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #000000 !important;
  opacity: 0.3;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
@media (max-width: 767px) {
  .cid-uEuSSGiUxG li:not(:last-child):after {
    top: 9px;
  }
  .cid-uEuSSGiUxG .btn-primary-outline {
    padding: 0rem 1rem;
    margin: 0 !important;
  }
}
.cid-uDicnIFs4o {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uDicnIFs4o .mbr-section-title {
  text-align: center;
}
.cid-uDicnIFs4o .mbr-section-subtitle {
  text-align: center;
}
.cid-uDicnJ5Osh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ebebeb;
}
.cid-uDicnJ5Osh .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uDicnJ5Osh .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uDicnJ5Osh .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uDicnJ5Osh .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-uDicnJ5Osh .social-list .soc-item {
  display: inline-block;
  margin: 0 0.3rem;
}
.cid-uDicnJ5Osh .text2 {
  color: #000000;
  text-align: left;
}
.cid-uDicnJ5Osh .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-uDicnJ5Osh .logo-title {
  text-align: center;
}
.cid-uDicnJ5Osh .logo-sub-title {
  text-align: center;
}
.cid-uDicnJ5Osh .links {
  text-align: center;
  color: #656565;
}
.cid-uDicnJ5Osh .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uDicnJzU78 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uDicnJzU78 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDicnJzU78 .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-uDicnJzU78 .container {
    padding: 0 30px;
  }
}
.cid-uDicnJzU78 .content-wrapper {
  display: flex;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uDicnJzU78 .content-wrapper {
    display: block;
  }
}
.cid-uDicnJzU78 .content-wrapper .card {
  justify-content: center;
}
.cid-uDicnJzU78 .content-wrapper .content-wrap {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .cid-uDicnJzU78 .content-wrapper .content-wrap {
    width: 100%;
    padding: 40px 0 60px;
  }
}
.cid-uDicnJzU78 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 35px;
}
.cid-uDicnJzU78 .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 40px;
}
.cid-uDicnJzU78 .content-wrapper .image-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 50%;
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uDicnJzU78 .content-wrapper .image-wrapper {
    min-height: auto;
    height: 400px;
    width: 100%;
  }
}
.cid-uDicnJzU78 .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uDicnJzU78 .content-wrapper .image-wrapper .list {
  position: relative;
  display: inline-block;
  max-width: 310px;
  flex-direction: column;
  width: fit-content;
  padding: 50px 30px;
  list-style-type: none;
  background-color: #eaffe2;
  border-radius: 2rem 0 2rem 0;
  margin: 50px 50px -100px 0;
}
@media (max-width: 992px) {
  .cid-uDicnJzU78 .content-wrapper .image-wrapper .list {
    padding: 40px 20px;
    max-width: 100%;
    width: 100%;
    margin: 50px 0 -100px 0;
  }
}
.cid-uDicnJzU78 .content-wrapper .image-wrapper .list .item-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uDicnJzU78 .content-wrapper .image-wrapper .list .item-wrap {
    display: block;
  }
}
.cid-uDicnJzU78 .content-wrapper .image-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uDicnJzU78 .content-wrapper .image-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: #22654e;
}
@media (max-width: 992px) {
  .cid-uDicnJzU78 .content-wrapper .image-wrapper .list .item-wrap::before {
    top: 10px;
  }
}
.cid-uDicnJzU78 .mbr-section-title {
  color: #144031;
}
.cid-uDicnJzU78 .mbr-text {
  color: #144031;
}
.cid-uDicnJzU78 .list {
  color: #144031;
}
.cid-uDicnK0tmw {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ebebeb;
}
.cid-uDicnK0tmw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDicnK0tmw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDicnK0tmw .container-fluid {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uDicnK0tmw .container-fluid {
    padding: 0;
  }
}
.cid-uDicnK0tmw .container-fluid .row {
  padding: 0;
}
.cid-uDicnK0tmw .row {
  justify-content: center;
}
.cid-uDicnK0tmw .item {
  position: relative;
  margin-bottom: 30px;
}
.cid-uDicnK0tmw .item .item-link {
  width: 100%;
  height: 100%;
}
.cid-uDicnK0tmw .item .item-link img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uDicnK0tmw .item .item-link .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 510px;
}
.cid-uDicnK0tmw .item .item-link .item-wrapper:hover .item-content .active-overlay {
  opacity: .4;
}
.cid-uDicnK0tmw .item .item-link .item-wrapper .item-content {
  padding: 24px 28px;
  z-index: 1;
  position: relative;
}
.cid-uDicnK0tmw .item .item-link .item-wrapper .item-content .active-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #000000 0, rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: all 0.3s ease-out;
  pointer-events: none;
}
.cid-uDicnK0tmw .item .item-link .item-wrapper .item-content .item-date-wrap .item-date {
  padding: 0 10px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  margin-bottom: 0;
  display: inline;
  position: relative;
}
.cid-uDicnK0tmw .item .item-link .item-wrapper .item-content .item-text {
  margin: 20px 0 0;
  position: relative;
}
.cid-uDicnK0tmw .item .item-link .item-wrapper .item-content .item-desc {
  margin: 28px 0 0;
  position: relative;
}
.cid-uDicnK0tmw .item-date {
  color: #ffffff;
}
.cid-uDicnK0tmw .item-text {
  color: #ffffff;
}
.cid-uDicnK0tmw .item-desc {
  color: #ffffff;
}
.cid-uDicnKugfZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f9f9f9;
}
.cid-uDicnKugfZ .mbr-section-subtitle {
  margin-bottom: 10px;
  color: #012b3a;
  text-align: left;
}
.cid-uDicnKugfZ .mbr-section-title {
  margin-bottom: 10px;
  color: #012b3a;
  text-align: left;
}
.cid-uDicnKugfZ .btn {
  padding: 15px 30px !important;
}
.cid-uDicnKugfZ a {
  font-weight: 400;
}
.cid-uDicnKugfZ .mbr-section-subtitle,
.cid-uDicnKugfZ .button-align {
  text-align: center;
  color: #000000;
}
.cid-uDicnKugfZ .row {
  justify-content: center;
  display: flex;
}
.cid-uDicnKUlYs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f9f9f9;
}
.cid-uDicnKUlYs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDicnKUlYs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDicnKUlYs .container,
.cid-uDicnKUlYs .container-fluid {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uDicnKUlYs .container,
  .cid-uDicnKUlYs .container-fluid {
    padding: 0 20px;
  }
}
.cid-uDicnKUlYs .row {
  position: relative;
  padding: 100px 16px;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background-color: #f9f9f9;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uDicnKUlYs .row {
    padding: 85px 8px;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uDicnKUlYs .map-wrapper {
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .cid-uDicnKUlYs .map-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uDicnKUlYs .map-wrapper .google-map iframe {
  height: 300px;
}
@media (max-width: 992px) {
  .cid-uDicnKUlYs .map-wrapper .google-map iframe {
    height: 250px;
  }
}
.cid-uDicnKUlYs .title-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uDicnKUlYs .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uDicnKUlYs .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uDicnKUlYs .mbr-iconfont {
  font-size: 32px;
  display: block;
  margin-right: 10px;
}
.cid-uDicnKUlYs .address-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uDicnKUlYs .address-wrapper {
    display: block;
  }
}
.cid-uDicnKUlYs .address-wrapper .text-wrapper {
  display: flex;
  margin-bottom: 35px;
}
@media (max-width: 992px) {
  .cid-uDicnKUlYs .address-wrapper .text-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uDicnKUlYs .address-wrapper .text-wrapper .text-wrap .mbr-section-subtitle {
  margin-bottom: 5px;
}
.cid-uDicnKUlYs .address-wrapper .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uDicnKUlYs .links-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 992px) {
  .cid-uDicnKUlYs .links-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uDicnKUlYs .links-wrapper .links-wrap {
    margin-bottom: 20px;
  }
}
.cid-uDicnKUlYs .links-wrapper .links-wrap a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uDicnKUlYs .links-wrapper .links-wrap a:hover .mbr-email,
.cid-uDicnKUlYs .links-wrapper .links-wrap a:hover .mbr-phone {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .cid-uDicnKUlYs .links-wrapper .links-wrap a {
    margin-bottom: 20px;
  }
}
.cid-uDicnKUlYs .links-wrapper .links-wrap a .mbr-email,
.cid-uDicnKUlYs .links-wrapper .links-wrap a .mbr-phone {
  margin-bottom: 0;
}
.cid-uDicnKUlYs .mbr-section-title {
  color: #232323;
}
.cid-uDicnKUlYs .mbr-section-subtitle,
.cid-uDicnKUlYs .mbr-iconfont {
  color: #3d4045;
}
.cid-uDicnKUlYs .mbr-email {
  color: #166fa9;
}
.cid-uDicnKUlYs .mbr-phone {
  color: #166fa9;
}
.cid-uDicnKUlYs .mbr-text {
  color: #166fa9;
}
.cid-uDicnLyFJz {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uDicnLyFJz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDicnLyFJz .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-uDicnLyFJz .container {
    padding: 0 30px;
  }
}
.cid-uDicnLyFJz .card {
  justify-content: center;
}
.cid-uDicnLyFJz .content-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .cid-uDicnLyFJz .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uDicnLyFJz .content-wrapper {
    padding: 0;
  }
}
.cid-uDicnLyFJz .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uDicnLyFJz .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uDicnLyFJz .mbr-section-title {
  color: #bee0d6;
}
.cid-uDicnLyFJz .mbr-section-title,
.cid-uDicnLyFJz .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uDicnM0QhS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uDicnM0QhS .col-sm-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cid-uDicnM0QhS .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uDicnM0QhS .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uDicnM0QhS .card-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-uDicnM0QhS .row {
    margin: 0;
  }
}
.cid-uDicnM0QhS .container {
  border-top: 1px solid #ebebeb;
  padding-top: 2rem;
}
.cid-uDicnM0QhS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDicnM0QhS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDicnMIKTx {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uDicnMIKTx .row {
  align-items: stretch;
  justify-content: center;
  padding: 0rem 0.5rem;
}
.cid-uDicnMIKTx .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  padding: 1rem;
  justify-content: center;
  width: 100%;
}
.cid-uDicnMIKTx .row .img-item img {
  width: 100%;
  object-fit: cover;
  height: 350px;
}
@media (max-height: 767px) {
  .cid-uDicnMIKTx .row .img-item img {
    height: 250px;
  }
}
@media (max-width: 992px) {
  .cid-uDicnMIKTx .row .img-item {
    padding: 0rem;
  }
}
.cid-uDicnMIKTx .big {
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .cid-uDicnMIKTx .big {
    transform: scale(1);
  }
}
.cid-uDicnMIKTx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDicnMIKTx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDicnNtPhh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #1b4f71;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uDicnNtPhh .col-main {
    flex-direction: column;
  }
}
.cid-uDicnNtPhh .border-item {
  width: 100%;
  height: 1px;
  background: #efefef;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uDicnNtPhh .border-item {
    order: 1;
  }
}
.cid-uDicnNtPhh .mbr-text {
  max-width: 49%;
  width: 100%;
  color: #fff7ee;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uDicnNtPhh .mbr-text {
    order: 3;
    max-width: 100%;
    text-align: center;
  }
}
.cid-uDicnNtPhh .list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 49%;
  width: 100%;
  list-style: none;
  padding-left: 0;
  color: #24262b;
}
@media (max-width: 991px) {
  .cid-uDicnNtPhh .list {
    align-items: center;
    justify-content: center;
    order: 2;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.cid-uDicnNtPhh .list li {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 8px;
  display: inline-block;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: .3s all;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cid-uDicnNtPhh .list li:not(:first-child):before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: currentColor;
  }
}
.cid-uDicnNtPhh .list li:hover {
  color: #000000;
  border-bottom: 2px solid currentColor;
}
.cid-uDicnNtPhh .list li a {
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
.cid-uH9JpSXMcg {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uH9JpSXMcg .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
@media (max-width: 767px) {
  .cid-uH9JpSXMcg .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uH9JpSXMcg .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uH9JpSXMcg .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
}
.cid-uH9JpSXMcg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uH9JpSXMcg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uH9JpSXMcg .navbar-nav {
  margin: auto;
  margin-left: 0;
  margin-left: auto;
}
.cid-uH9JpSXMcg .navbar-nav .nav-item {
  padding: 0 !important;
  transition: 0.3s all !important;
}
.cid-uH9JpSXMcg .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uH9JpSXMcg .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uH9JpSXMcg .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uH9JpSXMcg .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uH9JpSXMcg .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: 0.3s all !important;
  border-radius: 4px !important;
}
.cid-uH9JpSXMcg .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uH9JpSXMcg .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uH9JpSXMcg .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uH9JpSXMcg .navbar-logo {
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uH9JpSXMcg .navbar-logo {
    padding-left: 0;
  }
}
.cid-uH9JpSXMcg .navbar-caption {
  padding-left: 1rem;
  padding-right: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uH9JpSXMcg .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uH9JpSXMcg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: 0.3s all;
}
.cid-uH9JpSXMcg .container {
  display: flex;
  height: 80px;
  padding: 0 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 247, 238, 0) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #fff7ee;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
  border-radius: 4px !important;
}
@media (max-width: 992px) {
  .cid-uH9JpSXMcg .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uH9JpSXMcg .container {
    width: 95%;
    height: 56px !important;
    padding: 0.5rem;
    margin-top: 0rem;
  }
}
.cid-uH9JpSXMcg .iconfont-wrapper {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uH9JpSXMcg .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: 0.3s all !important;
  min-width: auto;
  background: #fff7ee;
  background: rgba(255, 247, 238, 0) !important;
  border-radius: 4px !important;
}
.cid-uH9JpSXMcg .nav-item:focus,
.cid-uH9JpSXMcg .nav-link:focus {
  outline: none;
}
.cid-uH9JpSXMcg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uH9JpSXMcg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uH9JpSXMcg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uH9JpSXMcg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uH9JpSXMcg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uH9JpSXMcg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uH9JpSXMcg .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uH9JpSXMcg .navbar.opened {
  transition: all 0.3s;
}
.cid-uH9JpSXMcg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uH9JpSXMcg .navbar .navbar-logo img {
  width: auto;
  border-radius: 4px !important;
}
.cid-uH9JpSXMcg .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uH9JpSXMcg .navbar.collapsed {
  justify-content: center;
}
.cid-uH9JpSXMcg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uH9JpSXMcg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uH9JpSXMcg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-uH9JpSXMcg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uH9JpSXMcg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uH9JpSXMcg .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-uH9JpSXMcg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uH9JpSXMcg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uH9JpSXMcg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uH9JpSXMcg .navbar {
    min-height: 72px;
  }
  .cid-uH9JpSXMcg .navbar .navbar-logo img {
    height: 2.5rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uH9JpSXMcg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uH9JpSXMcg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uH9JpSXMcg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uH9JpSXMcg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uH9JpSXMcg .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-uH9JpSXMcg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uH9JpSXMcg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uH9JpSXMcg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uH9JpSXMcg .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uH9JpSXMcg .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uH9JpSXMcg .dropdown-item.active,
.cid-uH9JpSXMcg .dropdown-item:active {
  background-color: transparent;
}
.cid-uH9JpSXMcg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uH9JpSXMcg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uH9JpSXMcg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uH9JpSXMcg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #fff7ee;
}
.cid-uH9JpSXMcg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uH9JpSXMcg .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uH9JpSXMcg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uH9JpSXMcg .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uH9JpSXMcg .navbar-buttons {
    text-align: left;
  }
}
.cid-uH9JpSXMcg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uH9JpSXMcg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uH9JpSXMcg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uH9JpSXMcg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH9JpSXMcg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uH9JpSXMcg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uH9JpSXMcg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH9JpSXMcg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uH9JpSXMcg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uH9JpSXMcg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uH9JpSXMcg .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uH9JpSXMcg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uH9JpSXMcg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uH9JpSXMcg .icons-menu {
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uH9JpSXMcg .navbar {
    height: 70px;
  }
  .cid-uH9JpSXMcg .navbar.opened {
    height: auto;
  }
  .cid-uH9JpSXMcg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uH9JpSXMcg .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uH9JpSXMcg .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uH9JpSXMcg .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uH9JpSXMcg .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: 0.3s all;
  transform: rotate(-90deg);
}
.cid-uH9JpSXMcg .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uH9JpSXMcg .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uH9JpSXMcg .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uH9JpSXMcg .navbar-brand {
    margin-right: auto;
  }
  .cid-uH9JpSXMcg .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #fff7ee;
    opacity: 1;
    border-color: rgba(255, 247, 238, 0) !important;
    background: rgba(255, 247, 238, 0) !important;
    backdrop-filter: blur(8px);
    border-radius: 4px !important;
  }
  .cid-uH9JpSXMcg .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uH9JpSXMcg .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uH9JpSXMcg .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uH9JpSXMcg .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uH9JpSXMcg .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uH9JpSXMcg .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: 0.3s all;
    transform: rotate(0deg);
  }
  .cid-uH9JpSXMcg .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uH9JpSXMcg .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uH9JpSXMcg .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uH9JpSXMcg .navbar-collapse {
    padding: 1rem;
  }
}
.cid-uH9KXVPCrb {
  display: flex;
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/whatsapp20image202025-05-0220at205.52.2220pm-1256x580.webp");
}
.cid-uH9KXVPCrb .mbr-overlay {
  background-color: #000000;
  opacity: 0.4;
}
.cid-uH9KXVPCrb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH9KXVPCrb .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 25rem;
}
@media (max-width: 767px) {
  .cid-uH9KXVPCrb .line {
    margin-bottom: 10rem;
  }
}
.cid-uH9KXVPCrb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH9KXVPCrb p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-uH9KXVPCrb {
    align-items: center;
  }
  .cid-uH9KXVPCrb .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uH9KXVPCrb .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uH9KXVPCrb {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uH9KXVPCrb .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uH9KXVPCrb .content-wrap {
    width: 100%;
  }
}
.cid-uH9KXVPCrb .mbr-section-subtitle,
.cid-uH9KXVPCrb .line {
  color: #ffffff;
}
.cid-uH9KXVPCrb .mbr-text,
.cid-uH9KXVPCrb .mbr-section-btn {
  text-align: left;
}
.cid-uH9JpTJnCI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-uH9JpTJnCI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH9JpTJnCI .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-uH9JpTJnCI .container {
    padding: 0 16px;
  }
}
.cid-uH9JpTJnCI .row {
  justify-content: space-between;
}
.cid-uH9JpTJnCI .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uH9JpTJnCI .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uH9JpTJnCI .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uH9JpTJnCI .image-wrapper {
    margin-top: 32px;
  }
}
.cid-uH9JpTJnCI .image-wrapper img {
  height: 550px;
  object-fit: cover;
  border-radius: .5rem !important;
}
@media (max-width: 992px) {
  .cid-uH9JpTJnCI .image-wrapper img {
    height: 350px;
  }
}
.cid-uH9JpTJnCI .mbr-desc {
  color: #a8a8a8;
}
.cid-uH9JpTJnCI .mbr-section-title {
  color: #000000;
}
.cid-uH9JpTJnCI .mbr-text {
  color: #000000;
}
.cid-uH9JpU9TLN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ebebeb;
  overflow: hidden;
}
.cid-uH9JpU9TLN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH9JpU9TLN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH9JpU9TLN .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uH9JpU9TLN .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uH9JpU9TLN .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uH9JpU9TLN .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uH9JpU9TLN .container {
    padding: 0 16px;
  }
}
.cid-uH9JpU9TLN .row {
  justify-content: space-between;
}
.cid-uH9JpU9TLN .row:hover,
.cid-uH9JpU9TLN .row:focus {
  cursor: pointer;
}
.cid-uH9JpU9TLN .row .card {
  position: relative;
  z-index: 1;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uH9JpU9TLN .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uH9JpU9TLN .image-wrapper img {
  height: 400px;
  object-fit: cover;
  border-radius: 1rem !important;
}
@media (max-width: 992px) {
  .cid-uH9JpU9TLN .image-wrapper img {
    height: 300px;
  }
}
.cid-uH9JpU9TLN .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uH9JpU9TLN .content-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uH9JpU9TLN .mbr-section-title {
  color: #000000;
}
.cid-uH9JpU9TLN .mbr-text {
  color: #000000;
}
.cid-uH9JpUBNZV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uH9JpUBNZV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uH9JpUBNZV .container {
  max-width: 1400px;
}
.cid-uH9JpUBNZV .image-wrapper {
  position: relative;
}
.cid-uH9JpUBNZV .image-wrapper:before {
  content: '';
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  pointer-events: none;
  transition: all 0.3s;
  height: 100%;
  background: #4232e2;
  position: absolute;
  z-index: 10;
}
.cid-uH9JpUBNZV .image-wrapper:hover:before {
  opacity: 0.4;
}
.cid-uH9JpUBNZV .row {
  flex-direction: row-reverse;
}
.cid-uH9JpUBNZV img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uH9JpUBNZV .mbr-text {
  color: #818181;
}
.cid-uH9JpUBNZV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH9JpUBNZV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH9JpV2bI8 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uH9JpV2bI8 .mbr-section-title {
  text-align: center;
}
.cid-uH9JpV2bI8 .mbr-section-subtitle {
  text-align: center;
}
.cid-uH9JpVsZMU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ebebeb;
}
.cid-uH9JpVsZMU .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-uH9JpVsZMU .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-uH9JpVsZMU .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uH9JpVsZMU .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-uH9JpVsZMU .social-list .soc-item {
  display: inline-block;
  margin: 0 0.3rem;
}
.cid-uH9JpVsZMU .text2 {
  color: #000000;
  text-align: left;
}
.cid-uH9JpVsZMU .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-uH9JpVsZMU .logo-title {
  text-align: center;
}
.cid-uH9JpVsZMU .logo-sub-title {
  text-align: center;
}
.cid-uH9JpVsZMU .links {
  text-align: center;
  color: #656565;
}
.cid-uH9JpVsZMU .logo-sub-title i {
  color: #9e9e9e;
}
.cid-uH9JpVZUVo {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uH9JpVZUVo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH9JpVZUVo .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-uH9JpVZUVo .container {
    padding: 0 30px;
  }
}
.cid-uH9JpVZUVo .card {
  justify-content: center;
}
.cid-uH9JpVZUVo .content-wrapper {
  padding: 0 120px;
}
@media (max-width: 1440px) {
  .cid-uH9JpVZUVo .content-wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 992px) {
  .cid-uH9JpVZUVo .content-wrapper {
    padding: 0;
  }
}
.cid-uH9JpVZUVo .content-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uH9JpVZUVo .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uH9JpVZUVo .mbr-section-title {
  color: #bee0d6;
}
.cid-uH9JpVZUVo .mbr-section-title,
.cid-uH9JpVZUVo .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uH9JpWnlSX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-uH9JpWnlSX .col-sm-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .cid-uH9JpWnlSX .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uH9JpWnlSX .card {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uH9JpWnlSX .card-wrapper {
    padding: 0 1.5rem;
  }
}
@media (min-width: 767px) {
  .cid-uH9JpWnlSX .row {
    margin: 0;
  }
}
.cid-uH9JpWnlSX .container {
  border-top: 1px solid #ebebeb;
  padding-top: 2rem;
}
.cid-uH9JpWnlSX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH9JpWnlSX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH9JpWSAYF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uH9JpWSAYF .row {
  align-items: stretch;
  justify-content: center;
  padding: 0rem 0.5rem;
}
.cid-uH9JpWSAYF .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  padding: 1rem;
  justify-content: center;
  width: 100%;
}
.cid-uH9JpWSAYF .row .img-item img {
  width: 100%;
  object-fit: cover;
  height: 350px;
}
@media (max-height: 767px) {
  .cid-uH9JpWSAYF .row .img-item img {
    height: 250px;
  }
}
@media (max-width: 992px) {
  .cid-uH9JpWSAYF .row .img-item {
    padding: 0rem;
  }
}
.cid-uH9JpWSAYF .big {
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .cid-uH9JpWSAYF .big {
    transform: scale(1);
  }
}
.cid-uH9JpWSAYF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uH9JpWSAYF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uH9JpXjOpM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #1b4f71;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uH9JpXjOpM .col-main {
    flex-direction: column;
  }
}
.cid-uH9JpXjOpM .border-item {
  width: 100%;
  height: 1px;
  background: #efefef;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-uH9JpXjOpM .border-item {
    order: 1;
  }
}
.cid-uH9JpXjOpM .mbr-text {
  max-width: 49%;
  width: 100%;
  color: #fff7ee;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uH9JpXjOpM .mbr-text {
    order: 3;
    max-width: 100%;
    text-align: center;
  }
}
.cid-uH9JpXjOpM .list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 49%;
  width: 100%;
  list-style: none;
  padding-left: 0;
  color: #24262b;
}
@media (max-width: 991px) {
  .cid-uH9JpXjOpM .list {
    align-items: center;
    justify-content: center;
    order: 2;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.cid-uH9JpXjOpM .list li {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 8px;
  display: inline-block;
  color: inherit;
  border-bottom: 2px solid transparent;
  transition: .3s all;
  cursor: pointer;
}
@media (min-width: 992px) {
  .cid-uH9JpXjOpM .list li:not(:first-child):before {
    content: "";
    position: absolute;
    left: -8px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: currentColor;
  }
}
.cid-uH9JpXjOpM .list li:hover {
  color: #000000;
  border-bottom: 2px solid currentColor;
}
.cid-uH9JpXjOpM .list li a {
  font-weight: inherit !important;
  line-height: inherit !important;
  color: inherit !important;
}
