body {
  background-color: #f7fcfe;
}
body {
  font-family: Roboto Flex;
}
.display-1 {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: .02em;
}
.display-1 > .mbr-iconfont {
  font-size: 4.0625rem;
}
.display-2 {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 2.875rem;
  line-height: 3.5rem;
}
.display-2 > .mbr-iconfont {
  font-size: 3.59375rem;
}
.display-4 {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 1rem;
  line-height: 1.56rem;
  letter-spacing: -0.01em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 1.375rem;
  line-height: 1.8rem;
  letter-spacing: -0.014em;
}
.display-7 > .mbr-iconfont {
  font-size: 1.71875rem;
}
/* ---- 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: 2.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.275rem;
    font-size: calc( 1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7874999999999999rem + (3.25 - 1.7874999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.3rem;
    font-size: calc( 1.65625rem + (2.875 - 1.65625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.65625rem + (2.875 - 1.65625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((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.1rem;
    font-size: calc( 1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.13125rem + (1.375 - 1.13125) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0;
}
.bg-primary {
  background-color: #f2b1e5 !important;
}
.bg-success {
  background-color: #87e9bc !important;
}
.bg-info {
  background-color: #78e2f8 !important;
}
.bg-warning {
  background-color: #ffdc71 !important;
}
.bg-danger {
  background-color: #ea8690 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f2b1e5 !important;
  border-color: #f2b1e5 !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: #e667cc !important;
  border-color: #e667cc !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #e667cc !important;
  border-color: #e667cc !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #4f4e5f !important;
  border-color: #4f4e5f !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: #27272f !important;
  border-color: #27272f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #27272f !important;
  border-color: #27272f !important;
}
.btn-info,
.btn-info:active {
  background-color: #78e2f8 !important;
  border-color: #78e2f8 !important;
  color: #065a6b !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #26d0f4 !important;
  border-color: #26d0f4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #065a6b !important;
  background-color: #26d0f4 !important;
  border-color: #26d0f4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #87e9bc !important;
  border-color: #87e9bc !important;
  color: #125f3c !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: #3edc93 !important;
  border-color: #3edc93 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #125f3c !important;
  background-color: #3edc93 !important;
  border-color: #3edc93 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffdc71 !important;
  border-color: #ffdc71 !important;
  color: #715500 !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: #1a1400 !important;
  background-color: #ffc71a !important;
  border-color: #ffc71a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #715500 !important;
  background-color: #ffc71a !important;
  border-color: #ffc71a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ea8690 !important;
  border-color: #ea8690 !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: #dd3c4c !important;
  border-color: #dd3c4c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #dd3c4c !important;
  border-color: #dd3c4c !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 {
  border: 1px solid #f2b1e5 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f2b1e5;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background-color: #f2b1e5 !important;
  border-color: transparent!important;
  box-shadow: none!important;
  box-shadow: inset 250px 0 0 0 #f2b1e5 !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #f2b1e5 !important;
  border-color: #f2b1e5 !important;
}
.btn-secondary-outline {
  border: 1px solid #4f4e5f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4f4e5f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff !important;
  background-color: #4f4e5f !important;
  border-color: transparent!important;
  box-shadow: none!important;
  box-shadow: inset 250px 0 0 0 #4f4e5f !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #4f4e5f !important;
  border-color: #4f4e5f !important;
}
.btn-info-outline {
  border: 1px solid #78e2f8 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #78e2f8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #065a6b !important;
  background-color: #78e2f8 !important;
  border-color: transparent!important;
  box-shadow: none!important;
  box-shadow: inset 250px 0 0 0 #78e2f8 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #065a6b !important;
  background-color: #78e2f8 !important;
  border-color: #78e2f8 !important;
}
.btn-success-outline {
  border: 1px solid #87e9bc !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #87e9bc;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #125f3c !important;
  background-color: #87e9bc !important;
  border-color: transparent!important;
  box-shadow: none!important;
  box-shadow: inset 250px 0 0 0 #87e9bc !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #125f3c !important;
  background-color: #87e9bc !important;
  border-color: #87e9bc !important;
}
.btn-warning-outline {
  border: 1px solid #ffdc71 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffdc71;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #715500 !important;
  background-color: #ffdc71 !important;
  border-color: transparent!important;
  box-shadow: none!important;
  box-shadow: inset 250px 0 0 0 #ffdc71 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #715500 !important;
  background-color: #ffdc71 !important;
  border-color: #ffdc71 !important;
}
.btn-danger-outline {
  border: 1px solid #ea8690 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ea8690;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff !important;
  background-color: #ea8690 !important;
  border-color: transparent!important;
  box-shadow: none!important;
  box-shadow: inset 250px 0 0 0 #ea8690 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ea8690 !important;
  border-color: #ea8690 !important;
}
.btn-black-outline {
  border: 1px solid #232323 !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: #ffffff !important;
  background-color: #232323 !important;
  border-color: transparent!important;
  box-shadow: none!important;
  box-shadow: inset 250px 0 0 0 #232323 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline {
  border: 1px solid #fafafa !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: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: transparent!important;
  box-shadow: none!important;
  box-shadow: inset 250px 0 0 0 #fafafa !important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #f2b1e5 !important;
}
.text-secondary {
  color: #4f4e5f !important;
}
.text-success {
  color: #87e9bc !important;
}
.text-info {
  color: #78e2f8 !important;
}
.text-warning {
  color: #ffdc71 !important;
}
.text-danger {
  color: #ea8690 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #e35ac8 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #202027 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #31d98c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #17cdf3 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffc30b !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #db2f40 !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: #f2b1e5;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #78e2f8;
}
.alert-warning {
  background-color: #ffdc71;
}
.alert-danger {
  background-color: #ea8690;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f2b1e5;
  border-color: #f2b1e5;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #f2b1e5;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 1rem;
  line-height: 1.56rem;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #f2b1e5 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 1rem;
  line-height: 1.56rem;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #f2b1e5;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f2b1e5;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #f2b1e5;
}
.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: #f2b1e5;
  border-bottom-color: #f2b1e5;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #f2b1e5 !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: #4f4e5f !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='%23f2b1e5' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  box-shadow: none;
  padding: 18px 62px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .mbr-section-btn .btn,
  .mbr-section-btn-main .btn {
    padding: 18px 32px;
  }
}
.cid-uZCpNdGLzP .navbar-dropdown {
  background-color: #001620 !important;
  padding: 0;
}
.cid-uZCpNdGLzP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #001620 !important;
  background: #001620;
}
.cid-uZCpNdGLzP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZCpNdGLzP .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uZCpNdGLzP .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uZCpNdGLzP .menu_box .navbar.opened,
  .cid-uZCpNdGLzP .menu_box .navbar-collapse {
    background-color: #001620 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uZCpNdGLzP .navbar-dropdown {
  position: relative !important;
}
.cid-uZCpNdGLzP .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uZCpNdGLzP .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uZCpNdGLzP ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uZCpNdGLzP .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uZCpNdGLzP .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 0.5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uZCpNdGLzP .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uZCpNdGLzP li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uZCpNdGLzP .lg_brand {
    margin: 0 1rem;
  }
  .cid-uZCpNdGLzP .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uZCpNdGLzP .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uZCpNdGLzP .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uZCpNdGLzP .nav-item {
    margin: 0 !important;
  }
}
.cid-uZCpNdGLzP .nav-item .nav-link {
  position: relative;
}
.cid-uZCpNdGLzP .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uZCpNdGLzP .nav-item .nav-link:hover,
.cid-uZCpNdGLzP .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uZCpNdGLzP .nav-item .nav-link:hover::before,
.cid-uZCpNdGLzP .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uZCpNdGLzP .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uZCpNdGLzP .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uZCpNdGLzP .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uZCpNdGLzP .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uZCpNdGLzP .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 0.5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uZCpNdGLzP .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uZCpNdGLzP .offcanvas_box {
    display: none;
  }
}
.cid-uZCpNdGLzP .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uZCpNdGLzP .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uZCpNdGLzP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uZCpNdGLzP .container {
  display: flex;
  margin: auto;
}
.cid-uZCpNdGLzP .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uZCpNdGLzP .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uZCpNdGLzP .iconfont-wrapper:hover {
  opacity: 0.5;
}
.cid-uZCpNdGLzP .navbar-caption {
  color: #FFFFFF;
}
.cid-uZCpNdGLzP .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uZCpNdGLzP .navbar-nav {
    margin: 0;
  }
}
.cid-uZCpNdGLzP .dropdown-menu,
.cid-uZCpNdGLzP .navbar.opened {
  background-color: false !important;
}
.cid-uZCpNdGLzP .nav-item:focus,
.cid-uZCpNdGLzP .nav-link:focus {
  outline: none;
}
.cid-uZCpNdGLzP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZCpNdGLzP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZCpNdGLzP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZCpNdGLzP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZCpNdGLzP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZCpNdGLzP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZCpNdGLzP .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uZCpNdGLzP .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uZCpNdGLzP .navbar.opened {
  transition: all 0.3s;
}
.cid-uZCpNdGLzP .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uZCpNdGLzP .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uZCpNdGLzP .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uZCpNdGLzP .navbar.collapsed {
  justify-content: center;
}
.cid-uZCpNdGLzP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZCpNdGLzP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uZCpNdGLzP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZCpNdGLzP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZCpNdGLzP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZCpNdGLzP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uZCpNdGLzP .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uZCpNdGLzP .navbar .nav-item {
    padding: 0.5rem 0;
  }
  .cid-uZCpNdGLzP .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uZCpNdGLzP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZCpNdGLzP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZCpNdGLzP .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uZCpNdGLzP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZCpNdGLzP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uZCpNdGLzP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZCpNdGLzP .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uZCpNdGLzP .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uZCpNdGLzP .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uZCpNdGLzP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uZCpNdGLzP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZCpNdGLzP .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uZCpNdGLzP .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZCpNdGLzP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZCpNdGLzP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uZCpNdGLzP .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uZCpNdGLzP .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uZCpNdGLzP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZCpNdGLzP .dropdown-item.active,
.cid-uZCpNdGLzP .dropdown-item:active {
  background-color: transparent;
}
.cid-uZCpNdGLzP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZCpNdGLzP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZCpNdGLzP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZCpNdGLzP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZCpNdGLzP ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uZCpNdGLzP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZCpNdGLzP button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #001620;
  background: #001620;
}
.cid-uZCpNdGLzP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uZCpNdGLzP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZCpNdGLzP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZCpNdGLzP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZCpNdGLzP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZCpNdGLzP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZCpNdGLzP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZCpNdGLzP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZCpNdGLzP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZCpNdGLzP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uZCpNdGLzP .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uZCpNdGLzP .navbar {
    height: 70px;
  }
  .cid-uZCpNdGLzP .navbar.opened {
    height: auto;
  }
  .cid-uZCpNdGLzP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZCpNdGLzP .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uZCpNdGLzP .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uZCpNdGLzP .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uZCpNdGLzP .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  width: fit-content;
  white-space: nowrap;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uZCpNdGLzP .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uZCpNdGLzP .navbar-caption:hover {
  color: #f2b1e5;
}
@media (min-width: 992px) {
  .cid-uZCpNdGLzP .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uZCpNdGLzP .text_widget {
  margin-bottom: 32px;
}
.cid-uZCpNdGLzP .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uZCpNdGLzP .text_widget a:hover {
  opacity: 0.5;
}
.cid-uZCpNdGLzP .icons-menu-main {
  display: flex;
}
.cid-uZCpNdGLzP .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uZCpNdGLzP .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uZCpNdGLzP .mbr-section-subtitle,
.cid-uZCpNdGLzP .text_widget,
.cid-uZCpNdGLzP .mbr-section-btn {
  text-align: center;
}
.cid-uZCpNdGLzP a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uZCpNdGLzP .nav-link,
.cid-uZCpNdGLzP .dropdown-item {
  color: #FFFFFF;
}
.cid-uZCpNdHlkF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdHlkF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../images/TdYmvdav65rd.jpg");
}
.cid-uZCpNdHlkF .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdHlkF .container-fluid {
    padding: 0 20px;
  }
}
.cid-uZCpNdHlkF .container-fluid .row {
  padding-top: 15%;
}
@media (max-width: 992px) {
  .cid-uZCpNdHlkF .container-fluid .row {
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdHlkF .container {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdHlkF .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uZCpNdHlkF .title-wrapper .logo-wrap {
  margin-bottom: 16px;
}
.cid-uZCpNdHlkF .title-wrapper .logo-wrap img {
  display: inline-flex;
  height: 92px;
  width: 254px;
  object-fit: cover;
}
.cid-uZCpNdHlkF .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uZCpNdHlkF .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uZCpNdHlkF .title-wrapper .desc-wrapper .desc-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uZCpNdHlkF .title-wrapper .desc-wrapper .desc-wrap {
    margin-bottom: 20px;
    display: block;
  }
}
.cid-uZCpNdHlkF .title-wrapper .desc-wrapper .desc-wrap .mbr-price {
  margin-bottom: 0;
}
.cid-uZCpNdHlkF .title-wrapper .desc-wrapper .desc-wrap .mbr-desc {
  margin: 0 0 0 6px;
}
@media (max-width: 992px) {
  .cid-uZCpNdHlkF .title-wrapper .desc-wrapper .desc-wrap .mbr-desc {
    margin: 0;
  }
}
.cid-uZCpNdHlkF .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZCpNdHlkF .buttons-wrap {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.cid-uZCpNdHlkF .buttons-wrap .mbr-section-btn {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uZCpNdHlkF .buttons-wrap .mbr-section-btn {
    text-align: left;
  }
}
.cid-uZCpNdHlkF .mbr-section-title {
  color: #ffffff;
}
.cid-uZCpNdHlkF .mbr-price {
  color: #ffffff;
}
.cid-uZCpNdHlkF .mbr-desc {
  color: #f2f2f2;
}
.cid-uZCpNdHlkF .mbr-text {
  color: #FFFFFF;
}
.cid-uZCpNdHlkF .mbr-section-btn {
  text-align: right;
}
.cid-uZCpNdHlkF .mbr-section-title,
.cid-uZCpNdHlkF .logo-wrap,
.cid-uZCpNdHlkF .mbr-section-btn {
  color: #FFFFFF;
}
.cid-uZCpNdHlkF .mbr-price,
.cid-uZCpNdHlkF .desc-wrapper {
  color: #FFFFFF;
}
.cid-uZCpNdHlkF .mbr-desc,
.cid-uZCpNdHlkF .desc-wrapper {
  color: #FFFFFF;
}
.cid-uZCpNdIYnw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdIYnw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdIYnw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdIYnw .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdIYnw .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdIYnw .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdIYnw .row {
  justify-content: center;
}
.cid-uZCpNdIYnw .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uZCpNdIYnw .item {
  margin-bottom: 50px;
}
.cid-uZCpNdIYnw .item .item-wrapper .card-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 24px;
  border-top: 1px solid #ffffff;
}
.cid-uZCpNdIYnw .item .item-wrapper .card-box .mbr-date {
  margin-bottom: 24px;
}
.cid-uZCpNdIYnw .item .item-wrapper .card-box a {
  display: block;
}
.cid-uZCpNdIYnw .item .item-wrapper .card-box a:hover .mbr-text {
  text-decoration: underline;
}
.cid-uZCpNdIYnw .item .item-wrapper .card-box a .mbr-text {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uZCpNdIYnw .mbr-section-title {
  color: #ffffff;
}
.cid-uZCpNdIYnw .mbr-date {
  color: #FFFFFF;
}
.cid-uZCpNdIYnw .mbr-text {
  color: #FFFFFF;
}
.cid-uZCpNdIYnw .mbr-section-title,
.cid-uZCpNdIYnw .mbr-section-btn {
  text-align: center;
  color: #FFFFFF;
}
.cid-uZCpNdKgiW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #001620;
}
.cid-uZCpNdKgiW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdKgiW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdKgiW .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdKgiW .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdKgiW .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdKgiW .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uZCpNdKgiW .mbr-section-btn {
  margin-bottom: 50px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uZCpNdKgiW .mbr-section-btn {
    display: none;
  }
}
.cid-uZCpNdKgiW .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 580px;
  max-width: 580px;
  border-right: 1px solid #ffffff;
}
@media (max-width: 768px) {
  .cid-uZCpNdKgiW .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    border-right: none;
  }
}
.cid-uZCpNdKgiW .embla__slide .card-wrap {
  padding: 0 45px;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uZCpNdKgiW .embla__slide .card-wrap {
    padding: 0;
  }
}
.cid-uZCpNdKgiW .embla__slide .card-wrap .item-wrapper .image-wrap {
  margin-bottom: 24px;
}
.cid-uZCpNdKgiW .embla__slide .card-wrap .item-wrapper .image-wrap img {
  height: 350px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uZCpNdKgiW .embla__slide .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-uZCpNdKgiW .embla__slide .card-wrap .content-wrap .card-title {
  margin-bottom: 24px;
}
.cid-uZCpNdKgiW .embla__slide .card-wrap .content-wrap .card-date {
  margin-bottom: 0;
}
.cid-uZCpNdKgiW .embla__button--next,
.cid-uZCpNdKgiW .embla__button--prev {
  display: flex;
}
.cid-uZCpNdKgiW .embla__button {
  bottom: -3rem;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 16px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uZCpNdKgiW .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uZCpNdKgiW .embla__button:hover {
  background: transparent;
  color: #f2b1e5;
  border-color: #f2b1e5;
}
.cid-uZCpNdKgiW .embla__button.embla__button--prev {
  left: auto;
  right: 3.5rem;
  margin-left: 0;
}
.cid-uZCpNdKgiW .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
.cid-uZCpNdKgiW .embla {
  position: relative;
  width: 100%;
}
.cid-uZCpNdKgiW .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uZCpNdKgiW .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uZCpNdKgiW .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uZCpNdKgiW .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uZCpNdKgiW .mbr-section-title {
  color: #ffffff;
}
.cid-uZCpNdKgiW .card-title {
  color: #FFFFFF;
}
.cid-uZCpNdKgiW .card-date {
  color: #F7FCFE;
}
.cid-uZCpNdKgiW .mbr-section-title,
.cid-uZCpNdKgiW .mbr-section-btn {
  color: #FFFFFF;
}
.cid-uZCpNdKp65 {
  background-image: url("../images/zg91MBQ5QqfF.jpeg");
}
.cid-uZCpNdKp65 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdKp65 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdKp65 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdKp65 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdKp65 .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdKp65 .title-wrapper {
  padding: 200px 0;
}
@media (max-width: 992px) {
  .cid-uZCpNdKp65 .title-wrapper {
    padding: 50px 0;
  }
}
.cid-uZCpNdKp65 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uZCpNdKp65 .title-wrapper .mbr-text {
  margin: 24px 0;
}
@media (max-width: 992px) {
  .cid-uZCpNdKp65 .title-wrapper .mbr-text {
    margin: 20px 0;
  }
}
.cid-uZCpNdKp65 .mbr-section-title {
  color: #ffffff;
}
.cid-uZCpNdKp65 .mbr-text {
  color: #FFFFFF;
  text-align: center;
}
.cid-uZCpNdKp65 .mbr-section-title,
.cid-uZCpNdKp65 .mbr-section-btn {
  text-align: center;
  color: #FFFFFF;
}
.cid-uZCpNdL3nO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdL3nO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdL3nO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdL3nO .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdL3nO .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdL3nO .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdL3nO .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uZCpNdL3nO .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uZCpNdL3nO .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uZCpNdL3nO .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uZCpNdL3nO .title-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uZCpNdL3nO .title-wrapper .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-uZCpNdL3nO .image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-uZCpNdL3nO .image-wrapper img {
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uZCpNdL3nO .image-wrapper img {
    height: 300px;
  }
}
.cid-uZCpNdL3nO .mbr-section-title {
  color: #c2b299;
}
.cid-uZCpNdL3nO .mbr-text {
  color: #F7FCFE;
}
.cid-uZCpNdL3nO .mbr-section-title,
.cid-uZCpNdL3nO .mbr-section-btn {
  color: #F7FCFE;
}
.cid-uZCpNdL0Pr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: transparent;
}
.cid-uZCpNdL0Pr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdL0Pr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdL0Pr .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdL0Pr .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdL0Pr .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdL0Pr .row {
  justify-content: center;
}
.cid-uZCpNdL0Pr .title-wrapper {
  margin-bottom: 50px;
}
.cid-uZCpNdL0Pr .title-wrapper .mbr-date {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdL0Pr .title-wrapper .mbr-date {
    margin-bottom: 24px;
  }
}
.cid-uZCpNdL0Pr .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uZCpNdL0Pr .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZCpNdL0Pr .item .item-wrapper {
  background-color: #d2f0f6;
  display: flex;
  padding: 24px 50px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uZCpNdL0Pr .item .item-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-uZCpNdL0Pr .item .item-wrapper .item-img {
  width: 330px;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-uZCpNdL0Pr .item .item-wrapper .item-img {
    margin-right: 0;
    margin-bottom: 16px;
    width: 100%;
  }
}
.cid-uZCpNdL0Pr .item .item-wrapper .item-img img {
  height: 250px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uZCpNdL0Pr .item .item-wrapper .item-img img {
    width: 200px;
    height: 180px;
    margin: 0 auto;
  }
}
.cid-uZCpNdL0Pr .item .item-wrapper .item-content {
  width: 60%;
}
.cid-uZCpNdL0Pr .item .item-wrapper .item-content .title-wrap {
  margin-bottom: 16px;
}
.cid-uZCpNdL0Pr .item .item-wrapper .item-content .title-wrap .item-title {
  margin-bottom: 16px;
}
.cid-uZCpNdL0Pr .item .item-wrapper .item-content .title-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uZCpNdL0Pr .item .item-wrapper .item-content .price-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cid-uZCpNdL0Pr .item .item-wrapper .item-content .price-wrapper .price-wrap .mbr-price-desc {
  margin-bottom: 10px;
}
.cid-uZCpNdL0Pr .item .item-wrapper .item-content .price-wrapper .price-wrap .mbr-price {
  margin-bottom: 10px;
}
.cid-uZCpNdL0Pr .mbr-date {
  color: #1b1b1b;
  text-align: center;
}
.cid-uZCpNdL0Pr .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uZCpNdL0Pr .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uZCpNdL0Pr .item-title {
  color: #000000;
  text-align: left;
}
.cid-uZCpNdL0Pr .mbr-desc {
  color: #000000;
  text-align: left;
}
.cid-uZCpNdL0Pr .mbr-price-desc {
  color: #000000;
  text-align: left;
}
.cid-uZCpNdL0Pr .mbr-price {
  color: #000000;
  text-align: left;
}
.cid-uZCpNdMsmC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdMsmC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdMsmC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdMsmC .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdMsmC .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdMsmC .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdMsmC .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uZCpNdMsmC .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uZCpNdMsmC .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uZCpNdMsmC .text-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uZCpNdMsmC .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uZCpNdMsmC .text-wrapper .list {
  margin: 0;
  padding-left: 22px;
}
.cid-uZCpNdMsmC .text-wrapper .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uZCpNdMsmC .mbr-section-title {
  color: #F7FCFE;
}
.cid-uZCpNdMsmC .mbr-text {
  color: #F7FCFE;
}
.cid-uZCpNdMsmC .list {
  color: #F7FCFE;
}
.cid-uZCpNdMEza {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #001620;
}
.cid-uZCpNdMEza .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdMEza .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdMEza .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdMEza .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdMEza .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdMEza .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-uZCpNdMEza .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
    border-right: none;
  }
}
.cid-uZCpNdMEza .embla__slide .card-wrap {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uZCpNdMEza .embla__slide .card-wrap {
    display: block;
  }
}
.cid-uZCpNdMEza .embla__slide .card-wrap .content-wrap {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uZCpNdMEza .embla__slide .card-wrap .content-wrap {
    margin-bottom: 24px;
    width: 100%;
  }
}
.cid-uZCpNdMEza .embla__slide .card-wrap .content-wrap .card-subtitle {
  margin-bottom: 10px;
  letter-spacing: 0.16em;
}
.cid-uZCpNdMEza .embla__slide .card-wrap .content-wrap .card-title {
  margin-bottom: 16px;
}
.cid-uZCpNdMEza .embla__slide .card-wrap .content-wrap .card-desc {
  margin-bottom: 30px;
}
.cid-uZCpNdMEza .embla__slide .card-wrap .content-wrap .card-text {
  margin-bottom: 24px;
}
.cid-uZCpNdMEza .embla__slide .card-wrap .item-wrapper {
  width: 60%;
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .cid-uZCpNdMEza .embla__slide .card-wrap .item-wrapper {
    width: 100%;
    padding: 0;
  }
}
.cid-uZCpNdMEza .embla__slide .card-wrap .item-wrapper .image-wrap {
  height: 100%;
  display: flex;
  align-items: center;
}
.cid-uZCpNdMEza .embla__slide .card-wrap .item-wrapper .image-wrap img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uZCpNdMEza .embla__slide .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-uZCpNdMEza .embla__button--next,
.cid-uZCpNdMEza .embla__button--prev {
  display: flex;
}
.cid-uZCpNdMEza .embla__button {
  bottom: -3rem;
  width: 40px;
  height: 40px;
  margin-top: -1.5rem;
  font-size: 16px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uZCpNdMEza .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uZCpNdMEza .embla__button:hover {
  background: transparent;
  color: #f2b1e5;
  border-color: #f2b1e5;
}
.cid-uZCpNdMEza .embla__button.embla__button--prev {
  left: auto;
  right: 3.5rem;
  margin-left: 0;
}
.cid-uZCpNdMEza .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
.cid-uZCpNdMEza .embla {
  position: relative;
  width: 100%;
}
.cid-uZCpNdMEza .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uZCpNdMEza .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uZCpNdMEza .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uZCpNdMEza .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uZCpNdMEza .card-subtitle {
  color: #FFFFFF;
}
.cid-uZCpNdMEza .card-title {
  color: #FFFFFF;
}
.cid-uZCpNdMEza .card-desc {
  color: #FFFFFF;
}
.cid-uZCpNdMEza .card-text {
  color: #FFFFFF;
}
.cid-uZCpNdNMrq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: transparent;
}
.cid-uZCpNdNMrq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdNMrq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdNMrq .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdNMrq .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdNMrq .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdNMrq .row {
  justify-content: center;
}
.cid-uZCpNdNMrq .mbr-section-title {
  margin-bottom: 0;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-uZCpNdNMrq .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uZCpNdNMrq .mbr-section-btn .btn {
  width: 100%;
}
.cid-uZCpNdNMrq .mbr-desc {
  color: #ffffff;
}
.cid-uZCpNdNO4X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdNO4X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdNO4X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdNO4X .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uZCpNdNO4X .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdNO4X .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdNO4X .image-wrapper_1 {
  position: relative;
}
.cid-uZCpNdNO4X .image-wrapper_1 img {
  margin: 112px 0 0 210px;
  width: 640px;
  height: 380px;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-uZCpNdNO4X .image-wrapper_1 img {
    width: 550px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdNO4X .image-wrapper_1 img {
    width: 100%;
    height: 400px;
    margin: 0;
  }
}
.cid-uZCpNdNO4X .image-wrapper_2 img {
  width: 100%;
  height: 800px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uZCpNdNO4X .image-wrapper_2 img {
    height: 300px;
  }
}
.cid-uZCpNdNO4X .image-wrapper_2 .image_3 {
  width: 60%;
  height: 310px;
  object-fit: cover;
  margin: -30px 0 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdNO4X .image-wrapper_2 .image_3 {
    width: 100%;
    height: 300px;
    margin: 0;
  }
}
.cid-uZCpNdNO4v {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdNO4v .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdNO4v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdNO4v .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdNO4v .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdNO4v .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdNO4v .row {
  justify-content: center;
}
.cid-uZCpNdNO4v .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uZCpNdNO4v .item {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uZCpNdNO4v .item {
    margin-bottom: 50px;
  }
}
.cid-uZCpNdNO4v .item .item-wrapper:hover .item-img .mbr-iconfont {
  background-color: #001620;
  color: #ffffff;
}
.cid-uZCpNdNO4v .item .item-wrapper .item-img {
  margin-bottom: 24px;
  position: relative;
}
.cid-uZCpNdNO4v .item .item-wrapper .item-img img {
  height: 340px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uZCpNdNO4v .item .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-uZCpNdNO4v .item .item-wrapper .item-img .mbr-iconfont {
  position: absolute;
  right: 16px;
  bottom: 16px;
  font-size: 16px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7fcfe;
  color: #000000;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.cid-uZCpNdNO4v .item .item-wrapper .item-content .mbr-card-title {
  margin-bottom: 0;
}
.cid-uZCpNdNO4v .item .item-wrapper .item-content .mbr-date {
  margin-bottom: 16px;
}
.cid-uZCpNdNO4v .mbr-section-title {
  color: #F7FCFE;
}
.cid-uZCpNdNO4v .mbr-card-title {
  color: #F7FCFE;
  text-align: center;
}
.cid-uZCpNdNO4v .mbr-date {
  color: #F7FCFE;
  text-align: center;
}
.cid-uZCpNdO3bi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: transparent;
}
.cid-uZCpNdO3bi .item:focus,
.cid-uZCpNdO3bi span:focus {
  outline: none;
}
.cid-uZCpNdO3bi .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uZCpNdO3bi .item {
  color: #1b1b1b;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-uZCpNdO3bi .item {
    min-height: 45px;
  }
}
.cid-uZCpNdOjRB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdOjRB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdOjRB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdOjRB .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdOjRB .container-fluid {
    padding: 0 20px;
  }
}
.cid-uZCpNdOjRB .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uZCpNdOjRB .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdOjRB .container .row {
  margin: 0;
}
.cid-uZCpNdOjRB .row {
  justify-content: center;
}
.cid-uZCpNdOjRB .item {
  padding: 0;
}
.cid-uZCpNdOjRB .item .item-wrapper:hover .item-img img {
  transform: scale(1.05);
}
.cid-uZCpNdOjRB .item .item-wrapper .item-img {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 70px 50px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uZCpNdOjRB .item .item-wrapper .item-img {
    padding: 24px;
  }
}
.cid-uZCpNdOjRB .item .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  bottom: -2rem;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #001620;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}
.cid-uZCpNdOjRB .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uZCpNdOjRB .item .item-wrapper .item-img .item-content {
  position: relative;
  z-index: 1;
}
.cid-uZCpNdOjRB .item .item-wrapper .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-uZCpNdOjRB .item .item-wrapper .item-img .item-content .mbr-desc {
  margin-bottom: 10px;
}
.cid-uZCpNdOjRB .item-title {
  color: #FFFFFF;
}
.cid-uZCpNdOjRB .mbr-desc {
  color: #FFFFFF;
}
.cid-uZCpNdO2BY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdO2BY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdO2BY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdO2BY .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uZCpNdO2BY .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdO2BY .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdO2BY .google-map iframe {
  height: 800px;
  filter: saturate(0.5);
}
@media (max-width: 992px) {
  .cid-uZCpNdO2BY .google-map iframe {
    height: 400px;
  }
}
.cid-uZCpNdPv0h {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: transparent;
}
.cid-uZCpNdPv0h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdPv0h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdPv0h .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdPv0h .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdPv0h .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdPv0h .row {
  justify-content: center;
}
.cid-uZCpNdPv0h .title-wrapper {
  margin-bottom: 50px;
}
.cid-uZCpNdPv0h .title-wrapper .mbr-date {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdPv0h .title-wrapper .mbr-date {
    margin-bottom: 24px;
  }
}
.cid-uZCpNdPv0h .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uZCpNdPv0h .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZCpNdPv0h .item .item-wrapper {
  background-color: #001620;
  display: flex;
  padding: 24px 50px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uZCpNdPv0h .item .item-wrapper {
    display: block;
    padding: 24px;
  }
}
.cid-uZCpNdPv0h .item .item-wrapper .item-img {
  width: 330px;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-uZCpNdPv0h .item .item-wrapper .item-img {
    margin-right: 0;
    margin-bottom: 16px;
    width: 100%;
  }
}
.cid-uZCpNdPv0h .item .item-wrapper .item-img img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uZCpNdPv0h .item .item-wrapper .item-img img {
    width: 200px;
    height: 180px;
    margin: 0 auto;
  }
}
.cid-uZCpNdPv0h .item .item-wrapper .item-content {
  width: 60%;
}
.cid-uZCpNdPv0h .item .item-wrapper .item-content .title-wrap {
  margin-bottom: 16px;
}
.cid-uZCpNdPv0h .item .item-wrapper .item-content .title-wrap .item-title {
  margin-bottom: 16px;
}
.cid-uZCpNdPv0h .item .item-wrapper .item-content .title-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uZCpNdPv0h .item .item-wrapper .item-content .price-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cid-uZCpNdPv0h .item .item-wrapper .item-content .price-wrapper .price-wrap .mbr-price-desc {
  margin-bottom: 10px;
}
.cid-uZCpNdPv0h .item .item-wrapper .item-content .price-wrapper .price-wrap .mbr-price {
  margin-bottom: 16px;
}
.cid-uZCpNdPv0h .item .item-wrapper .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uZCpNdPv0h .mbr-date {
  color: #1b1b1b;
  text-align: center;
}
.cid-uZCpNdPv0h .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uZCpNdPv0h .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uZCpNdPv0h .item-title {
  color: #FFFFFF;
  text-align: left;
}
.cid-uZCpNdPv0h .mbr-desc {
  color: #FFFFFF;
  text-align: left;
}
.cid-uZCpNdPv0h .mbr-price-desc {
  color: #000000;
  text-align: left;
}
.cid-uZCpNdPv0h .mbr-price {
  color: #FFFFFF;
  text-align: left;
}
.cid-uZCpNdPfAl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../images/WNNU0z15cU5P.jpeg");
}
.cid-uZCpNdPfAl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdPfAl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdPfAl .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdPfAl .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdPfAl .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdPfAl .title-wrapper {
  padding: 150px 0;
}
@media (max-width: 768px) {
  .cid-uZCpNdPfAl .title-wrapper {
    padding: 50px 0;
  }
}
.cid-uZCpNdPfAl .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdPfAl .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uZCpNdPfAl .mbr-section-title {
  color: #ffffff;
}
.cid-uZCpNdPfAl .mbr-section-title,
.cid-uZCpNdPfAl .mbr-section-btn {
  text-align: center;
  color: #FFFFFF;
}
.cid-uZCpNdQMOs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdQMOs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdQMOs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdQMOs .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdQMOs .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdQMOs .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdQMOs .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uZCpNdQMOs .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uZCpNdQMOs .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uZCpNdQMOs .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uZCpNdQMOs .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-uZCpNdQMOs .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uZCpNdQMOs .image-wrapper img {
  height: 320px;
  object-fit: cover;
}
.cid-uZCpNdQMOs .mbr-section-title {
  color: #F7FCFE;
}
.cid-uZCpNdQMOs .mbr-text {
  color: #FEFAF8;
}
.cid-uZCpNdQMOs .mbr-text,
.cid-uZCpNdQMOs .text-wrapper {
  color: #F7FCFE;
}
.cid-uZCpNdQjCx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdQjCx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../images/TdYmvdav65rd.jpg");
}
.cid-uZCpNdQjCx .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdQjCx .container-fluid {
    padding: 0 20px;
  }
}
.cid-uZCpNdQjCx .container-fluid .row {
  padding-top: 15%;
}
@media (max-width: 992px) {
  .cid-uZCpNdQjCx .container-fluid .row {
    padding-top: 0;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdQjCx .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdQV9O {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdQV9O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdQV9O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdQV9O .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uZCpNdQV9O .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdQV9O .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdQV9O .image-wrapper img {
  height: 800px;
  object-fit: cover;
  animation: none;
}
@media (max-width: 992px) {
  .cid-uZCpNdQV9O .image-wrapper img {
    height: 400px;
  }
}
.cid-uZCpNdQV9O .title-wrapper {
  position: relative;
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdQV9O .title-wrapper {
    padding: 0 20px;
  }
}
.cid-uZCpNdQV9O .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uZCpNdQV9O .row {
  position: relative;
  justify-content: center;
}
.cid-uZCpNdQV9O .row .video-block {
  position: absolute;
  top: 20%;
  height: 480px;
  width: 60%;
}
@media (max-width: 992px) {
  .cid-uZCpNdQV9O .row .video-block {
    width: 100%;
    height: 300px;
    top: 27%;
  }
}
.cid-uZCpNdQV9O .row .video-block .video-wrapper {
  height: 100%;
}
.cid-uZCpNdQV9O .row .video-block .video-wrapper .app-video-wrapper {
  height: 100%;
}
.cid-uZCpNdQV9O .row .video-block .video-wrapper .app-video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uZCpNdQV9O .row .video-block .video-wrapper .app-video-wrapper::before {
  text-shadow: none;
  font-size: 16px;
  color: #000000;
  background-color: #f7fcfe;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZCpNdQV9O .row .video-block .video-wrapper iframe {
  height: 100%;
}
.cid-uZCpNdQV9O .mbr-section-title {
  color: #c2b299;
  text-align: center;
}
.cid-uZCpNdQntp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: transparent;
}
.cid-uZCpNdQntp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdQntp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdQntp .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uZCpNdQntp .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdQntp .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdQntp .row {
  margin: 0;
}
.cid-uZCpNdQntp .card {
  padding: 0;
}
.cid-uZCpNdQntp .image-wrapper img {
  height: 800px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uZCpNdQntp .image-wrapper img {
    height: 450px;
  }
}
.cid-uZCpNdQntp .title-wrapper {
  height: 100%;
  margin-bottom: 10%;
  background-color: #001620;
  display: flex;
  align-items: center;
  padding: 24px 115px;
}
@media (max-width: 992px) {
  .cid-uZCpNdQntp .title-wrapper {
    padding: 50px 20px;
  }
}
.cid-uZCpNdQntp .title-wrapper .title-wrap {
  width: 100%;
}
.cid-uZCpNdQntp .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uZCpNdQntp .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uZCpNdQntp .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 50px;
  line-height: 1.78;
}
@media (max-width: 992px) {
  .cid-uZCpNdQntp .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-uZCpNdQntp .mbr-section-title {
  color: #c2b299;
}
.cid-uZCpNdQntp .mbr-text {
  color: #F7FCFE;
}
.cid-uZCpNdQntp .mbr-section-title,
.cid-uZCpNdQntp .mbr-section-btn {
  color: #F7FCFE;
}
.cid-uZCpNdRJOM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdRJOM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdRJOM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdRJOM .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdRJOM .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdRJOM .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdRJOM .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uZCpNdRJOM .link-wrapper {
  display: block;
}
.cid-uZCpNdRJOM .link-wrapper .mbr-link {
  margin-bottom: 50px;
  text-decoration: underline;
}
@media (max-width: 992px) {
  .cid-uZCpNdRJOM .link-wrapper .mbr-link {
    text-align: left;
  }
}
.cid-uZCpNdRJOM .link-wrapper:hover .mbr-link {
  text-decoration: none;
}
.cid-uZCpNdRJOM .row.items {
  margin: 0 -28px;
}
.cid-uZCpNdRJOM .item {
  padding: 0 28px;
  margin-bottom: 56px;
}
.cid-uZCpNdRJOM .item .item-wrapper:hover .item-img img {
  transform: scale(1.05);
}
.cid-uZCpNdRJOM .item .item-wrapper .item-img {
  position: relative;
  overflow: hidden;
  min-height: 345px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.cid-uZCpNdRJOM .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uZCpNdRJOM .item .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  bottom: -2rem;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #001620;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}
.cid-uZCpNdRJOM .item .item-wrapper .item-img .item-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.cid-uZCpNdRJOM .item .item-wrapper .item-img .item-content .title-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uZCpNdRJOM .mbr-section-title {
  color: #F7FCFE;
}
.cid-uZCpNdRJOM .mbr-link {
  color: #F7FCFE;
  text-align: right;
}
.cid-uZCpNdRJOM .mbr-desc {
  color: #FFFFFF;
}
.cid-uZCpNdRCYE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../images/bC7yce2SsQ1H.jpeg");
}
.cid-uZCpNdRCYE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdRCYE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdRCYE .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uZCpNdRCYE .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdRCYE .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdRCYE .row {
  height: 800px;
}
@media (max-width: 992px) {
  .cid-uZCpNdRCYE .row {
    height: 450px;
  }
}
.cid-uZCpNdSAX3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdSAX3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdSAX3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdSAX3 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdSAX3 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdSAX3 .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdSAX3 .row {
  justify-content: center;
}
.cid-uZCpNdSAX3 .text-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uZCpNdSAX3 .text-wrapper .mbr-text {
    margin-bottom: 42px;
  }
}
.cid-uZCpNdSAX3 .text-wrapper .desc-wrapper .desc-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uZCpNdSAX3 .text-wrapper .desc-wrapper .desc-wrap {
    display: block;
  }
}
.cid-uZCpNdSAX3 .text-wrapper .desc-wrapper .desc-wrap .mbr-desc {
  margin-bottom: 0;
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-uZCpNdSAX3 .text-wrapper .desc-wrapper .desc-wrap .mbr-desc {
    margin: 0 0 20px;
  }
}
.cid-uZCpNdSAX3 .mbr-text {
  color: #F7FCFE;
}
.cid-uZCpNdSAX3 .mbr-desc {
  color: #e4dfd4;
}
.cid-uZCpNdSAX3 .mbr-desc,
.cid-uZCpNdSAX3 .desc-wrapper {
  color: #F7FCFE;
}
.cid-uZCpNdSVBy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdSVBy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdSVBy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdSVBy .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdSVBy .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdSVBy .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdSVBy .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uZCpNdSVBy .title-wrapper .mbr-section-title {
    text-align: center;
  }
}
.cid-uZCpNdSVBy .panel-group {
  padding: 0 150px;
}
@media (max-width: 1200px) {
  .cid-uZCpNdSVBy .panel-group {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uZCpNdSVBy .panel-group {
    padding: 0;
  }
}
.cid-uZCpNdSVBy .panel-group .card:first-child .card-header {
  padding: 0 0 28px;
}
.cid-uZCpNdSVBy .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  padding: 28px 0;
}
.cid-uZCpNdSVBy .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uZCpNdSVBy .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uZCpNdSVBy .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 16px;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
}
.cid-uZCpNdSVBy .panel-group .card .card-header .panel-title:not(.collapsed) .panel-title-edit {
  color: #ffffff;
}
.cid-uZCpNdSVBy .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-uZCpNdSVBy .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uZCpNdSVBy .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uZCpNdSVBy .mbr-section-title {
  color: #F7FCFE;
}
.cid-uZCpNdSVBy .panel-title-edit {
  color: #F7FCFE;
}
.cid-uZCpNdSVBy .panel-text {
  color: #F7FCFE;
}
.cid-uZCpNdSnwi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #001620;
}
.cid-uZCpNdSnwi .item:focus,
.cid-uZCpNdSnwi span:focus {
  outline: none;
}
.cid-uZCpNdSnwi .item {
  cursor: pointer;
}
.cid-uZCpNdSnwi .grid-container {
  grid-row-gap: 0;
}
.cid-uZCpNdSnwi .grid-container-1,
.cid-uZCpNdSnwi .grid-container-2,
.cid-uZCpNdSnwi .grid-container-3 {
  gap: 0;
}
.cid-uZCpNdSnwi .mbr-section-title {
  margin-bottom: 50px;
  color: #c2b299;
  text-align: center;
}
.cid-uZCpNdSnwi .content-head {
  max-width: 800px;
}
.cid-uZCpNdSnwi .container,
.cid-uZCpNdSnwi .container-fluid {
  overflow: hidden;
}
.cid-uZCpNdSnwi .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uZCpNdSnwi .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uZCpNdSnwi .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-uZCpNdSnwi .grid-item img {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .cid-uZCpNdSnwi .grid-item img {
    min-width: 35vw;
    height: 160px;
  }
}
.cid-uZCpNdSnwi .grid-container-1,
.cid-uZCpNdSnwi .grid-container-2,
.cid-uZCpNdSnwi .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uZCpNdSnwi .grid-container-1 {
  align-items: flex-end;
}
.cid-uZCpNdSnwi .grid-container-2 {
  align-items: flex-start;
}
.cid-uZCpNdTSIH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdTSIH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdTSIH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdTSIH .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdTSIH .container-fluid {
    padding: 0 20px;
  }
}
.cid-uZCpNdTSIH .container-fluid .row {
  padding: 0 4px;
}
@media (max-width: 992px) {
  .cid-uZCpNdTSIH .container-fluid .row {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdTSIH .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdTSIH .row {
  justify-content: center;
}
.cid-uZCpNdTSIH .card {
  padding: 0 12px;
}
@media (max-width: 992px) {
  .cid-uZCpNdTSIH .card {
    margin-bottom: 50px;
  }
}
.cid-uZCpNdTSIH .card .card-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid #f7fcfe;
}
.cid-uZCpNdTSIH .card .card-wrap .mbr-desc {
  margin-bottom: 16px;
}
.cid-uZCpNdTSIH .card .card-wrap .mbr-number {
  margin-bottom: 16px;
}
.cid-uZCpNdTSIH .mbr-desc {
  color: #F7FCFE;
  text-align: center;
}
.cid-uZCpNdTSIH .mbr-number {
  color: #F7FCFE;
  text-align: center;
}
.cid-uZCpNdTOLm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdTOLm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdTOLm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdTOLm .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdTOLm .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdTOLm .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdTOLm .row {
  justify-content: center;
}
.cid-uZCpNdTOLm .item {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uZCpNdTOLm .item {
    margin-bottom: 50px;
  }
}
.cid-uZCpNdTOLm .item .item-wrapper {
  padding: 0 24px;
}
@media (max-width: 1200px) {
  .cid-uZCpNdTOLm .item .item-wrapper {
    padding: 0;
  }
}
.cid-uZCpNdTOLm .item .item-wrapper .item-img {
  margin-bottom: 40px;
}
.cid-uZCpNdTOLm .item .item-wrapper .item-img img {
  height: 340px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uZCpNdTOLm .item .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-uZCpNdTOLm .item .item-wrapper .item-content .mbr-card-title {
  margin-bottom: 20px;
}
.cid-uZCpNdTOLm .item .item-wrapper .item-content .mbr-text {
  margin-bottom: 0;
}
.cid-uZCpNdTOLm .mbr-card-title {
  color: #F7FCFE;
}
.cid-uZCpNdTOLm .mbr-text {
  color: #F7FCFE;
}
.cid-uZCpNdTPv8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdTPv8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdTPv8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdTPv8 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdTPv8 .container-fluid {
    padding: 0 20px;
  }
}
.cid-uZCpNdTPv8 .container-fluid .row {
  padding: 0 4px;
}
@media (max-width: 992px) {
  .cid-uZCpNdTPv8 .container-fluid .row {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdTPv8 .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdTPv8 .tabs-wrapper {
  padding-right: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uZCpNdTPv8 .tabs-wrapper {
    padding: 0;
    height: auto;
  }
}
.cid-uZCpNdTPv8 .tabs-wrapper .nav.nav-tabs {
  display: block;
  border-bottom: none;
}
.cid-uZCpNdTPv8 .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  border: none;
  margin-bottom: 24px;
  color: #f7fcfe;
  opacity: 0.5;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  animation: none;
}
.cid-uZCpNdTPv8 .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  opacity: 1;
}
.cid-uZCpNdTPv8 .tab-content {
  padding-left: 50px;
}
@media (max-width: 992px) {
  .cid-uZCpNdTPv8 .tab-content {
    padding: 0;
  }
}
.cid-uZCpNdTPv8 .tab-content .tab-pane .image-wrapper img {
  height: 350px;
  object-fit: cover;
  margin-bottom: 36px;
}
.cid-uZCpNdTPv8 .tab-content .tab-pane .text-wrapper .mbr-text {
  margin-bottom: 36px;
}
.cid-uZCpNdTPv8 .tab-content .tab-pane .cards-wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.cid-uZCpNdTPv8 .tab-content .tab-pane .cards-wrapper .cards-wrap .card-wrap:first-child {
  margin-bottom: 16px;
}
.cid-uZCpNdTPv8 .tab-content .tab-pane .cards-wrapper .cards-wrap .card-wrap .mbr-title {
  margin-bottom: 5px;
}
.cid-uZCpNdTPv8 .tab-content .tab-pane .cards-wrapper .cards-wrap .card-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uZCpNdTPv8 .mbr-text {
  color: #ffffff;
}
.cid-uZCpNdTPv8 .mbr-title {
  color: #ffffff;
}
.cid-uZCpNdTPv8 .mbr-desc {
  color: #787878;
}
.cid-uZCpNdTPv8 .mbr-text,
.cid-uZCpNdTPv8 .mbr-section-btn,
.cid-uZCpNdTPv8 .nav-link {
  color: #FFFFFF;
}
.cid-uZCpNdUkrp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdUkrp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdUkrp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdUkrp .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdUkrp .container-fluid {
    padding: 0 20px;
  }
}
.cid-uZCpNdUkrp .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uZCpNdUkrp .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdUkrp .container .row {
  margin: 0;
}
.cid-uZCpNdUkrp .item {
  padding: 0;
}
.cid-uZCpNdUkrp .item .item-wrapper .item-img {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 25px;
}
.cid-uZCpNdUkrp .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uZCpNdUkrp .item .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  bottom: -2rem;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #001620;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}
.cid-uZCpNdUkrp .item .item-wrapper .item-img .item-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uZCpNdUkrp .item .item-wrapper .item-img .item-content {
    display: block;
  }
}
.cid-uZCpNdUkrp .item .item-wrapper .item-img .item-content .title-wrap {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-uZCpNdUkrp .item .item-wrapper .item-img .item-content .title-wrap {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uZCpNdUkrp .item .item-wrapper .item-img .item-content .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-uZCpNdUkrp .item .item-wrapper .item-img .item-content .title-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-uZCpNdUkrp .item .item-wrapper .item-img .item-content .mbr-section-btn {
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cid-uZCpNdUkrp .item .item-wrapper .item-img .item-content .mbr-section-btn {
    justify-content: normal;
    width: 100%;
  }
}
.cid-uZCpNdUkrp .item .item-wrapper .item-img .item-content .mbr-section-btn .btn {
  margin: 4px;
  padding: 18px 20px;
}
@media (max-width: 768px) {
  .cid-uZCpNdUkrp .item .item-wrapper .item-img .item-content .mbr-section-btn .btn {
    margin: 9.6px;
  }
}
.cid-uZCpNdUkrp .item-title {
  color: #FFFFFF;
}
.cid-uZCpNdUkrp .mbr-desc {
  color: #FFFFFF;
}
.cid-uZCpNdV6Tc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdV6Tc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdV6Tc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdV6Tc .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdV6Tc .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdV6Tc .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdV6Tc .row {
  justify-content: center;
}
.cid-uZCpNdV6Tc .item {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uZCpNdV6Tc .item {
    margin-bottom: 50px;
  }
}
.cid-uZCpNdV6Tc .item .item-wrapper:hover .item-content .mbr-name {
  color: #f7fcfe;
}
.cid-uZCpNdV6Tc .item .item-wrapper:hover .item-content .mbr-role {
  color: #f7fcfe;
}
.cid-uZCpNdV6Tc .item .item-wrapper .item-img {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uZCpNdV6Tc .item .item-wrapper .item-img {
    margin-bottom: 24px;
  }
}
.cid-uZCpNdV6Tc .item .item-wrapper .item-img img {
  height: 412px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uZCpNdV6Tc .item .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-uZCpNdV6Tc .item .item-wrapper .item-content .mbr-name {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uZCpNdV6Tc .item .item-wrapper .item-content .mbr-role {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uZCpNdV6Tc .mbr-name {
  color: #FFFFFF;
}
.cid-uZCpNdV6Tc .mbr-role {
  color: #F7FCFE;
}
.cid-uZCpNdWEQ0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #001620;
}
.cid-uZCpNdWEQ0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdWEQ0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdWEQ0 .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdWEQ0 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdWEQ0 .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdWEQ0 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uZCpNdWEQ0 .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uZCpNdWEQ0 .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uZCpNdWEQ0 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uZCpNdWEQ0 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uZCpNdWEQ0 .dragArea.row .form-group {
  margin-bottom: 30px !important;
}
@media (max-width: 992px) {
  .cid-uZCpNdWEQ0 .dragArea.row .form-group {
    margin-bottom: 20px !important;
  }
}
.cid-uZCpNdWEQ0 .dragArea.row .form-group .form-control-label {
  margin-bottom: 10px;
  width: 100%;
}
.cid-uZCpNdWEQ0 .dragArea.row .form-group .form-control {
  padding: 22px 25px;
  background-color: #f7fcfe;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0;
}
.cid-uZCpNdWEQ0 .dragArea.row .form-group .form-control:hover,
.cid-uZCpNdWEQ0 .dragArea.row .form-group .form-control:focus {
  border: none !important;
  box-shadow: none !important;
}
.cid-uZCpNdWEQ0 .dragArea.row .form-group .form-control::placeholder {
  color: #000000;
}
.cid-uZCpNdWEQ0 .dragArea.row .form-group .form-check {
  padding-left: 2.2em;
  margin: 0;
}
.cid-uZCpNdWEQ0 .dragArea.row .form-group .form-check .form-check-input {
  background-color: #000000;
  border-color: #000000;
}
.cid-uZCpNdWEQ0 .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uZCpNdWEQ0 .dragArea.row .mbr-section-btn .btn {
  display: inline-flex;
}
.cid-uZCpNdWEQ0 .mbr-section-title {
  color: #c2b299;
}
.cid-uZCpNdWEQ0 .mbr-text {
  color: #F7FCFE;
}
.cid-uZCpNdWEQ0 label {
  color: #c2b299;
}
.cid-uZCpNdWEQ0 .mbr-section-title,
.cid-uZCpNdWEQ0 .mbr-section-btn {
  color: #F7FCFE;
}
.cid-uZCpNdXQZT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: transparent;
}
.cid-uZCpNdXQZT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdXQZT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdXQZT .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdXQZT .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdXQZT .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdXQZT .row {
  justify-content: center;
}
.cid-uZCpNdXQZT .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uZCpNdXQZT .item {
  margin-bottom: 50px;
}
.cid-uZCpNdXQZT .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 24px;
  border-top: 1px solid #000000;
}
.cid-uZCpNdXQZT .item .item-wrapper .mbr-date {
  margin-bottom: 24px;
}
.cid-uZCpNdXQZT .item .item-wrapper a {
  display: block;
}
.cid-uZCpNdXQZT .item .item-wrapper a:hover .mbr-text {
  text-decoration: underline;
}
.cid-uZCpNdXQZT .item .item-wrapper a .mbr-text {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uZCpNdXQZT .mbr-section-title {
  color: #1b1b1b;
}
.cid-uZCpNdXQZT .mbr-date {
  color: #000000;
}
.cid-uZCpNdXQZT .mbr-text {
  color: #000000;
}
.cid-uZCpNdXQZT .mbr-section-title,
.cid-uZCpNdXQZT .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uZCpNdXI7Z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: transparent;
}
.cid-uZCpNdXI7Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZCpNdXI7Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZCpNdXI7Z .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uZCpNdXI7Z .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uZCpNdXI7Z .container {
    padding: 0 20px;
  }
}
.cid-uZCpNdXI7Z .row {
  justify-content: center;
}
.cid-uZCpNdXI7Z .list-wrap {
  margin-bottom: 24px;
}
.cid-uZCpNdXI7Z .list-wrap .mbr-list-title {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uZCpNdXI7Z .list-wrap .mbr-list-title {
    text-align: center;
  }
}
.cid-uZCpNdXI7Z .list-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 992px) {
  .cid-uZCpNdXI7Z .list-wrap .list {
    text-align: center;
  }
}
.cid-uZCpNdXI7Z .list-wrap .list .item-wrap {
  line-height: 3rem;
}
.cid-uZCpNdXI7Z .list-wrap .list .item-wrap:hover,
.cid-uZCpNdXI7Z .list-wrap .list .item-wrap:focus {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .cid-uZCpNdXI7Z .list-wrap .list .item-wrap {
    line-height: 1.4rem;
    margin-bottom: 10px;
  }
}
.cid-uZCpNdXI7Z .social-wrap {
  margin: 130px 0 50px;
}
@media (max-width: 992px) {
  .cid-uZCpNdXI7Z .social-wrap {
    margin: 50px 0 24px;
  }
}
.cid-uZCpNdXI7Z .social-wrap .social-row {
  display: inline-flex;
}
.cid-uZCpNdXI7Z .social-wrap .social-row .soc-item a {
  position: relative;
  display: block;
  margin-right: 30px;
  padding-bottom: 16px;
}
.cid-uZCpNdXI7Z .social-wrap .social-row .soc-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #1b1b1b;
  transition: all 0.3s ease-in-out;
}
.cid-uZCpNdXI7Z .social-wrap .social-row .soc-item a:hover::after,
.cid-uZCpNdXI7Z .social-wrap .social-row .soc-item a:focus::after {
  width: 100%;
}
.cid-uZCpNdXI7Z .social-wrap .social-row .soc-item a .mbr-iconfont {
  color: #1b1b1b;
  font-size: 22px;
}
.cid-uZCpNdXI7Z .copyright {
  margin-bottom: 0;
  color: #1b1b1b;
}
.cid-uZCpNdXI7Z .mbr-list-title {
  color: #000000;
}
.cid-uZCpNdXI7Z .list {
  color: #1b1b1b;
}
.cid-uZCpNdXI7Z .copyright,
.cid-uZCpNdXI7Z .social-wrap {
  text-align: center;
  color: #000000;
}
