body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Acme', sans-serif;
  font-size: 5rem;
  line-height: 1.15;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Acme', sans-serif;
  font-size: 3.5rem;
  line-height: 1.15;
}
.display-2 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-4 {
  font-family: 'Acme', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-5 {
  font-family: 'Acme', sans-serif;
  font-size: 2.5rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-7 {
  font-family: 'Acme', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 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.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ff2d55 !important;
}
.bg-success {
  background-color: #a6b1d8 !important;
}
.bg-info {
  background-color: #5189b8 !important;
}
.bg-warning {
  background-color: #f5db6e !important;
}
.bg-danger {
  background-color: #b63b07 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff2d55 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #131313 !important;
  background-color: #ff2d55 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #131313 !important;
  background-color: #d50029 !important;
  border-color: #d50029 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #a6d8b5 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #131313 !important;
  background-color: #a6d8b5 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #131313 !important;
  background-color: #6abe83 !important;
  border-color: #6abe83 !important;
}
.btn-info,
.btn-info:active {
  background-color: #5189b8 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #131313 !important;
  background-color: #5189b8 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #131313 !important;
  background-color: #345c7f !important;
  border-color: #345c7f !important;
}
.btn-success,
.btn-success:active {
  background-color: #a6b1d8 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #131313 !important;
  background-color: #a6b1d8 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #131313 !important;
  background-color: #6a7cbe !important;
  border-color: #6a7cbe !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f5db6e !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #131313 !important;
  background-color: #f5db6e !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #131313 !important;
  background-color: #efc71d !important;
  border-color: #efc71d !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b63b07 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #131313 !important;
  background-color: #b63b07 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #131313 !important;
  background-color: #632004 !important;
  border-color: #632004 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #131313 !important;
  background-color: #ffffff !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #131313 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #131313 !important;
  border: 2px solid #131313 !important;
  color: #131313 !important;
  box-shadow: 4px 4px 0 #131313 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #131313 !important;
  background-color: #131313 !important;
  border: 2px solid #131313 !important;
  box-shadow: none !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #131313 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff2d55;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d50029 !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: #ff2d55 !important;
  border-color: #ff2d55 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a6d8b5;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #6abe83 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #275836 !important;
  background-color: #a6d8b5 !important;
  border-color: #a6d8b5 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #5189b8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #345c7f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #5189b8 !important;
  border-color: #5189b8 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a6b1d8;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #6a7cbe !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: #a6b1d8 !important;
  border-color: #a6b1d8 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f5db6e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #efc71d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #5e4d06 !important;
  background-color: #f5db6e !important;
  border-color: #f5db6e !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b63b07;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #632004 !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: #b63b07 !important;
  border-color: #b63b07 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #131313;
}
.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: #131313 !important;
  border-color: #131313 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #ff2d55 !important;
}
.text-secondary {
  color: #a6d8b5 !important;
}
.text-success {
  color: #a6b1d8 !important;
}
.text-info {
  color: #5189b8 !important;
}
.text-warning {
  color: #f5db6e !important;
}
.text-danger {
  color: #b63b07 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #131313 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #c60026 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #5fb97a !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #5f73b9 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2f5474 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #edc210 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #541b03 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #cccccc !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: #ff2d55;
}
.nav-tabs .nav-link:not(.active) {
  color: #131313;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #5189b8;
}
.alert-warning {
  background-color: #f5db6e;
}
.alert-danger {
  background-color: #b63b07;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff2d55;
  border-color: #ff2d55;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff2d55;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff9fa;
}
.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: #acc6dd;
}
.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: #f87a45;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Acme', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.875rem;
}
.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: #ff2d55 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Acme', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.875rem;
}
blockquote {
  border-color: #ff2d55;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff2d55;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff2d55;
}
.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: #ff2d55;
  border-bottom-color: #ff2d55;
}
.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: #ff2d55 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #a6d8b5 !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='%23ff2d55' %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: .3s all;
  font-weight: 600 !important;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1440px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1600px) {
  .container {
    max-width: 1320px;
  }
}
@media (max-width: 1399px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: 100%;
  }
}
.container-small {
  max-width: 1480px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  word-wrap: break-word;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1500px) {
  .container-small {
    max-width: 1180px;
  }
}
@media (max-width: 1024px) {
  .container-small {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .container-small {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 767px) {
  .container-small {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.container-fluid {
  max-width: 1724px;
  padding-left: 12px;
  padding-right: 12px;
}
.row {
  margin-left: -12px;
  margin-right: -12px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 12px;
  padding-right: 12px;
}
b,
strong {
  font-weight: 600 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 68px;
  padding: 20px 44px;
  border-radius: 0;
  font-weight: 600 !important;
  transition: all .3s;
}
@media (max-width: 1199px) {
  .mbr-section-btn .btn {
    padding: 20px 30px;
  }
}
@media (max-width: 767px) {
  .mbr-section-btn .btn {
    padding: 15px 20px;
  }
}
.mbr-section-btn .btn-black {
  color: #FFFFFF !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 4px 4px 0 #FFFFFF !important;
}
.mbr-section-btn .btn-black:hover {
  box-shadow: none !important;
}
.cid-uFHoJB2bcf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFHoJB2bcf nav.navbar {
  position: fixed;
}
.cid-uFHoJB2bcf .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFHoJB2bcf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFHoJB2bcf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFHoJB2bcf .dropdown-item:hover,
.cid-uFHoJB2bcf .dropdown-item:focus {
  background: #ff2d55 !important;
  color: white !important;
}
.cid-uFHoJB2bcf .dropdown-item:hover span {
  color: white;
}
.cid-uFHoJB2bcf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFHoJB2bcf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFHoJB2bcf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFHoJB2bcf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFHoJB2bcf .nav-link {
  position: relative;
}
.cid-uFHoJB2bcf .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFHoJB2bcf .container {
    flex-wrap: wrap;
  }
}
.cid-uFHoJB2bcf .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFHoJB2bcf .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uFHoJB2bcf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFHoJB2bcf .dropdown-menu,
.cid-uFHoJB2bcf .navbar.opened {
  background: #d1d7ee !important;
}
.cid-uFHoJB2bcf .nav-item:focus,
.cid-uFHoJB2bcf .nav-link:focus {
  outline: none;
}
.cid-uFHoJB2bcf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFHoJB2bcf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFHoJB2bcf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFHoJB2bcf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFHoJB2bcf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFHoJB2bcf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFHoJB2bcf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d1d7ee;
}
.cid-uFHoJB2bcf .navbar.opened {
  transition: all 0.3s;
}
.cid-uFHoJB2bcf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFHoJB2bcf .navbar .navbar-logo img {
  width: auto;
}
.cid-uFHoJB2bcf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFHoJB2bcf .navbar.collapsed {
  justify-content: center;
}
.cid-uFHoJB2bcf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFHoJB2bcf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFHoJB2bcf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uFHoJB2bcf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFHoJB2bcf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFHoJB2bcf .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-uFHoJB2bcf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFHoJB2bcf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFHoJB2bcf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFHoJB2bcf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFHoJB2bcf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFHoJB2bcf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFHoJB2bcf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFHoJB2bcf .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-uFHoJB2bcf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFHoJB2bcf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFHoJB2bcf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFHoJB2bcf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFHoJB2bcf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFHoJB2bcf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFHoJB2bcf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFHoJB2bcf .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFHoJB2bcf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFHoJB2bcf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFHoJB2bcf .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-uFHoJB2bcf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFHoJB2bcf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFHoJB2bcf .dropdown-item.active,
.cid-uFHoJB2bcf .dropdown-item:active {
  background-color: transparent;
}
.cid-uFHoJB2bcf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFHoJB2bcf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFHoJB2bcf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFHoJB2bcf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d1d7ee;
}
.cid-uFHoJB2bcf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFHoJB2bcf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFHoJB2bcf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFHoJB2bcf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFHoJB2bcf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFHoJB2bcf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFHoJB2bcf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFHoJB2bcf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFHoJB2bcf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFHoJB2bcf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFHoJB2bcf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFHoJB2bcf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFHoJB2bcf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFHoJB2bcf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFHoJB2bcf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFHoJB2bcf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFHoJB2bcf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFHoJB2bcf .navbar {
    height: 70px;
  }
  .cid-uFHoJB2bcf .navbar.opened {
    height: auto;
  }
  .cid-uFHoJB2bcf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFUrHavWuS {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFUrHavWuS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUrHavWuS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUrHavWuS .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uFUrHavWuS .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uFUrHavWuS .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uFUrHavWuS .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uFUrHavWuS .container {
    padding: 0 24px;
  }
}
.cid-uFUrHavWuS .content-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid #edeceb;
  border-radius: 2rem;
  padding: 80px 48px 0;
}
@media (max-width: 992px) {
  .cid-uFUrHavWuS .content-wrapper {
    padding: 48px 24px 0;
  }
}
.cid-uFUrHavWuS .content-wrapper .main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uFUrHavWuS .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
}
.cid-uFUrHavWuS .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #fbfaf9;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uFUrHavWuS .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uFUrHavWuS .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uFUrHavWuS .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uFUrHavWuS .content-wrapper .content-wrap .people-wrapper {
  margin-top: 22px;
}
.cid-uFUrHavWuS .content-wrapper .content-wrap .people-wrapper .people-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFUrHavWuS .content-wrapper .content-wrap .people-wrapper .people-wrap {
    display: block;
  }
}
.cid-uFUrHavWuS .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper {
  display: flex;
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-uFUrHavWuS .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-uFUrHavWuS .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper img {
  width: 45px;
  height: 45px;
  border-radius: 100% !important;
  border: 2px solid #ffffff;
  margin-left: -10px;
  object-fit: cover;
}
.cid-uFUrHavWuS .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper img:first-child {
  margin-left: 0;
}
.cid-uFUrHavWuS .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFUrHavWuS .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
    text-align: center;
  }
}
.cid-uFUrHavWuS .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating {
  margin-bottom: 0;
  margin-right: 2px;
}
.cid-uFUrHavWuS .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating:last-child {
  margin-right: 0;
}
.cid-uFUrHavWuS .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .mbr-people {
  opacity: .5;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFUrHavWuS .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .mbr-people {
    text-align: center;
  }
}
.cid-uFUrHavWuS .content-wrapper .content-wrap .image-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.cid-uFUrHavWuS .content-wrapper .content-wrap .image-wrapper .image-wrap {
  width: 1200px;
  border: 16px solid #fbfaf9;
  background-color: #fbfaf9;
  border-radius: 1rem;
  margin-bottom: -16px;
}
@media (max-width: 992px) {
  .cid-uFUrHavWuS .content-wrapper .content-wrap .image-wrapper .image-wrap {
    border: 8px solid #fbfaf9;
  }
}
.cid-uFUrHavWuS .content-wrapper .content-wrap .image-wrapper .image-wrap img {
  height: 470px;
  object-fit: cover;
  border-radius: 10px 10px 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uFUrHavWuS .content-wrapper .content-wrap .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uFUrHavWuS .mbr-section-title {
  color: #18212d;
}
.cid-uFUrHavWuS .mbr-desc,
.cid-uFUrHavWuS .desc-wrapper {
  color: #18212d;
  text-align: center;
}
.cid-uFUrHavWuS .mbr-text,
.cid-uFUrHavWuS .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uFUrHavWuS .mbr-rating {
  color: #EFCC4E;
}
.cid-uFUrHavWuS .mbr-people {
  color: #18212d;
  text-align: center;
}
.cid-uFUrHavWuS .mbr-section-title,
.cid-uFUrHavWuS .mbr-section-btn {
  text-align: center;
}
.cid-uFUrHavWuS .mbr-rating,
.cid-uFUrHavWuS .rating-wrapper,
.cid-uFUrHavWuS .people-wrapper {
  text-align: center;
}
.cid-uFUxjHbT4G {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #111019;
}
.cid-uFUxjHbT4G .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uFUxjHbT4G .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uFUxjHbT4G .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff2d55;
  background-color: #d1d7ee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uFUxjHbT4G .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uFUxjHbT4G .mbr-text {
  color: #eff0ff;
}
.cid-uFUxjHbT4G .mbr-subtitle {
  text-align: center;
  color: #eff0ff;
}
.cid-uFSqDUtk0t {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uFSqDUtk0t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFSqDUtk0t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFSqDUtk0t .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uFSqDUtk0t .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uFSqDUtk0t .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uFSqDUtk0t .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uFSqDUtk0t .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uFSqDUtk0t .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uFSqDUtk0t .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFSqDUtk0t .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uFSqDUtk0t .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFSqDUtk0t .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uFSqDUtk0t .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-tBofHXKj6y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d7ee;
}
.cid-tBofHXKj6y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBofHXKj6y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tBofHXKj6y .row {
  margin: 0 !important;
  row-gap: 40px;
  flex-direction: row-reverse;
}
.cid-tBofHXKj6y .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
  justify-content: flex-end;
}
.cid-tBofHXKj6y .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tBofHXKj6y .item-img {
    width: 100%;
  }
}
.cid-tBofHXKj6y .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-tBofHXKj6y .item-content {
    padding-left: 40px !important;
    padding-left: 0 !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-tBofHXKj6y .item-content {
    padding-left: 25px !important;
    padding-left: 0 !important;
    padding-right: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-tBofHXKj6y .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tBofHXKj6y .card-title {
  color: #000000;
}
.cid-tBofHXKj6y .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-tBofHXKj6y .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 45px;
}
@media (max-width: 991px) {
  .cid-tBofHXKj6y .list-box {
    margin-top: 24px;
    row-gap: 5px;
  }
}
.cid-tBofHXKj6y .list-item {
  width: 100%;
}
.cid-tBofHXKj6y .list-text {
  color: #000000;
}
.cid-tBofHXKj6y .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-tBofHXKj6y .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-tBofHXKj6y .card-text,
.cid-tBofHXKj6y .mbr-section-btn {
  color: #000000;
}
.cid-uFUKFz7971 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #2c2625;
}
.cid-uFUKFz7971 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUKFz7971 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUKFz7971 .content-wrapper {
  position: relative;
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uFUKFz7971 .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFUKFz7971 .content-wrapper {
    padding: 0;
  }
}
.cid-uFUKFz7971 .content-wrapper .mbr-section-btn {
  margin-bottom: 32px;
}
.cid-uFUKFz7971 .content-wrapper .card-wrap {
  position: absolute;
  z-index: 1;
  left: 108px;
  bottom: 0;
  width: 55%;
  padding: 80px;
  background-color: #d1d7ee;
  border: 2px solid #ffffff;
  box-shadow: -10px 10px 0 #ffffff;
}
@media (max-width: 992px) {
  .cid-uFUKFz7971 .content-wrapper .card-wrap {
    box-shadow: -5px 5px 0 #ffffff;
  }
}
@media (max-width: 1440px) {
  .cid-uFUKFz7971 .content-wrapper .card-wrap {
    padding: 64px;
    left: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFUKFz7971 .content-wrapper .card-wrap {
    position: static;
    width: 100%;
    margin-bottom: 16px;
    padding: 20px;
  }
}
.cid-uFUKFz7971 .content-wrapper .card-wrap .mbr-date {
  margin-bottom: 32px;
}
.cid-uFUKFz7971 .content-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uFUKFz7971 .content-wrapper .card-wrap .tag-wrapper .mbr-tag {
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 0;
  border: 2px solid #2c2625;
}
.cid-uFUKFz7971 .content-wrapper .image-wrapper {
  position: relative;
  padding-left: 30%;
  padding-bottom: 6%;
}
@media (max-width: 992px) {
  .cid-uFUKFz7971 .content-wrapper .image-wrapper {
    width: 100%;
    padding-left: 0;
    padding-bottom: 0;
  }
}
.cid-uFUKFz7971 .content-wrapper .image-wrapper img {
  object-fit: cover;
  height: 750px;
  border: 2px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-uFUKFz7971 .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uFUKFz7971 .mbr-section-title {
  color: #2C2625;
}
.cid-uFUKFz7971 .mbr-date {
  color: #2C2625;
}
.cid-uFUKFz7971 .mbr-tag {
  color: #2C2625;
}
.cid-uFT3J0U8cV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFT3J0U8cV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFT3J0U8cV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFT3J0U8cV .container-small,
.cid-uFT3J0U8cV .container-fluid {
  padding: 0 !important;
}
.cid-uFT3J0U8cV .container-small {
  max-width: 1440px;
}
.cid-uFT3J0U8cV .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #d1d7ee;
}
@media (max-width: 991px) {
  .cid-uFT3J0U8cV .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-uFT3J0U8cV .text-box {
    padding: 50px 10px;
  }
}
.cid-uFT3J0U8cV .mbr-section-title {
  color: #212529;
}
.cid-uFT3J0U8cV .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-uFT3J0U8cV .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uFT3J0U8cV .mbr-text {
    margin-top: 20px;
  }
}
.cid-uFT3J0U8cV .mbr-text a {
  text-decoration: underline;
}
.cid-uFT3J0U8cV .mbr-section-btn {
  margin-top: 34px;
}
.cid-uFT3J0U8cV .mbr-section-subtitle,
.cid-uFT3J0U8cV .mbr-section-btn {
  color: #212529;
}
.cid-uFCcJt2Zg1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uFCcJt2Zg1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFCcJt2Zg1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFCcJt2Zg1 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uFCcJt2Zg1 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uFCcJt2Zg1 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uFCcJt2Zg1 .mbr-section-title {
  color: #131313;
}
.cid-uFCcJt2Zg1 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uFCcJt2Zg1 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uFCcJt2Zg1 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uFCcJt2Zg1 .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #fafafa;
  box-shadow: 4px 4px 0 #fafafa;
  background: #d1d7ee;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uFCcJt2Zg1 .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uFCcJt2Zg1 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uFCcJt2Zg1 .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uFCcJt2Zg1 .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uFCcJt2Zg1 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a6b1d8;
}
.cid-uFCcJt2Zg1 .card-title {
  color: #131313;
}
.cid-uFCcJt2Zg1 .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uFCcJt2Zg1 .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uFCcJt2Zg1 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uFCcJt2Zg1 .card-link {
    margin-top: 15px;
  }
}
.cid-uFCcJt2Zg1 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uFCcJt2Zg1 .card-title,
.cid-uFCcJt2Zg1 .iconfont-wrapper {
  color: #000000;
}
.cid-uFUBQDlszb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-uFUBQDlszb .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uFUBQDlszb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUBQDlszb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUBQDlszb .content-wrap {
  margin: 0;
}
.cid-uFUBQDlszb .content-wrap .card {
  padding: 0;
}
.cid-uFUBQDlszb .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #d1d7ee;
  padding: 40px 32px;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-uFUBQDlszb .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uFUBQDlszb .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-uFUBQDlszb .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-uFUBQDlszb .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-uFUBQDlszb .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-uFUBQDlszb .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-uFUBQDlszb .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-uFUBQDlszb .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-uFUBQDlszb .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uFUBQDlszb .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uFUBQDlszb .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uFUBQDlszb .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uFUBQDlszb .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uFUBQDlszb .mbr-section-title {
  color: #150764;
}
.cid-uFUBQDlszb .mbr-text {
  color: #150764;
}
.cid-uFUBQDlszb .mbr-section-title,
.cid-uFUBQDlszb .mbr-section-btn {
  color: #000000;
}
.cid-uFUBQDlszb .mbr-text,
.cid-uFUBQDlszb .text-wrap {
  color: #000000;
}
.cid-uFBXPGUyzP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFBXPGUyzP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFBXPGUyzP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFBXPGUyzP .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uFBXPGUyzP .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uFBXPGUyzP .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uFBXPGUyzP .mbr-section-title {
  color: #131313;
}
.cid-uFBXPGUyzP .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uFBXPGUyzP .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uFBXPGUyzP .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uFBXPGUyzP .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #212529;
  box-shadow: 4px 4px 0 #212529;
  background: #d1d7ee;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uFBXPGUyzP .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uFBXPGUyzP .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uFBXPGUyzP .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uFBXPGUyzP .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uFBXPGUyzP .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a6b1d8;
}
.cid-uFBXPGUyzP .card-title {
  color: #131313;
}
.cid-uFBXPGUyzP .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uFBXPGUyzP .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uFBXPGUyzP .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uFBXPGUyzP .card-link {
    margin-top: 15px;
  }
}
.cid-uFBXPGUyzP .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uFBXPGUyzP .card-title,
.cid-uFBXPGUyzP .iconfont-wrapper {
  color: #000000;
}
.cid-uFUC6t9sms {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uFUC6t9sms .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUC6t9sms .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUC6t9sms .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFUC6t9sms .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uFUC6t9sms .container {
    padding: 0 12px;
  }
}
.cid-uFUC6t9sms .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uFUC6t9sms .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uFUC6t9sms .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uFUC6t9sms .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-uFUC6t9sms .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFUC6t9sms .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uFUC6t9sms .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-uFUC6t9sms .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-uFUC6t9sms .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-uFUC6t9sms .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-uFUC6t9sms .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uFUC6t9sms .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uFUC6t9sms .mbr-section-subtitle {
  color: #222222;
}
.cid-uFUC6t9sms .mbr-text {
  color: #222222;
}
.cid-uFUC6t9sms .list {
  color: #222222;
}
.cid-uFSkRiertc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d7ee;
}
.cid-uFSkRiertc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFSkRiertc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFSkRiertc .card-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 64px;
  background-color: #a6b1d8;
}
@media (max-width: 992px) {
  .cid-uFSkRiertc .card-wrapper {
    display: block;
    padding: 16px;
  }
}
.cid-uFSkRiertc .card-wrapper .tabs-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uFSkRiertc .card-wrapper .tabs-wrapper {
    width: 100%;
  }
}
.cid-uFSkRiertc .card-wrapper .tabs-wrapper .nav.nav-tabs {
  border: none !important;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: block;
}
.cid-uFSkRiertc .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin-bottom: 0;
}
.cid-uFSkRiertc .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  position: relative;
  color: #ffffff;
  padding: 0 0 0 16px;
  border: none;
  transition: all 0.3s ease-in-out;
  border-radius: 0 !important;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFSkRiertc .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
    margin-bottom: 22px;
  }
}
.cid-uFSkRiertc .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1rem;
  width: 6px;
  height: 0;
  background-image: linear-gradient(0deg, #ffffff, #ff2d55 70%);
  transition: all 1s ease-in-out;
}
.cid-uFSkRiertc .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-image: linear-gradient(90deg, #ffffff, #ff2d55 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: transparent;
  border: none;
  padding: 0 0 0 32px;
}
.cid-uFSkRiertc .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active::before {
  height: 100%;
}
.cid-uFSkRiertc .card-wrapper .tab-content {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uFSkRiertc .card-wrapper .tab-content {
    width: 100%;
  }
}
.cid-uFSkRiertc .card-wrapper .tab-content .tab-pane .item-content .image-wrap img {
  height: 490px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uFSkRiertc .card-wrapper .tab-content .tab-pane .item-content .image-wrap img {
    height: 350px;
  }
}
.cid-uFUTEsGmig {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f1f4e9;
}
.cid-uFUTEsGmig .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUTEsGmig .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-uFUTEsGmig .container {
    padding: 0 30px;
  }
}
.cid-uFUTEsGmig .row {
  position: relative;
}
.cid-uFUTEsGmig .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uFUTEsGmig .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uFUTEsGmig .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uFUTEsGmig .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uFUTEsGmig .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uFUTEsGmig .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFUTEsGmig .mbr-text {
  color: #212529;
}
.cid-uFUTEsGmig .mbr-link,
.cid-uFUTEsGmig .mbr-iconfont {
  color: #212529;
}
.cid-uFUTMPm1UP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d7ee;
}
.cid-uFUTMPm1UP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUTMPm1UP .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-uFUTMPm1UP .container {
    padding: 0 30px;
  }
}
.cid-uFUTMPm1UP .row {
  justify-content: center;
}
.cid-uFUTMPm1UP .title-wrapper {
  margin: 0 12%;
}
@media (max-width: 992px) {
  .cid-uFUTMPm1UP .title-wrapper {
    margin: 0;
  }
}
.cid-uFUTMPm1UP .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-uFUTMPm1UP .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uFUTMPm1UP .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uFUTMPm1UP .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-uFUTMPm1UP .mbr-section-subtitle {
  color: #f1f4e9;
  text-align: center;
}
.cid-uFUTMPm1UP .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uFUTMPm1UP .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uFUTMPm1UP .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-uFUTqi3cif {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #212529;
}
.cid-uFUTqi3cif .mbr-section-head {
  max-width: 1302px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 991px) {
  .cid-uFUTqi3cif .mbr-section-head {
    padding: 0 12px;
  }
}
.cid-uFUTqi3cif .mbr-section-title {
  width: 100%;
  color: #222222;
}
.cid-uFUTqi3cif .mbr-section-subtitle {
  color: #555555;
  width: 100%;
}
.cid-uFUTqi3cif .google-map {
  height: 656px;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uFUTqi3cif .google-map {
    height: 356px;
  }
}
.cid-uFUTqi3cif .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uFUTqi3cif .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uFUTqi3cif .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uFUTqi3cif .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uFUTqi3cif .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUTqi3cif .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFSLZ778nc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-uFSLZ778nc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFSLZ778nc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFSLZ778nc .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFSLZ778nc .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFSLZ778nc .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uFSLZ778nc .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #fdf339;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uFSLZ778nc .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uFSLZ778nc .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uFSLZ778nc .items-wrapper .card {
  padding: 0 32px;
}
.cid-uFSLZ778nc .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uFSLZ778nc .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uFSLZ778nc .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uFSLZ778nc .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uFSLZ778nc .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uFSLZ778nc .list-wrapper .list .item-wrap:hover,
.cid-uFSLZ778nc .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uFSLZ778nc .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uFSLZ778nc .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uFSLZ778nc .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uFSLZ778nc .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uFSLZ778nc .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uFSLZ778nc .mbr-copy {
  margin-bottom: 0;
  color: #fafafa;
}
.cid-uFSLZ778nc .mbr-desc {
  color: #ffffff;
}
.cid-uFSLZ778nc .mbr-text,
.cid-uFSLZ778nc .text-wrapper {
  color: #9aa0a6;
}
.cid-uFSLZ778nc .list {
  color: #9aa0a6;
}
.cid-uFUub1NeUz {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFUub1NeUz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUub1NeUz .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-uFUub1NeUz .container {
    padding: 0 26px;
  }
}
.cid-uFUub1NeUz .row {
  justify-content: center;
}
.cid-uFUub1NeUz .content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 90vh;
  padding: 100px;
}
@media (max-width: 1440px) {
  .cid-uFUub1NeUz .content-wrapper {
    padding: 45px;
  }
}
@media (max-width: 992px) {
  .cid-uFUub1NeUz .content-wrapper {
    padding: 20px;
  }
}
.cid-uFUub1NeUz .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uFUub1NeUz .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 1;
  pointer-events: none;
  background-color: #000000;
  opacity: .5;
}
.cid-uFUub1NeUz .content-wrapper .content-wrap {
  width: 100%;
  position: relative;
  z-index: 2;
}
.cid-uFUub1NeUz .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uFUub1NeUz .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uFUub1NeUz .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uFUub1NeUz .mbr-section-title {
  color: #ffffff;
}
.cid-uFUub1NeUz .mbr-text,
.cid-uFUub1NeUz .text-wrapper {
  color: #ffffff;
}
.cid-uFCLz8fmve {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-color: #d1d7ee;
  background-image: linear-gradient(#d1d7ee 80%, #d1d7ee 110%);
}
.cid-uFCLz8fmve .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFCLz8fmve .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFCLz8fmve .row {
  justify-content: center;
}
.cid-uFCLz8fmve .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uFCLz8fmve .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
  background-image: linear-gradient(0deg, #fc7942, #fc7942 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uFCLz8fmve .content-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uFCLz8fmve .content-wrapper .mbr-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uFCLz8fmve .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uFCLz8fmve .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFCLz8fmve .content-wrapper .mbr-desc {
    margin-bottom: 22px;
  }
}
.cid-uFCLz8fmve .mbr-section-title {
  color: #ffffff;
}
.cid-uFCLz8fmve .mbr-text {
  color: #000000;
}
.cid-uFCLz8fmve .mbr-desc {
  color: #ffffff;
}
.cid-uFCKyONCqU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #151e11;
}
.cid-uFCKyONCqU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFCKyONCqU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFCKyONCqU .row {
  justify-content: center;
}
.cid-uFCKyONCqU .main-content {
  margin: 0;
}
.cid-uFCKyONCqU .card {
  padding: 0;
}
.cid-uFCKyONCqU .google-map iframe {
  height: 1000px;
  margin: 10px 0;
}
@media (max-width: 1440px) {
  .cid-uFCKyONCqU .google-map iframe {
    height: 800px;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uFCKyONCqU .google-map iframe {
    height: 350px;
  }
}
.cid-uFHoJB2bcf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFHoJB2bcf nav.navbar {
  position: fixed;
}
.cid-uFHoJB2bcf .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFHoJB2bcf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFHoJB2bcf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFHoJB2bcf .dropdown-item:hover,
.cid-uFHoJB2bcf .dropdown-item:focus {
  background: #ff2d55 !important;
  color: white !important;
}
.cid-uFHoJB2bcf .dropdown-item:hover span {
  color: white;
}
.cid-uFHoJB2bcf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFHoJB2bcf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFHoJB2bcf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFHoJB2bcf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFHoJB2bcf .nav-link {
  position: relative;
}
.cid-uFHoJB2bcf .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFHoJB2bcf .container {
    flex-wrap: wrap;
  }
}
.cid-uFHoJB2bcf .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFHoJB2bcf .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uFHoJB2bcf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFHoJB2bcf .dropdown-menu,
.cid-uFHoJB2bcf .navbar.opened {
  background: #d1d7ee !important;
}
.cid-uFHoJB2bcf .nav-item:focus,
.cid-uFHoJB2bcf .nav-link:focus {
  outline: none;
}
.cid-uFHoJB2bcf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFHoJB2bcf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFHoJB2bcf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFHoJB2bcf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFHoJB2bcf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFHoJB2bcf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFHoJB2bcf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d1d7ee;
}
.cid-uFHoJB2bcf .navbar.opened {
  transition: all 0.3s;
}
.cid-uFHoJB2bcf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFHoJB2bcf .navbar .navbar-logo img {
  width: auto;
}
.cid-uFHoJB2bcf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFHoJB2bcf .navbar.collapsed {
  justify-content: center;
}
.cid-uFHoJB2bcf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFHoJB2bcf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFHoJB2bcf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uFHoJB2bcf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFHoJB2bcf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFHoJB2bcf .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-uFHoJB2bcf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFHoJB2bcf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFHoJB2bcf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFHoJB2bcf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFHoJB2bcf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFHoJB2bcf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFHoJB2bcf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFHoJB2bcf .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-uFHoJB2bcf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFHoJB2bcf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFHoJB2bcf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFHoJB2bcf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFHoJB2bcf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFHoJB2bcf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFHoJB2bcf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFHoJB2bcf .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFHoJB2bcf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFHoJB2bcf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFHoJB2bcf .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-uFHoJB2bcf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFHoJB2bcf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFHoJB2bcf .dropdown-item.active,
.cid-uFHoJB2bcf .dropdown-item:active {
  background-color: transparent;
}
.cid-uFHoJB2bcf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFHoJB2bcf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFHoJB2bcf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFHoJB2bcf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d1d7ee;
}
.cid-uFHoJB2bcf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFHoJB2bcf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFHoJB2bcf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFHoJB2bcf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFHoJB2bcf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFHoJB2bcf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFHoJB2bcf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFHoJB2bcf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFHoJB2bcf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFHoJB2bcf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFHoJB2bcf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFHoJB2bcf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFHoJB2bcf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFHoJB2bcf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFHoJB2bcf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFHoJB2bcf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFHoJB2bcf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFHoJB2bcf .navbar {
    height: 70px;
  }
  .cid-uFHoJB2bcf .navbar.opened {
    height: auto;
  }
  .cid-uFHoJB2bcf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFSLZ778nc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-uFSLZ778nc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFSLZ778nc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFSLZ778nc .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFSLZ778nc .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFSLZ778nc .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uFSLZ778nc .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #fdf339;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uFSLZ778nc .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uFSLZ778nc .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uFSLZ778nc .items-wrapper .card {
  padding: 0 32px;
}
.cid-uFSLZ778nc .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uFSLZ778nc .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uFSLZ778nc .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uFSLZ778nc .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uFSLZ778nc .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uFSLZ778nc .list-wrapper .list .item-wrap:hover,
.cid-uFSLZ778nc .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uFSLZ778nc .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uFSLZ778nc .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uFSLZ778nc .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uFSLZ778nc .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uFSLZ778nc .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uFSLZ778nc .mbr-copy {
  margin-bottom: 0;
  color: #fafafa;
}
.cid-uFSLZ778nc .mbr-desc {
  color: #ffffff;
}
.cid-uFSLZ778nc .mbr-text,
.cid-uFSLZ778nc .text-wrapper {
  color: #9aa0a6;
}
.cid-uFSLZ778nc .list {
  color: #9aa0a6;
}
.cid-uFUuYDqFU0 {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFUuYDqFU0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUuYDqFU0 .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-uFUuYDqFU0 .container {
    padding: 0 26px;
  }
}
.cid-uFUuYDqFU0 .row {
  justify-content: center;
}
.cid-uFUuYDqFU0 .content-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: 90vh;
  padding: 100px;
}
@media (max-width: 1440px) {
  .cid-uFUuYDqFU0 .content-wrapper {
    padding: 45px;
  }
}
@media (max-width: 992px) {
  .cid-uFUuYDqFU0 .content-wrapper {
    padding: 20px;
  }
}
.cid-uFUuYDqFU0 .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px !important;
  object-fit: cover;
}
.cid-uFUuYDqFU0 .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 1;
  pointer-events: none;
  background-color: #000000;
  opacity: .5;
}
.cid-uFUuYDqFU0 .content-wrapper .content-wrap {
  width: 100%;
  position: relative;
  z-index: 2;
}
.cid-uFUuYDqFU0 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uFUuYDqFU0 .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uFUuYDqFU0 .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uFUuYDqFU0 .mbr-section-title {
  color: #ffffff;
}
.cid-uFUuYDqFU0 .mbr-text,
.cid-uFUuYDqFU0 .text-wrapper {
  color: #ffffff;
}
.cid-uFCMoA5fux {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-color: #d1d7ee;
}
.cid-uFCMoA5fux .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFCMoA5fux .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFCMoA5fux .row {
  justify-content: center;
}
.cid-uFCMoA5fux .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uFCMoA5fux .content-wrapper .mbr-section-title {
  margin-bottom: 48px;
  background-image: linear-gradient(0deg, #fc7942, #fc7942 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-uFCMoA5fux .content-wrapper .mbr-section-title {
    margin-bottom: 22px;
  }
}
.cid-uFCMoA5fux .content-wrapper .mbr-text {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uFCMoA5fux .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uFCMoA5fux .content-wrapper .mbr-desc {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFCMoA5fux .content-wrapper .mbr-desc {
    margin-bottom: 22px;
  }
}
.cid-uFCMoA5fux .mbr-section-title {
  color: #ffffff;
}
.cid-uFCMoA5fux .mbr-text {
  color: #000000;
}
.cid-uFCMoA5fux .mbr-desc {
  color: #ffffff;
}
.cid-uFCMoAEunP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #151e11;
}
.cid-uFCMoAEunP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFCMoAEunP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFCMoAEunP .row {
  justify-content: center;
}
.cid-uFCMoAEunP .main-content {
  margin: 0;
}
.cid-uFCMoAEunP .card {
  padding: 0;
}
.cid-uFCMoAEunP .google-map iframe {
  height: 1000px;
  margin: 10px 0;
}
@media (max-width: 1440px) {
  .cid-uFCMoAEunP .google-map iframe {
    height: 800px;
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uFCMoAEunP .google-map iframe {
    height: 350px;
  }
}
.cid-uFHoJB2bcf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFHoJB2bcf nav.navbar {
  position: fixed;
}
.cid-uFHoJB2bcf .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFHoJB2bcf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFHoJB2bcf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFHoJB2bcf .dropdown-item:hover,
.cid-uFHoJB2bcf .dropdown-item:focus {
  background: #ff2d55 !important;
  color: white !important;
}
.cid-uFHoJB2bcf .dropdown-item:hover span {
  color: white;
}
.cid-uFHoJB2bcf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFHoJB2bcf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFHoJB2bcf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFHoJB2bcf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFHoJB2bcf .nav-link {
  position: relative;
}
.cid-uFHoJB2bcf .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFHoJB2bcf .container {
    flex-wrap: wrap;
  }
}
.cid-uFHoJB2bcf .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFHoJB2bcf .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uFHoJB2bcf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFHoJB2bcf .dropdown-menu,
.cid-uFHoJB2bcf .navbar.opened {
  background: #d1d7ee !important;
}
.cid-uFHoJB2bcf .nav-item:focus,
.cid-uFHoJB2bcf .nav-link:focus {
  outline: none;
}
.cid-uFHoJB2bcf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFHoJB2bcf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFHoJB2bcf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFHoJB2bcf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFHoJB2bcf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFHoJB2bcf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFHoJB2bcf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d1d7ee;
}
.cid-uFHoJB2bcf .navbar.opened {
  transition: all 0.3s;
}
.cid-uFHoJB2bcf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFHoJB2bcf .navbar .navbar-logo img {
  width: auto;
}
.cid-uFHoJB2bcf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFHoJB2bcf .navbar.collapsed {
  justify-content: center;
}
.cid-uFHoJB2bcf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFHoJB2bcf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFHoJB2bcf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uFHoJB2bcf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFHoJB2bcf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFHoJB2bcf .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-uFHoJB2bcf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFHoJB2bcf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFHoJB2bcf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFHoJB2bcf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFHoJB2bcf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFHoJB2bcf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFHoJB2bcf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFHoJB2bcf .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-uFHoJB2bcf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFHoJB2bcf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFHoJB2bcf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFHoJB2bcf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFHoJB2bcf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFHoJB2bcf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFHoJB2bcf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFHoJB2bcf .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFHoJB2bcf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFHoJB2bcf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFHoJB2bcf .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-uFHoJB2bcf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFHoJB2bcf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFHoJB2bcf .dropdown-item.active,
.cid-uFHoJB2bcf .dropdown-item:active {
  background-color: transparent;
}
.cid-uFHoJB2bcf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFHoJB2bcf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFHoJB2bcf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFHoJB2bcf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d1d7ee;
}
.cid-uFHoJB2bcf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFHoJB2bcf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFHoJB2bcf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFHoJB2bcf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFHoJB2bcf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFHoJB2bcf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFHoJB2bcf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFHoJB2bcf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFHoJB2bcf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFHoJB2bcf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFHoJB2bcf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFHoJB2bcf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFHoJB2bcf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFHoJB2bcf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFHoJB2bcf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFHoJB2bcf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFHoJB2bcf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFHoJB2bcf .navbar {
    height: 70px;
  }
  .cid-uFHoJB2bcf .navbar.opened {
    height: auto;
  }
  .cid-uFHoJB2bcf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFSLZ778nc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-uFSLZ778nc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFSLZ778nc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFSLZ778nc .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFSLZ778nc .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFSLZ778nc .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uFSLZ778nc .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uFSLZ778nc .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #fdf339;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uFSLZ778nc .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uFSLZ778nc .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uFSLZ778nc .items-wrapper .card {
  padding: 0 32px;
}
.cid-uFSLZ778nc .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uFSLZ778nc .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uFSLZ778nc .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uFSLZ778nc .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uFSLZ778nc .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uFSLZ778nc .list-wrapper .list .item-wrap:hover,
.cid-uFSLZ778nc .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uFSLZ778nc .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uFSLZ778nc .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uFSLZ778nc .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uFSLZ778nc .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uFSLZ778nc .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uFSLZ778nc .mbr-copy {
  margin-bottom: 0;
  color: #fafafa;
}
.cid-uFSLZ778nc .mbr-desc {
  color: #ffffff;
}
.cid-uFSLZ778nc .mbr-text,
.cid-uFSLZ778nc .text-wrapper {
  color: #9aa0a6;
}
.cid-uFSLZ778nc .list {
  color: #9aa0a6;
}
.cid-uFUYLxNalv {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFUYLxNalv nav.navbar {
  position: fixed;
}
.cid-uFUYLxNalv .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFUYLxNalv .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFUYLxNalv .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFUYLxNalv .dropdown-item:hover,
.cid-uFUYLxNalv .dropdown-item:focus {
  background: #ff2d55 !important;
  color: white !important;
}
.cid-uFUYLxNalv .dropdown-item:hover span {
  color: white;
}
.cid-uFUYLxNalv .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFUYLxNalv .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFUYLxNalv .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFUYLxNalv .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFUYLxNalv .nav-link {
  position: relative;
}
.cid-uFUYLxNalv .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFUYLxNalv .container {
    flex-wrap: wrap;
  }
}
.cid-uFUYLxNalv .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFUYLxNalv .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uFUYLxNalv .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFUYLxNalv .dropdown-menu,
.cid-uFUYLxNalv .navbar.opened {
  background: #d1d7ee !important;
}
.cid-uFUYLxNalv .nav-item:focus,
.cid-uFUYLxNalv .nav-link:focus {
  outline: none;
}
.cid-uFUYLxNalv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFUYLxNalv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFUYLxNalv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFUYLxNalv .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFUYLxNalv .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFUYLxNalv .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFUYLxNalv .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d1d7ee;
}
.cid-uFUYLxNalv .navbar.opened {
  transition: all 0.3s;
}
.cid-uFUYLxNalv .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFUYLxNalv .navbar .navbar-logo img {
  width: auto;
}
.cid-uFUYLxNalv .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFUYLxNalv .navbar.collapsed {
  justify-content: center;
}
.cid-uFUYLxNalv .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFUYLxNalv .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFUYLxNalv .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uFUYLxNalv .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFUYLxNalv .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFUYLxNalv .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-uFUYLxNalv .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFUYLxNalv .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFUYLxNalv .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFUYLxNalv .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFUYLxNalv .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFUYLxNalv .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFUYLxNalv .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFUYLxNalv .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-uFUYLxNalv .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFUYLxNalv .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFUYLxNalv .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFUYLxNalv .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFUYLxNalv .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFUYLxNalv .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFUYLxNalv .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFUYLxNalv .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFUYLxNalv .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFUYLxNalv .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFUYLxNalv .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-uFUYLxNalv .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFUYLxNalv .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFUYLxNalv .dropdown-item.active,
.cid-uFUYLxNalv .dropdown-item:active {
  background-color: transparent;
}
.cid-uFUYLxNalv .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFUYLxNalv .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFUYLxNalv .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFUYLxNalv .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d1d7ee;
}
.cid-uFUYLxNalv .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFUYLxNalv .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFUYLxNalv ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFUYLxNalv .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFUYLxNalv button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFUYLxNalv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFUYLxNalv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFUYLxNalv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFUYLxNalv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFUYLxNalv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFUYLxNalv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFUYLxNalv nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFUYLxNalv nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFUYLxNalv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFUYLxNalv .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFUYLxNalv a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFUYLxNalv .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFUYLxNalv .navbar {
    height: 70px;
  }
  .cid-uFUYLxNalv .navbar.opened {
    height: auto;
  }
  .cid-uFUYLxNalv .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFUYLyyT19 {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFUYLyyT19 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYLyyT19 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYLyyT19 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uFUYLyyT19 .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uFUYLyyT19 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uFUYLyyT19 .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uFUYLyyT19 .container {
    padding: 0 24px;
  }
}
.cid-uFUYLyyT19 .content-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid #edeceb;
  border-radius: 2rem;
  padding: 80px 48px 0;
}
@media (max-width: 992px) {
  .cid-uFUYLyyT19 .content-wrapper {
    padding: 48px 24px 0;
  }
}
.cid-uFUYLyyT19 .content-wrapper .main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uFUYLyyT19 .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
}
.cid-uFUYLyyT19 .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #fbfaf9;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uFUYLyyT19 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uFUYLyyT19 .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uFUYLyyT19 .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uFUYLyyT19 .content-wrapper .content-wrap .people-wrapper {
  margin-top: 22px;
}
.cid-uFUYLyyT19 .content-wrapper .content-wrap .people-wrapper .people-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFUYLyyT19 .content-wrapper .content-wrap .people-wrapper .people-wrap {
    display: block;
  }
}
.cid-uFUYLyyT19 .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper {
  display: flex;
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-uFUYLyyT19 .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-uFUYLyyT19 .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper img {
  width: 45px;
  height: 45px;
  border-radius: 100% !important;
  border: 2px solid #ffffff;
  margin-left: -10px;
  object-fit: cover;
}
.cid-uFUYLyyT19 .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper img:first-child {
  margin-left: 0;
}
.cid-uFUYLyyT19 .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFUYLyyT19 .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
    text-align: center;
  }
}
.cid-uFUYLyyT19 .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating {
  margin-bottom: 0;
  margin-right: 2px;
}
.cid-uFUYLyyT19 .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating:last-child {
  margin-right: 0;
}
.cid-uFUYLyyT19 .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .mbr-people {
  opacity: .5;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFUYLyyT19 .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .mbr-people {
    text-align: center;
  }
}
.cid-uFUYLyyT19 .content-wrapper .content-wrap .image-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.cid-uFUYLyyT19 .content-wrapper .content-wrap .image-wrapper .image-wrap {
  width: 1200px;
  border: 16px solid #fbfaf9;
  background-color: #fbfaf9;
  border-radius: 1rem;
  margin-bottom: -16px;
}
@media (max-width: 992px) {
  .cid-uFUYLyyT19 .content-wrapper .content-wrap .image-wrapper .image-wrap {
    border: 8px solid #fbfaf9;
  }
}
.cid-uFUYLyyT19 .content-wrapper .content-wrap .image-wrapper .image-wrap img {
  height: 470px;
  object-fit: cover;
  border-radius: 10px 10px 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uFUYLyyT19 .content-wrapper .content-wrap .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uFUYLyyT19 .mbr-section-title {
  color: #18212d;
}
.cid-uFUYLyyT19 .mbr-desc,
.cid-uFUYLyyT19 .desc-wrapper {
  color: #18212d;
  text-align: center;
}
.cid-uFUYLyyT19 .mbr-text,
.cid-uFUYLyyT19 .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uFUYLyyT19 .mbr-rating {
  color: #EFCC4E;
}
.cid-uFUYLyyT19 .mbr-people {
  color: #18212d;
  text-align: center;
}
.cid-uFUYLyyT19 .mbr-section-title,
.cid-uFUYLyyT19 .mbr-section-btn {
  text-align: center;
}
.cid-uFUYLyyT19 .mbr-rating,
.cid-uFUYLyyT19 .rating-wrapper,
.cid-uFUYLyyT19 .people-wrapper {
  text-align: center;
}
.cid-uFUYLzfWgb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #111019;
}
.cid-uFUYLzfWgb .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uFUYLzfWgb .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uFUYLzfWgb .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff2d55;
  background-color: #d1d7ee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uFUYLzfWgb .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uFUYLzfWgb .mbr-text {
  color: #eff0ff;
}
.cid-uFUYLzfWgb .mbr-subtitle {
  text-align: center;
  color: #eff0ff;
}
.cid-uFUYLzEC3K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uFUYLzEC3K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYLzEC3K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYLzEC3K .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uFUYLzEC3K .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uFUYLzEC3K .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uFUYLzEC3K .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uFUYLzEC3K .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uFUYLzEC3K .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uFUYLzEC3K .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFUYLzEC3K .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uFUYLzEC3K .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFUYLzEC3K .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uFUYLzEC3K .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uFUYLA8rAM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d7ee;
}
.cid-uFUYLA8rAM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYLA8rAM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYLA8rAM .row {
  margin: 0 !important;
  row-gap: 40px;
  flex-direction: row-reverse;
}
.cid-uFUYLA8rAM .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
  justify-content: flex-end;
}
.cid-uFUYLA8rAM .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uFUYLA8rAM .item-img {
    width: 100%;
  }
}
.cid-uFUYLA8rAM .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uFUYLA8rAM .item-content {
    padding-left: 40px !important;
    padding-left: 0 !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uFUYLA8rAM .item-content {
    padding-left: 25px !important;
    padding-left: 0 !important;
    padding-right: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uFUYLA8rAM .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uFUYLA8rAM .card-title {
  color: #000000;
}
.cid-uFUYLA8rAM .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-uFUYLA8rAM .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 45px;
}
@media (max-width: 991px) {
  .cid-uFUYLA8rAM .list-box {
    margin-top: 24px;
    row-gap: 5px;
  }
}
.cid-uFUYLA8rAM .list-item {
  width: 100%;
}
.cid-uFUYLA8rAM .list-text {
  color: #000000;
}
.cid-uFUYLA8rAM .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-uFUYLA8rAM .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uFUYLA8rAM .card-text,
.cid-uFUYLA8rAM .mbr-section-btn {
  color: #000000;
}
.cid-uFUYLAHIHj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #2c2625;
}
.cid-uFUYLAHIHj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYLAHIHj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYLAHIHj .content-wrapper {
  position: relative;
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uFUYLAHIHj .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFUYLAHIHj .content-wrapper {
    padding: 0;
  }
}
.cid-uFUYLAHIHj .content-wrapper .mbr-section-btn {
  margin-bottom: 32px;
}
.cid-uFUYLAHIHj .content-wrapper .card-wrap {
  position: absolute;
  z-index: 1;
  left: 108px;
  bottom: 0;
  width: 55%;
  padding: 80px;
  background-color: #d1d7ee;
  border: 2px solid #ffffff;
  box-shadow: -10px 10px 0 #ffffff;
}
@media (max-width: 992px) {
  .cid-uFUYLAHIHj .content-wrapper .card-wrap {
    box-shadow: -5px 5px 0 #ffffff;
  }
}
@media (max-width: 1440px) {
  .cid-uFUYLAHIHj .content-wrapper .card-wrap {
    padding: 64px;
    left: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFUYLAHIHj .content-wrapper .card-wrap {
    position: static;
    width: 100%;
    margin-bottom: 16px;
    padding: 20px;
  }
}
.cid-uFUYLAHIHj .content-wrapper .card-wrap .mbr-date {
  margin-bottom: 32px;
}
.cid-uFUYLAHIHj .content-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uFUYLAHIHj .content-wrapper .card-wrap .tag-wrapper .mbr-tag {
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 0;
  border: 2px solid #2c2625;
}
.cid-uFUYLAHIHj .content-wrapper .image-wrapper {
  position: relative;
  padding-left: 30%;
  padding-bottom: 6%;
}
@media (max-width: 992px) {
  .cid-uFUYLAHIHj .content-wrapper .image-wrapper {
    width: 100%;
    padding-left: 0;
    padding-bottom: 0;
  }
}
.cid-uFUYLAHIHj .content-wrapper .image-wrapper img {
  object-fit: cover;
  height: 750px;
  border: 2px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-uFUYLAHIHj .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uFUYLAHIHj .mbr-section-title {
  color: #2C2625;
}
.cid-uFUYLAHIHj .mbr-date {
  color: #2C2625;
}
.cid-uFUYLAHIHj .mbr-tag {
  color: #2C2625;
}
.cid-uFUYLB9byo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFUYLB9byo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYLB9byo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYLB9byo .container-small,
.cid-uFUYLB9byo .container-fluid {
  padding: 0 !important;
}
.cid-uFUYLB9byo .container-small {
  max-width: 1440px;
}
.cid-uFUYLB9byo .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #d1d7ee;
}
@media (max-width: 991px) {
  .cid-uFUYLB9byo .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-uFUYLB9byo .text-box {
    padding: 50px 10px;
  }
}
.cid-uFUYLB9byo .mbr-section-title {
  color: #212529;
}
.cid-uFUYLB9byo .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-uFUYLB9byo .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uFUYLB9byo .mbr-text {
    margin-top: 20px;
  }
}
.cid-uFUYLB9byo .mbr-text a {
  text-decoration: underline;
}
.cid-uFUYLB9byo .mbr-section-btn {
  margin-top: 34px;
}
.cid-uFUYLB9byo .mbr-section-subtitle,
.cid-uFUYLB9byo .mbr-section-btn {
  color: #212529;
}
.cid-uFUYLBEyJN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uFUYLBEyJN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYLBEyJN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYLBEyJN .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uFUYLBEyJN .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uFUYLBEyJN .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uFUYLBEyJN .mbr-section-title {
  color: #131313;
}
.cid-uFUYLBEyJN .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uFUYLBEyJN .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uFUYLBEyJN .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uFUYLBEyJN .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #fafafa;
  box-shadow: 4px 4px 0 #fafafa;
  background: #d1d7ee;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uFUYLBEyJN .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uFUYLBEyJN .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uFUYLBEyJN .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uFUYLBEyJN .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uFUYLBEyJN .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a6b1d8;
}
.cid-uFUYLBEyJN .card-title {
  color: #131313;
}
.cid-uFUYLBEyJN .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uFUYLBEyJN .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uFUYLBEyJN .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uFUYLBEyJN .card-link {
    margin-top: 15px;
  }
}
.cid-uFUYLBEyJN .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uFUYLBEyJN .card-title,
.cid-uFUYLBEyJN .iconfont-wrapper {
  color: #000000;
}
.cid-uFUYLCjbqi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-uFUYLCjbqi .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uFUYLCjbqi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYLCjbqi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYLCjbqi .content-wrap {
  margin: 0;
}
.cid-uFUYLCjbqi .content-wrap .card {
  padding: 0;
}
.cid-uFUYLCjbqi .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #d1d7ee;
  padding: 40px 32px;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-uFUYLCjbqi .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uFUYLCjbqi .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-uFUYLCjbqi .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-uFUYLCjbqi .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-uFUYLCjbqi .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-uFUYLCjbqi .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-uFUYLCjbqi .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-uFUYLCjbqi .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-uFUYLCjbqi .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uFUYLCjbqi .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uFUYLCjbqi .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uFUYLCjbqi .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uFUYLCjbqi .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uFUYLCjbqi .mbr-section-title {
  color: #150764;
}
.cid-uFUYLCjbqi .mbr-text {
  color: #150764;
}
.cid-uFUYLCjbqi .mbr-section-title,
.cid-uFUYLCjbqi .mbr-section-btn {
  color: #000000;
}
.cid-uFUYLCjbqi .mbr-text,
.cid-uFUYLCjbqi .text-wrap {
  color: #000000;
}
.cid-uFUYLCSnsz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFUYLCSnsz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYLCSnsz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYLCSnsz .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uFUYLCSnsz .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uFUYLCSnsz .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uFUYLCSnsz .mbr-section-title {
  color: #131313;
}
.cid-uFUYLCSnsz .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uFUYLCSnsz .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uFUYLCSnsz .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uFUYLCSnsz .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #212529;
  box-shadow: 4px 4px 0 #212529;
  background: #d1d7ee;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uFUYLCSnsz .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uFUYLCSnsz .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uFUYLCSnsz .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uFUYLCSnsz .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uFUYLCSnsz .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a6b1d8;
}
.cid-uFUYLCSnsz .card-title {
  color: #131313;
}
.cid-uFUYLCSnsz .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uFUYLCSnsz .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uFUYLCSnsz .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uFUYLCSnsz .card-link {
    margin-top: 15px;
  }
}
.cid-uFUYLCSnsz .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uFUYLCSnsz .card-title,
.cid-uFUYLCSnsz .iconfont-wrapper {
  color: #000000;
}
.cid-uFUYLDDJGD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uFUYLDDJGD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYLDDJGD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYLDDJGD .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFUYLDDJGD .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uFUYLDDJGD .container {
    padding: 0 12px;
  }
}
.cid-uFUYLDDJGD .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uFUYLDDJGD .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uFUYLDDJGD .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uFUYLDDJGD .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-uFUYLDDJGD .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFUYLDDJGD .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uFUYLDDJGD .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-uFUYLDDJGD .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-uFUYLDDJGD .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-uFUYLDDJGD .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-uFUYLDDJGD .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uFUYLDDJGD .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uFUYLDDJGD .mbr-section-subtitle {
  color: #222222;
}
.cid-uFUYLDDJGD .mbr-text {
  color: #222222;
}
.cid-uFUYLDDJGD .list {
  color: #222222;
}
.cid-uFV2ffBCK3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #000000;
}
.cid-uFV2ffBCK3 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-uFV2ffBCK3 .video-block {
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uFV2ffBCK3 .video-block {
    width: 100% !important;
  }
}
.cid-uFV2ffBCK3 .mbr-section-title {
  color: #fafafa;
}
.cid-uFUYLEaRwR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d7ee;
}
.cid-uFUYLEaRwR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYLEaRwR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYLEaRwR .card-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 64px;
  background-color: #a6b1d8;
}
@media (max-width: 992px) {
  .cid-uFUYLEaRwR .card-wrapper {
    display: block;
    padding: 16px;
  }
}
.cid-uFUYLEaRwR .card-wrapper .tabs-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uFUYLEaRwR .card-wrapper .tabs-wrapper {
    width: 100%;
  }
}
.cid-uFUYLEaRwR .card-wrapper .tabs-wrapper .nav.nav-tabs {
  border: none !important;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: block;
}
.cid-uFUYLEaRwR .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin-bottom: 0;
}
.cid-uFUYLEaRwR .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  position: relative;
  color: #ffffff;
  padding: 0 0 0 16px;
  border: none;
  transition: all 0.3s ease-in-out;
  border-radius: 0 !important;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFUYLEaRwR .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
    margin-bottom: 22px;
  }
}
.cid-uFUYLEaRwR .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1rem;
  width: 6px;
  height: 0;
  background-image: linear-gradient(0deg, #ffffff, #ff2d55 70%);
  transition: all 1s ease-in-out;
}
.cid-uFUYLEaRwR .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-image: linear-gradient(90deg, #ffffff, #ff2d55 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: transparent;
  border: none;
  padding: 0 0 0 32px;
}
.cid-uFUYLEaRwR .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active::before {
  height: 100%;
}
.cid-uFUYLEaRwR .card-wrapper .tab-content {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uFUYLEaRwR .card-wrapper .tab-content {
    width: 100%;
  }
}
.cid-uFUYLEaRwR .card-wrapper .tab-content .tab-pane .item-content .image-wrap img {
  height: 490px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uFUYLEaRwR .card-wrapper .tab-content .tab-pane .item-content .image-wrap img {
    height: 350px;
  }
}
.cid-uFUYLEWVmy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f1f4e9;
}
.cid-uFUYLEWVmy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYLEWVmy .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-uFUYLEWVmy .container {
    padding: 0 30px;
  }
}
.cid-uFUYLEWVmy .row {
  position: relative;
}
.cid-uFUYLEWVmy .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uFUYLEWVmy .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uFUYLEWVmy .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uFUYLEWVmy .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uFUYLEWVmy .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uFUYLEWVmy .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFUYLEWVmy .mbr-text {
  color: #212529;
}
.cid-uFUYLEWVmy .mbr-link,
.cid-uFUYLEWVmy .mbr-iconfont {
  color: #212529;
}
.cid-uFUYLFwUpg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d7ee;
}
.cid-uFUYLFwUpg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYLFwUpg .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-uFUYLFwUpg .container {
    padding: 0 30px;
  }
}
.cid-uFUYLFwUpg .row {
  justify-content: center;
}
.cid-uFUYLFwUpg .title-wrapper {
  margin: 0 12%;
}
@media (max-width: 992px) {
  .cid-uFUYLFwUpg .title-wrapper {
    margin: 0;
  }
}
.cid-uFUYLFwUpg .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-uFUYLFwUpg .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uFUYLFwUpg .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uFUYLFwUpg .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-uFUYLFwUpg .mbr-section-subtitle {
  color: #f1f4e9;
  text-align: center;
}
.cid-uFUYLFwUpg .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uFUYLFwUpg .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uFUYLFwUpg .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-uFXkJG54HD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFXkJG54HD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFXkJG54HD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFXkJG54HD .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uFXkJG54HD .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uFXkJG54HD .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFXkJG54HD .panel-group {
    margin-bottom: 24px;
  }
}
.cid-uFXkJG54HD .panel-group .card {
  position: relative;
  padding: 16px 24px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-top: 8px;
}
@media (max-width: 992px) {
  .cid-uFXkJG54HD .panel-group .card {
    padding: 16px;
  }
}
.cid-uFXkJG54HD .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uFXkJG54HD .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uFXkJG54HD .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uFXkJG54HD .panel-group .card .card-header .panel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFXkJG54HD .panel-group .card .card-header .panel-title .panel-title-edit {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-uFXkJG54HD .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #19387d;
  margin-left: 8px;
}
.cid-uFXkJG54HD .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  color: #081228;
}
.cid-uFXkJG54HD .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  background-color: #f96e47;
}
.cid-uFXkJG54HD .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
  color: #081228;
}
.cid-uFXkJG54HD .panel-group .card .card-header .panel-title:not(.collapsed)::before {
  opacity: 1;
}
.cid-uFXkJG54HD .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uFXkJG54HD .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-uFXkJG54HD .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uFXkJG54HD .card-wrapper {
  background-color: #f9f8f8;
  padding: 72px 24px 40px;
  box-shadow: 0 3.5rem 5.5rem 0 #7dabd2;
}
@media (max-width: 992px) {
  .cid-uFXkJG54HD .card-wrapper {
    padding: 24px 16px;
  }
}
.cid-uFXkJG54HD .card-wrapper .icon-wrap {
  margin-bottom: 16px;
}
.cid-uFXkJG54HD .card-wrapper .icon-wrap .mbr-iconfont {
  height: 88px;
  width: 88px;
  min-width: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffffff;
  color: #a672ff;
  font-size: 42px;
}
.cid-uFXkJG54HD .card-wrapper .card-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFXkJG54HD .card-wrapper .card-title {
    margin-bottom: 24px;
  }
}
.cid-uFXkJG54HD .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uFXkJG54HD .card-wrapper .mbr-section-btn .btn {
    padding: 14px;
  }
}
.cid-uFXkJG54HD .mbr-section-title {
  color: #272b2e;
}
.cid-uFXkJG54HD .panel-title-edit {
  color: #272b2e;
}
.cid-uFXkJG54HD .panel-text {
  color: #15171a;
}
.cid-uFXkJG54HD .card-title {
  color: #272b2e;
}
.cid-uFXkJG54HD .card-title,
.cid-uFXkJG54HD .icon-wrap,
.cid-uFXkJG54HD .mbr-section-btn {
  text-align: center;
}
.cid-uFUYLG5rYG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #212529;
}
.cid-uFUYLG5rYG .mbr-section-head {
  max-width: 1302px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 991px) {
  .cid-uFUYLG5rYG .mbr-section-head {
    padding: 0 12px;
  }
}
.cid-uFUYLG5rYG .mbr-section-title {
  width: 100%;
  color: #222222;
}
.cid-uFUYLG5rYG .mbr-section-subtitle {
  color: #555555;
  width: 100%;
}
.cid-uFUYLG5rYG .google-map {
  height: 656px;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uFUYLG5rYG .google-map {
    height: 356px;
  }
}
.cid-uFUYLG5rYG .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uFUYLG5rYG .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uFUYLG5rYG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uFUYLG5rYG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uFUYLG5rYG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYLG5rYG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYLGEWPL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-uFUYLGEWPL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYLGEWPL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYLGEWPL .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFUYLGEWPL .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uFUYLGEWPL .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFUYLGEWPL .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uFUYLGEWPL .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uFUYLGEWPL .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFUYLGEWPL .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFUYLGEWPL .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uFUYLGEWPL .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uFUYLGEWPL .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #fdf339;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uFUYLGEWPL .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uFUYLGEWPL .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uFUYLGEWPL .items-wrapper .card {
  padding: 0 32px;
}
.cid-uFUYLGEWPL .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uFUYLGEWPL .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uFUYLGEWPL .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uFUYLGEWPL .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uFUYLGEWPL .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uFUYLGEWPL .list-wrapper .list .item-wrap:hover,
.cid-uFUYLGEWPL .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uFUYLGEWPL .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uFUYLGEWPL .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uFUYLGEWPL .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uFUYLGEWPL .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uFUYLGEWPL .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uFUYLGEWPL .mbr-copy {
  margin-bottom: 0;
  color: #fafafa;
}
.cid-uFUYLGEWPL .mbr-desc {
  color: #ffffff;
}
.cid-uFUYLGEWPL .mbr-text,
.cid-uFUYLGEWPL .text-wrapper {
  color: #9aa0a6;
}
.cid-uFUYLGEWPL .list {
  color: #9aa0a6;
}
.cid-uFUYMiyErd {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFUYMiyErd nav.navbar {
  position: fixed;
}
.cid-uFUYMiyErd .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFUYMiyErd .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFUYMiyErd .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFUYMiyErd .dropdown-item:hover,
.cid-uFUYMiyErd .dropdown-item:focus {
  background: #ff2d55 !important;
  color: white !important;
}
.cid-uFUYMiyErd .dropdown-item:hover span {
  color: white;
}
.cid-uFUYMiyErd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFUYMiyErd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFUYMiyErd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFUYMiyErd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFUYMiyErd .nav-link {
  position: relative;
}
.cid-uFUYMiyErd .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFUYMiyErd .container {
    flex-wrap: wrap;
  }
}
.cid-uFUYMiyErd .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFUYMiyErd .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uFUYMiyErd .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFUYMiyErd .dropdown-menu,
.cid-uFUYMiyErd .navbar.opened {
  background: #d1d7ee !important;
}
.cid-uFUYMiyErd .nav-item:focus,
.cid-uFUYMiyErd .nav-link:focus {
  outline: none;
}
.cid-uFUYMiyErd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFUYMiyErd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFUYMiyErd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFUYMiyErd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFUYMiyErd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFUYMiyErd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFUYMiyErd .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d1d7ee;
}
.cid-uFUYMiyErd .navbar.opened {
  transition: all 0.3s;
}
.cid-uFUYMiyErd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFUYMiyErd .navbar .navbar-logo img {
  width: auto;
}
.cid-uFUYMiyErd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFUYMiyErd .navbar.collapsed {
  justify-content: center;
}
.cid-uFUYMiyErd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFUYMiyErd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFUYMiyErd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uFUYMiyErd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFUYMiyErd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFUYMiyErd .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-uFUYMiyErd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFUYMiyErd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFUYMiyErd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFUYMiyErd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFUYMiyErd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFUYMiyErd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFUYMiyErd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFUYMiyErd .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-uFUYMiyErd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFUYMiyErd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFUYMiyErd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFUYMiyErd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFUYMiyErd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFUYMiyErd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFUYMiyErd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFUYMiyErd .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFUYMiyErd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFUYMiyErd .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFUYMiyErd .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-uFUYMiyErd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFUYMiyErd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFUYMiyErd .dropdown-item.active,
.cid-uFUYMiyErd .dropdown-item:active {
  background-color: transparent;
}
.cid-uFUYMiyErd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFUYMiyErd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFUYMiyErd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFUYMiyErd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d1d7ee;
}
.cid-uFUYMiyErd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFUYMiyErd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFUYMiyErd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFUYMiyErd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFUYMiyErd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFUYMiyErd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFUYMiyErd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFUYMiyErd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFUYMiyErd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFUYMiyErd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFUYMiyErd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFUYMiyErd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFUYMiyErd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFUYMiyErd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFUYMiyErd .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFUYMiyErd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFUYMiyErd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFUYMiyErd .navbar {
    height: 70px;
  }
  .cid-uFUYMiyErd .navbar.opened {
    height: auto;
  }
  .cid-uFUYMiyErd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFUYMj4A9D {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFUYMj4A9D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMj4A9D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMj4A9D .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uFUYMj4A9D .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uFUYMj4A9D .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uFUYMj4A9D .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uFUYMj4A9D .container {
    padding: 0 24px;
  }
}
.cid-uFUYMj4A9D .content-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid #edeceb;
  border-radius: 2rem;
  padding: 80px 48px 0;
}
@media (max-width: 992px) {
  .cid-uFUYMj4A9D .content-wrapper {
    padding: 48px 24px 0;
  }
}
.cid-uFUYMj4A9D .content-wrapper .main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uFUYMj4A9D .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
}
.cid-uFUYMj4A9D .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #fbfaf9;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uFUYMj4A9D .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uFUYMj4A9D .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uFUYMj4A9D .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uFUYMj4A9D .content-wrapper .content-wrap .people-wrapper {
  margin-top: 22px;
}
.cid-uFUYMj4A9D .content-wrapper .content-wrap .people-wrapper .people-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFUYMj4A9D .content-wrapper .content-wrap .people-wrapper .people-wrap {
    display: block;
  }
}
.cid-uFUYMj4A9D .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper {
  display: flex;
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-uFUYMj4A9D .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-uFUYMj4A9D .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper img {
  width: 45px;
  height: 45px;
  border-radius: 100% !important;
  border: 2px solid #ffffff;
  margin-left: -10px;
  object-fit: cover;
}
.cid-uFUYMj4A9D .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper img:first-child {
  margin-left: 0;
}
.cid-uFUYMj4A9D .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFUYMj4A9D .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
    text-align: center;
  }
}
.cid-uFUYMj4A9D .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating {
  margin-bottom: 0;
  margin-right: 2px;
}
.cid-uFUYMj4A9D .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating:last-child {
  margin-right: 0;
}
.cid-uFUYMj4A9D .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .mbr-people {
  opacity: .5;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFUYMj4A9D .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .mbr-people {
    text-align: center;
  }
}
.cid-uFUYMj4A9D .content-wrapper .content-wrap .image-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.cid-uFUYMj4A9D .content-wrapper .content-wrap .image-wrapper .image-wrap {
  width: 1200px;
  border: 16px solid #fbfaf9;
  background-color: #fbfaf9;
  border-radius: 1rem;
  margin-bottom: -16px;
}
@media (max-width: 992px) {
  .cid-uFUYMj4A9D .content-wrapper .content-wrap .image-wrapper .image-wrap {
    border: 8px solid #fbfaf9;
  }
}
.cid-uFUYMj4A9D .content-wrapper .content-wrap .image-wrapper .image-wrap img {
  height: 470px;
  object-fit: cover;
  border-radius: 10px 10px 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uFUYMj4A9D .content-wrapper .content-wrap .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uFUYMj4A9D .mbr-section-title {
  color: #18212d;
}
.cid-uFUYMj4A9D .mbr-desc,
.cid-uFUYMj4A9D .desc-wrapper {
  color: #18212d;
  text-align: center;
}
.cid-uFUYMj4A9D .mbr-text,
.cid-uFUYMj4A9D .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uFUYMj4A9D .mbr-rating {
  color: #EFCC4E;
}
.cid-uFUYMj4A9D .mbr-people {
  color: #18212d;
  text-align: center;
}
.cid-uFUYMj4A9D .mbr-section-title,
.cid-uFUYMj4A9D .mbr-section-btn {
  text-align: center;
}
.cid-uFUYMj4A9D .mbr-rating,
.cid-uFUYMj4A9D .rating-wrapper,
.cid-uFUYMj4A9D .people-wrapper {
  text-align: center;
}
.cid-uFUYMjAyob {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #111019;
}
.cid-uFUYMjAyob .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uFUYMjAyob .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uFUYMjAyob .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff2d55;
  background-color: #d1d7ee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uFUYMjAyob .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uFUYMjAyob .mbr-text {
  color: #eff0ff;
}
.cid-uFUYMjAyob .mbr-subtitle {
  text-align: center;
  color: #eff0ff;
}
.cid-uFUYMjVc2W {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uFUYMjVc2W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMjVc2W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMjVc2W .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uFUYMjVc2W .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uFUYMjVc2W .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uFUYMjVc2W .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uFUYMjVc2W .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uFUYMjVc2W .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uFUYMjVc2W .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFUYMjVc2W .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uFUYMjVc2W .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFUYMjVc2W .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uFUYMjVc2W .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uFUYMkjHX4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d7ee;
}
.cid-uFUYMkjHX4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMkjHX4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMkjHX4 .row {
  margin: 0 !important;
  row-gap: 40px;
  flex-direction: row-reverse;
}
.cid-uFUYMkjHX4 .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
  justify-content: flex-end;
}
.cid-uFUYMkjHX4 .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uFUYMkjHX4 .item-img {
    width: 100%;
  }
}
.cid-uFUYMkjHX4 .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uFUYMkjHX4 .item-content {
    padding-left: 40px !important;
    padding-left: 0 !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uFUYMkjHX4 .item-content {
    padding-left: 25px !important;
    padding-left: 0 !important;
    padding-right: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uFUYMkjHX4 .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uFUYMkjHX4 .card-title {
  color: #000000;
}
.cid-uFUYMkjHX4 .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-uFUYMkjHX4 .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 45px;
}
@media (max-width: 991px) {
  .cid-uFUYMkjHX4 .list-box {
    margin-top: 24px;
    row-gap: 5px;
  }
}
.cid-uFUYMkjHX4 .list-item {
  width: 100%;
}
.cid-uFUYMkjHX4 .list-text {
  color: #000000;
}
.cid-uFUYMkjHX4 .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-uFUYMkjHX4 .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uFUYMkjHX4 .card-text,
.cid-uFUYMkjHX4 .mbr-section-btn {
  color: #000000;
}
.cid-uFUYMkNmbm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #2c2625;
}
.cid-uFUYMkNmbm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMkNmbm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMkNmbm .content-wrapper {
  position: relative;
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uFUYMkNmbm .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFUYMkNmbm .content-wrapper {
    padding: 0;
  }
}
.cid-uFUYMkNmbm .content-wrapper .mbr-section-btn {
  margin-bottom: 32px;
}
.cid-uFUYMkNmbm .content-wrapper .card-wrap {
  position: absolute;
  z-index: 1;
  left: 108px;
  bottom: 0;
  width: 55%;
  padding: 80px;
  background-color: #d1d7ee;
  border: 2px solid #ffffff;
  box-shadow: -10px 10px 0 #ffffff;
}
@media (max-width: 992px) {
  .cid-uFUYMkNmbm .content-wrapper .card-wrap {
    box-shadow: -5px 5px 0 #ffffff;
  }
}
@media (max-width: 1440px) {
  .cid-uFUYMkNmbm .content-wrapper .card-wrap {
    padding: 64px;
    left: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFUYMkNmbm .content-wrapper .card-wrap {
    position: static;
    width: 100%;
    margin-bottom: 16px;
    padding: 20px;
  }
}
.cid-uFUYMkNmbm .content-wrapper .card-wrap .mbr-date {
  margin-bottom: 32px;
}
.cid-uFUYMkNmbm .content-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uFUYMkNmbm .content-wrapper .card-wrap .tag-wrapper .mbr-tag {
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 0;
  border: 2px solid #2c2625;
}
.cid-uFUYMkNmbm .content-wrapper .image-wrapper {
  position: relative;
  padding-left: 30%;
  padding-bottom: 6%;
}
@media (max-width: 992px) {
  .cid-uFUYMkNmbm .content-wrapper .image-wrapper {
    width: 100%;
    padding-left: 0;
    padding-bottom: 0;
  }
}
.cid-uFUYMkNmbm .content-wrapper .image-wrapper img {
  object-fit: cover;
  height: 750px;
  border: 2px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-uFUYMkNmbm .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uFUYMkNmbm .mbr-section-title {
  color: #2C2625;
}
.cid-uFUYMkNmbm .mbr-date {
  color: #2C2625;
}
.cid-uFUYMkNmbm .mbr-tag {
  color: #2C2625;
}
.cid-uFUYMlgybt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFUYMlgybt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMlgybt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMlgybt .container-small,
.cid-uFUYMlgybt .container-fluid {
  padding: 0 !important;
}
.cid-uFUYMlgybt .container-small {
  max-width: 1440px;
}
.cid-uFUYMlgybt .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #d1d7ee;
}
@media (max-width: 991px) {
  .cid-uFUYMlgybt .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-uFUYMlgybt .text-box {
    padding: 50px 10px;
  }
}
.cid-uFUYMlgybt .mbr-section-title {
  color: #212529;
}
.cid-uFUYMlgybt .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-uFUYMlgybt .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uFUYMlgybt .mbr-text {
    margin-top: 20px;
  }
}
.cid-uFUYMlgybt .mbr-text a {
  text-decoration: underline;
}
.cid-uFUYMlgybt .mbr-section-btn {
  margin-top: 34px;
}
.cid-uFUYMlgybt .mbr-section-subtitle,
.cid-uFUYMlgybt .mbr-section-btn {
  color: #212529;
}
.cid-uFUYMlEK2Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uFUYMlEK2Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMlEK2Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMlEK2Q .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uFUYMlEK2Q .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uFUYMlEK2Q .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uFUYMlEK2Q .mbr-section-title {
  color: #131313;
}
.cid-uFUYMlEK2Q .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uFUYMlEK2Q .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uFUYMlEK2Q .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uFUYMlEK2Q .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #fafafa;
  box-shadow: 4px 4px 0 #fafafa;
  background: #d1d7ee;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uFUYMlEK2Q .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uFUYMlEK2Q .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uFUYMlEK2Q .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uFUYMlEK2Q .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uFUYMlEK2Q .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a6b1d8;
}
.cid-uFUYMlEK2Q .card-title {
  color: #131313;
}
.cid-uFUYMlEK2Q .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uFUYMlEK2Q .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uFUYMlEK2Q .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uFUYMlEK2Q .card-link {
    margin-top: 15px;
  }
}
.cid-uFUYMlEK2Q .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uFUYMlEK2Q .card-title,
.cid-uFUYMlEK2Q .iconfont-wrapper {
  color: #000000;
}
.cid-uFUYMmd2MU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-uFUYMmd2MU .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uFUYMmd2MU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMmd2MU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMmd2MU .content-wrap {
  margin: 0;
}
.cid-uFUYMmd2MU .content-wrap .card {
  padding: 0;
}
.cid-uFUYMmd2MU .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #d1d7ee;
  padding: 40px 32px;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-uFUYMmd2MU .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uFUYMmd2MU .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-uFUYMmd2MU .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-uFUYMmd2MU .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-uFUYMmd2MU .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-uFUYMmd2MU .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-uFUYMmd2MU .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-uFUYMmd2MU .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-uFUYMmd2MU .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uFUYMmd2MU .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uFUYMmd2MU .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uFUYMmd2MU .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uFUYMmd2MU .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uFUYMmd2MU .mbr-section-title {
  color: #150764;
}
.cid-uFUYMmd2MU .mbr-text {
  color: #150764;
}
.cid-uFUYMmd2MU .mbr-section-title,
.cid-uFUYMmd2MU .mbr-section-btn {
  color: #000000;
}
.cid-uFUYMmd2MU .mbr-text,
.cid-uFUYMmd2MU .text-wrap {
  color: #000000;
}
.cid-uFUYMmFN41 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFUYMmFN41 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMmFN41 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMmFN41 .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uFUYMmFN41 .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uFUYMmFN41 .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uFUYMmFN41 .mbr-section-title {
  color: #131313;
}
.cid-uFUYMmFN41 .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uFUYMmFN41 .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uFUYMmFN41 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uFUYMmFN41 .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #212529;
  box-shadow: 4px 4px 0 #212529;
  background: #d1d7ee;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uFUYMmFN41 .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uFUYMmFN41 .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uFUYMmFN41 .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uFUYMmFN41 .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uFUYMmFN41 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a6b1d8;
}
.cid-uFUYMmFN41 .card-title {
  color: #131313;
}
.cid-uFUYMmFN41 .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uFUYMmFN41 .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uFUYMmFN41 .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uFUYMmFN41 .card-link {
    margin-top: 15px;
  }
}
.cid-uFUYMmFN41 .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uFUYMmFN41 .card-title,
.cid-uFUYMmFN41 .iconfont-wrapper {
  color: #000000;
}
.cid-uFUYMnh9dW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uFUYMnh9dW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMnh9dW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMnh9dW .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFUYMnh9dW .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uFUYMnh9dW .container {
    padding: 0 12px;
  }
}
.cid-uFUYMnh9dW .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uFUYMnh9dW .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uFUYMnh9dW .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uFUYMnh9dW .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-uFUYMnh9dW .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFUYMnh9dW .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uFUYMnh9dW .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-uFUYMnh9dW .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-uFUYMnh9dW .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-uFUYMnh9dW .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-uFUYMnh9dW .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uFUYMnh9dW .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uFUYMnh9dW .mbr-section-subtitle {
  color: #222222;
}
.cid-uFUYMnh9dW .mbr-text {
  color: #222222;
}
.cid-uFUYMnh9dW .list {
  color: #222222;
}
.cid-uFUYMnGXuf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d7ee;
}
.cid-uFUYMnGXuf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMnGXuf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMnGXuf .card-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 64px;
  background-color: #a6b1d8;
}
@media (max-width: 992px) {
  .cid-uFUYMnGXuf .card-wrapper {
    display: block;
    padding: 16px;
  }
}
.cid-uFUYMnGXuf .card-wrapper .tabs-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uFUYMnGXuf .card-wrapper .tabs-wrapper {
    width: 100%;
  }
}
.cid-uFUYMnGXuf .card-wrapper .tabs-wrapper .nav.nav-tabs {
  border: none !important;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: block;
}
.cid-uFUYMnGXuf .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin-bottom: 0;
}
.cid-uFUYMnGXuf .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  position: relative;
  color: #ffffff;
  padding: 0 0 0 16px;
  border: none;
  transition: all 0.3s ease-in-out;
  border-radius: 0 !important;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFUYMnGXuf .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
    margin-bottom: 22px;
  }
}
.cid-uFUYMnGXuf .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1rem;
  width: 6px;
  height: 0;
  background-image: linear-gradient(0deg, #ffffff, #ff2d55 70%);
  transition: all 1s ease-in-out;
}
.cid-uFUYMnGXuf .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-image: linear-gradient(90deg, #ffffff, #ff2d55 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: transparent;
  border: none;
  padding: 0 0 0 32px;
}
.cid-uFUYMnGXuf .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active::before {
  height: 100%;
}
.cid-uFUYMnGXuf .card-wrapper .tab-content {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uFUYMnGXuf .card-wrapper .tab-content {
    width: 100%;
  }
}
.cid-uFUYMnGXuf .card-wrapper .tab-content .tab-pane .item-content .image-wrap img {
  height: 490px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uFUYMnGXuf .card-wrapper .tab-content .tab-pane .item-content .image-wrap img {
    height: 350px;
  }
}
.cid-uFUYMomKXr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f1f4e9;
}
.cid-uFUYMomKXr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMomKXr .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-uFUYMomKXr .container {
    padding: 0 30px;
  }
}
.cid-uFUYMomKXr .row {
  position: relative;
}
.cid-uFUYMomKXr .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uFUYMomKXr .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uFUYMomKXr .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uFUYMomKXr .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uFUYMomKXr .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uFUYMomKXr .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFUYMomKXr .mbr-text {
  color: #212529;
}
.cid-uFUYMomKXr .mbr-link,
.cid-uFUYMomKXr .mbr-iconfont {
  color: #212529;
}
.cid-uFUYMoRzc0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d7ee;
}
.cid-uFUYMoRzc0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMoRzc0 .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-uFUYMoRzc0 .container {
    padding: 0 30px;
  }
}
.cid-uFUYMoRzc0 .row {
  justify-content: center;
}
.cid-uFUYMoRzc0 .title-wrapper {
  margin: 0 12%;
}
@media (max-width: 992px) {
  .cid-uFUYMoRzc0 .title-wrapper {
    margin: 0;
  }
}
.cid-uFUYMoRzc0 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-uFUYMoRzc0 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uFUYMoRzc0 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uFUYMoRzc0 .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-uFUYMoRzc0 .mbr-section-subtitle {
  color: #f1f4e9;
  text-align: center;
}
.cid-uFUYMoRzc0 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uFUYMoRzc0 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uFUYMoRzc0 .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-uFXlGNcv7P {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFXlGNcv7P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFXlGNcv7P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFXlGNcv7P .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uFXlGNcv7P .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uFXlGNcv7P .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFXlGNcv7P .panel-group {
    margin-bottom: 24px;
  }
}
.cid-uFXlGNcv7P .panel-group .card {
  position: relative;
  padding: 16px 24px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-top: 8px;
}
@media (max-width: 992px) {
  .cid-uFXlGNcv7P .panel-group .card {
    padding: 16px;
  }
}
.cid-uFXlGNcv7P .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uFXlGNcv7P .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uFXlGNcv7P .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uFXlGNcv7P .panel-group .card .card-header .panel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFXlGNcv7P .panel-group .card .card-header .panel-title .panel-title-edit {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-uFXlGNcv7P .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #19387d;
  margin-left: 8px;
}
.cid-uFXlGNcv7P .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  color: #081228;
}
.cid-uFXlGNcv7P .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  background-color: #f96e47;
}
.cid-uFXlGNcv7P .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
  color: #081228;
}
.cid-uFXlGNcv7P .panel-group .card .card-header .panel-title:not(.collapsed)::before {
  opacity: 1;
}
.cid-uFXlGNcv7P .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uFXlGNcv7P .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-uFXlGNcv7P .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uFXlGNcv7P .card-wrapper {
  background-color: #f9f8f8;
  padding: 72px 24px 40px;
  box-shadow: 0 3.5rem 5.5rem 0 #7dabd2;
}
@media (max-width: 992px) {
  .cid-uFXlGNcv7P .card-wrapper {
    padding: 24px 16px;
  }
}
.cid-uFXlGNcv7P .card-wrapper .icon-wrap {
  margin-bottom: 16px;
}
.cid-uFXlGNcv7P .card-wrapper .icon-wrap .mbr-iconfont {
  height: 88px;
  width: 88px;
  min-width: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffffff;
  color: #a672ff;
  font-size: 42px;
}
.cid-uFXlGNcv7P .card-wrapper .card-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFXlGNcv7P .card-wrapper .card-title {
    margin-bottom: 24px;
  }
}
.cid-uFXlGNcv7P .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uFXlGNcv7P .card-wrapper .mbr-section-btn .btn {
    padding: 14px;
  }
}
.cid-uFXlGNcv7P .mbr-section-title {
  color: #272b2e;
}
.cid-uFXlGNcv7P .panel-title-edit {
  color: #272b2e;
}
.cid-uFXlGNcv7P .panel-text {
  color: #15171a;
}
.cid-uFXlGNcv7P .card-title {
  color: #272b2e;
}
.cid-uFXlGNcv7P .card-title,
.cid-uFXlGNcv7P .icon-wrap,
.cid-uFXlGNcv7P .mbr-section-btn {
  text-align: center;
}
.cid-uFUYMpkDo3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #212529;
}
.cid-uFUYMpkDo3 .mbr-section-head {
  max-width: 1302px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 991px) {
  .cid-uFUYMpkDo3 .mbr-section-head {
    padding: 0 12px;
  }
}
.cid-uFUYMpkDo3 .mbr-section-title {
  width: 100%;
  color: #222222;
}
.cid-uFUYMpkDo3 .mbr-section-subtitle {
  color: #555555;
  width: 100%;
}
.cid-uFUYMpkDo3 .google-map {
  height: 656px;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uFUYMpkDo3 .google-map {
    height: 356px;
  }
}
.cid-uFUYMpkDo3 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uFUYMpkDo3 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uFUYMpkDo3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uFUYMpkDo3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uFUYMpkDo3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMpkDo3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMpTdgx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-uFUYMpTdgx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMpTdgx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMpTdgx .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFUYMpTdgx .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uFUYMpTdgx .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFUYMpTdgx .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uFUYMpTdgx .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uFUYMpTdgx .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFUYMpTdgx .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFUYMpTdgx .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uFUYMpTdgx .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uFUYMpTdgx .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #fdf339;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uFUYMpTdgx .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uFUYMpTdgx .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uFUYMpTdgx .items-wrapper .card {
  padding: 0 32px;
}
.cid-uFUYMpTdgx .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uFUYMpTdgx .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uFUYMpTdgx .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uFUYMpTdgx .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uFUYMpTdgx .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uFUYMpTdgx .list-wrapper .list .item-wrap:hover,
.cid-uFUYMpTdgx .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uFUYMpTdgx .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uFUYMpTdgx .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uFUYMpTdgx .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uFUYMpTdgx .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uFUYMpTdgx .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uFUYMpTdgx .mbr-copy {
  margin-bottom: 0;
  color: #fafafa;
}
.cid-uFUYMpTdgx .mbr-desc {
  color: #ffffff;
}
.cid-uFUYMpTdgx .mbr-text,
.cid-uFUYMpTdgx .text-wrapper {
  color: #9aa0a6;
}
.cid-uFUYMpTdgx .list {
  color: #9aa0a6;
}
.cid-uFUYMV3Iyi {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uFUYMV3Iyi nav.navbar {
  position: fixed;
}
.cid-uFUYMV3Iyi .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFUYMV3Iyi .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uFUYMV3Iyi .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uFUYMV3Iyi .dropdown-item:hover,
.cid-uFUYMV3Iyi .dropdown-item:focus {
  background: #ff2d55 !important;
  color: white !important;
}
.cid-uFUYMV3Iyi .dropdown-item:hover span {
  color: white;
}
.cid-uFUYMV3Iyi .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uFUYMV3Iyi .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uFUYMV3Iyi .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uFUYMV3Iyi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uFUYMV3Iyi .nav-link {
  position: relative;
}
.cid-uFUYMV3Iyi .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFUYMV3Iyi .container {
    flex-wrap: wrap;
  }
}
.cid-uFUYMV3Iyi .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uFUYMV3Iyi .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-uFUYMV3Iyi .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uFUYMV3Iyi .dropdown-menu,
.cid-uFUYMV3Iyi .navbar.opened {
  background: #d1d7ee !important;
}
.cid-uFUYMV3Iyi .nav-item:focus,
.cid-uFUYMV3Iyi .nav-link:focus {
  outline: none;
}
.cid-uFUYMV3Iyi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uFUYMV3Iyi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uFUYMV3Iyi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uFUYMV3Iyi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uFUYMV3Iyi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uFUYMV3Iyi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uFUYMV3Iyi .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #d1d7ee;
}
.cid-uFUYMV3Iyi .navbar.opened {
  transition: all 0.3s;
}
.cid-uFUYMV3Iyi .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uFUYMV3Iyi .navbar .navbar-logo img {
  width: auto;
}
.cid-uFUYMV3Iyi .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uFUYMV3Iyi .navbar.collapsed {
  justify-content: center;
}
.cid-uFUYMV3Iyi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uFUYMV3Iyi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uFUYMV3Iyi .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uFUYMV3Iyi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uFUYMV3Iyi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uFUYMV3Iyi .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-uFUYMV3Iyi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uFUYMV3Iyi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uFUYMV3Iyi .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uFUYMV3Iyi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uFUYMV3Iyi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uFUYMV3Iyi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uFUYMV3Iyi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uFUYMV3Iyi .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-uFUYMV3Iyi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uFUYMV3Iyi .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uFUYMV3Iyi .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uFUYMV3Iyi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uFUYMV3Iyi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uFUYMV3Iyi .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uFUYMV3Iyi .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uFUYMV3Iyi .navbar.navbar-short {
  min-height: 60px;
}
.cid-uFUYMV3Iyi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uFUYMV3Iyi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uFUYMV3Iyi .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-uFUYMV3Iyi .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uFUYMV3Iyi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uFUYMV3Iyi .dropdown-item.active,
.cid-uFUYMV3Iyi .dropdown-item:active {
  background-color: transparent;
}
.cid-uFUYMV3Iyi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uFUYMV3Iyi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uFUYMV3Iyi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uFUYMV3Iyi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #d1d7ee;
}
.cid-uFUYMV3Iyi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uFUYMV3Iyi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uFUYMV3Iyi ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uFUYMV3Iyi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uFUYMV3Iyi button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uFUYMV3Iyi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uFUYMV3Iyi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uFUYMV3Iyi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFUYMV3Iyi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uFUYMV3Iyi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uFUYMV3Iyi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFUYMV3Iyi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uFUYMV3Iyi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uFUYMV3Iyi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uFUYMV3Iyi .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uFUYMV3Iyi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uFUYMV3Iyi .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uFUYMV3Iyi .navbar {
    height: 70px;
  }
  .cid-uFUYMV3Iyi .navbar.opened {
    height: auto;
  }
  .cid-uFUYMV3Iyi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uFUYMVA05B {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFUYMVA05B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMVA05B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMVA05B .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uFUYMVA05B .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uFUYMVA05B .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uFUYMVA05B .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uFUYMVA05B .container {
    padding: 0 24px;
  }
}
.cid-uFUYMVA05B .content-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid #edeceb;
  border-radius: 2rem;
  padding: 80px 48px 0;
}
@media (max-width: 992px) {
  .cid-uFUYMVA05B .content-wrapper {
    padding: 48px 24px 0;
  }
}
.cid-uFUYMVA05B .content-wrapper .main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uFUYMVA05B .content-wrapper .content-wrap {
  position: relative;
  z-index: 1;
}
.cid-uFUYMVA05B .content-wrapper .content-wrap .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  background-color: #fbfaf9;
  margin-bottom: 16px;
  border-radius: 500px;
  border: 1px solid #edeceb;
}
.cid-uFUYMVA05B .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uFUYMVA05B .content-wrapper .content-wrap .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uFUYMVA05B .content-wrapper .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uFUYMVA05B .content-wrapper .content-wrap .people-wrapper {
  margin-top: 22px;
}
.cid-uFUYMVA05B .content-wrapper .content-wrap .people-wrapper .people-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFUYMVA05B .content-wrapper .content-wrap .people-wrapper .people-wrap {
    display: block;
  }
}
.cid-uFUYMVA05B .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper {
  display: flex;
  margin-right: 16px;
}
@media (max-width: 992px) {
  .cid-uFUYMVA05B .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.cid-uFUYMVA05B .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper img {
  width: 45px;
  height: 45px;
  border-radius: 100% !important;
  border: 2px solid #ffffff;
  margin-left: -10px;
  object-fit: cover;
}
.cid-uFUYMVA05B .content-wrapper .content-wrap .people-wrapper .people-wrap .images-wrapper img:first-child {
  margin-left: 0;
}
.cid-uFUYMVA05B .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFUYMVA05B .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap {
    text-align: center;
  }
}
.cid-uFUYMVA05B .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating {
  margin-bottom: 0;
  margin-right: 2px;
}
.cid-uFUYMVA05B .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .rating-wrapper .rating-wrap .mbr-rating:last-child {
  margin-right: 0;
}
.cid-uFUYMVA05B .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .mbr-people {
  opacity: .5;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFUYMVA05B .content-wrapper .content-wrap .people-wrapper .people-wrap .rating-content .mbr-people {
    text-align: center;
  }
}
.cid-uFUYMVA05B .content-wrapper .content-wrap .image-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.cid-uFUYMVA05B .content-wrapper .content-wrap .image-wrapper .image-wrap {
  width: 1200px;
  border: 16px solid #fbfaf9;
  background-color: #fbfaf9;
  border-radius: 1rem;
  margin-bottom: -16px;
}
@media (max-width: 992px) {
  .cid-uFUYMVA05B .content-wrapper .content-wrap .image-wrapper .image-wrap {
    border: 8px solid #fbfaf9;
  }
}
.cid-uFUYMVA05B .content-wrapper .content-wrap .image-wrapper .image-wrap img {
  height: 470px;
  object-fit: cover;
  border-radius: 10px 10px 0 0 !important;
}
@media (max-width: 992px) {
  .cid-uFUYMVA05B .content-wrapper .content-wrap .image-wrapper .image-wrap img {
    height: 350px;
  }
}
.cid-uFUYMVA05B .mbr-section-title {
  color: #18212d;
}
.cid-uFUYMVA05B .mbr-desc,
.cid-uFUYMVA05B .desc-wrapper {
  color: #18212d;
  text-align: center;
}
.cid-uFUYMVA05B .mbr-text,
.cid-uFUYMVA05B .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uFUYMVA05B .mbr-rating {
  color: #EFCC4E;
}
.cid-uFUYMVA05B .mbr-people {
  color: #18212d;
  text-align: center;
}
.cid-uFUYMVA05B .mbr-section-title,
.cid-uFUYMVA05B .mbr-section-btn {
  text-align: center;
}
.cid-uFUYMVA05B .mbr-rating,
.cid-uFUYMVA05B .rating-wrapper,
.cid-uFUYMVA05B .people-wrapper {
  text-align: center;
}
.cid-uFUYMW3KUg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #111019;
}
.cid-uFUYMW3KUg .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uFUYMW3KUg .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uFUYMW3KUg .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff2d55;
  background-color: #d1d7ee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uFUYMW3KUg .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uFUYMW3KUg .mbr-text {
  color: #eff0ff;
}
.cid-uFUYMW3KUg .mbr-subtitle {
  text-align: center;
  color: #eff0ff;
}
.cid-uFUYMWpzQw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uFUYMWpzQw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMWpzQw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMWpzQw .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uFUYMWpzQw .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uFUYMWpzQw .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uFUYMWpzQw .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uFUYMWpzQw .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uFUYMWpzQw .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uFUYMWpzQw .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFUYMWpzQw .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uFUYMWpzQw .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFUYMWpzQw .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uFUYMWpzQw .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uFUYMWSff0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d7ee;
}
.cid-uFUYMWSff0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMWSff0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMWSff0 .row {
  margin: 0 !important;
  row-gap: 40px;
  flex-direction: row-reverse;
}
.cid-uFUYMWSff0 .item-img {
  display: flex;
  justify-content: flex-start;
  width: 50%;
  padding: 0 !important;
  justify-content: flex-end;
}
.cid-uFUYMWSff0 .item-img img {
  max-width: 580px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uFUYMWSff0 .item-img {
    width: 100%;
  }
}
.cid-uFUYMWSff0 .item-content {
  width: 50%;
  padding: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uFUYMWSff0 .item-content {
    padding-left: 40px !important;
    padding-left: 0 !important;
    padding-right: 40px !important;
  }
}
@media (max-width: 1199px) {
  .cid-uFUYMWSff0 .item-content {
    padding-left: 25px !important;
    padding-left: 0 !important;
    padding-right: 25px !important;
  }
}
@media (max-width: 991px) {
  .cid-uFUYMWSff0 .item-content {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uFUYMWSff0 .card-title {
  color: #000000;
}
.cid-uFUYMWSff0 .card-text {
  margin-top: 25px;
  color: #131313;
}
.cid-uFUYMWSff0 .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 45px;
}
@media (max-width: 991px) {
  .cid-uFUYMWSff0 .list-box {
    margin-top: 24px;
    row-gap: 5px;
  }
}
.cid-uFUYMWSff0 .list-item {
  width: 100%;
}
.cid-uFUYMWSff0 .list-text {
  color: #000000;
}
.cid-uFUYMWSff0 .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 991px) {
  .cid-uFUYMWSff0 .mbr-section-btn {
    margin-top: 15px;
  }
}
.cid-uFUYMWSff0 .card-text,
.cid-uFUYMWSff0 .mbr-section-btn {
  color: #000000;
}
.cid-uFUYMXm6YE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #2c2625;
}
.cid-uFUYMXm6YE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMXm6YE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMXm6YE .content-wrapper {
  position: relative;
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uFUYMXm6YE .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFUYMXm6YE .content-wrapper {
    padding: 0;
  }
}
.cid-uFUYMXm6YE .content-wrapper .mbr-section-btn {
  margin-bottom: 32px;
}
.cid-uFUYMXm6YE .content-wrapper .card-wrap {
  position: absolute;
  z-index: 1;
  left: 108px;
  bottom: 0;
  width: 55%;
  padding: 80px;
  background-color: #d1d7ee;
  border: 2px solid #ffffff;
  box-shadow: -10px 10px 0 #ffffff;
}
@media (max-width: 992px) {
  .cid-uFUYMXm6YE .content-wrapper .card-wrap {
    box-shadow: -5px 5px 0 #ffffff;
  }
}
@media (max-width: 1440px) {
  .cid-uFUYMXm6YE .content-wrapper .card-wrap {
    padding: 64px;
    left: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uFUYMXm6YE .content-wrapper .card-wrap {
    position: static;
    width: 100%;
    margin-bottom: 16px;
    padding: 20px;
  }
}
.cid-uFUYMXm6YE .content-wrapper .card-wrap .mbr-date {
  margin-bottom: 32px;
}
.cid-uFUYMXm6YE .content-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uFUYMXm6YE .content-wrapper .card-wrap .tag-wrapper .mbr-tag {
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 0;
  border: 2px solid #2c2625;
}
.cid-uFUYMXm6YE .content-wrapper .image-wrapper {
  position: relative;
  padding-left: 30%;
  padding-bottom: 6%;
}
@media (max-width: 992px) {
  .cid-uFUYMXm6YE .content-wrapper .image-wrapper {
    width: 100%;
    padding-left: 0;
    padding-bottom: 0;
  }
}
.cid-uFUYMXm6YE .content-wrapper .image-wrapper img {
  object-fit: cover;
  height: 750px;
  border: 2px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-uFUYMXm6YE .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uFUYMXm6YE .mbr-section-title {
  color: #2C2625;
}
.cid-uFUYMXm6YE .mbr-date {
  color: #2C2625;
}
.cid-uFUYMXm6YE .mbr-tag {
  color: #2C2625;
}
.cid-uFUYMXLTCj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFUYMXLTCj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMXLTCj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMXLTCj .container-small,
.cid-uFUYMXLTCj .container-fluid {
  padding: 0 !important;
}
.cid-uFUYMXLTCj .container-small {
  max-width: 1440px;
}
.cid-uFUYMXLTCj .text-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 20px;
  min-height: 480px;
  margin: 0 auto;
  background-color: #d1d7ee;
}
@media (max-width: 991px) {
  .cid-uFUYMXLTCj .text-box {
    min-height: 400px;
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .cid-uFUYMXLTCj .text-box {
    padding: 50px 10px;
  }
}
.cid-uFUYMXLTCj .mbr-section-title {
  color: #212529;
}
.cid-uFUYMXLTCj .mbr-section-subtitle {
  margin-top: 20px;
  color: #131313;
}
.cid-uFUYMXLTCj .mbr-text {
  margin-top: 44px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uFUYMXLTCj .mbr-text {
    margin-top: 20px;
  }
}
.cid-uFUYMXLTCj .mbr-text a {
  text-decoration: underline;
}
.cid-uFUYMXLTCj .mbr-section-btn {
  margin-top: 34px;
}
.cid-uFUYMXLTCj .mbr-section-subtitle,
.cid-uFUYMXLTCj .mbr-section-btn {
  color: #212529;
}
.cid-uFUYMYjiVz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uFUYMYjiVz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMYjiVz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMYjiVz .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uFUYMYjiVz .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uFUYMYjiVz .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uFUYMYjiVz .mbr-section-title {
  color: #131313;
}
.cid-uFUYMYjiVz .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uFUYMYjiVz .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uFUYMYjiVz .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uFUYMYjiVz .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #fafafa;
  box-shadow: 4px 4px 0 #fafafa;
  background: #d1d7ee;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uFUYMYjiVz .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uFUYMYjiVz .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uFUYMYjiVz .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uFUYMYjiVz .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uFUYMYjiVz .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a6b1d8;
}
.cid-uFUYMYjiVz .card-title {
  color: #131313;
}
.cid-uFUYMYjiVz .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uFUYMYjiVz .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uFUYMYjiVz .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uFUYMYjiVz .card-link {
    margin-top: 15px;
  }
}
.cid-uFUYMYjiVz .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uFUYMYjiVz .card-title,
.cid-uFUYMYjiVz .iconfont-wrapper {
  color: #000000;
}
.cid-uFUYMYXr6Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-uFUYMYXr6Q .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uFUYMYXr6Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMYXr6Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMYXr6Q .content-wrap {
  margin: 0;
}
.cid-uFUYMYXr6Q .content-wrap .card {
  padding: 0;
}
.cid-uFUYMYXr6Q .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  background-color: #d1d7ee;
  padding: 40px 32px;
  border-right: 1px solid #150764;
}
@media (max-width: 1640px) {
  .cid-uFUYMYXr6Q .image-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uFUYMYXr6Q .image-wrapper {
    padding: 40px 0;
  }
}
@media (max-width: 992px) {
  .cid-uFUYMYXr6Q .image-wrapper {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-uFUYMYXr6Q .image-wrapper img {
  height: 620px;
  width: 620px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1640px) {
  .cid-uFUYMYXr6Q .image-wrapper img {
    height: 550px;
    width: 550px;
  }
}
@media (max-width: 1200px) {
  .cid-uFUYMYXr6Q .image-wrapper img {
    height: 350px;
    width: 350px;
  }
}
@media (max-width: 768px) {
  .cid-uFUYMYXr6Q .image-wrapper img {
    height: 250px;
    width: 250px;
  }
}
.cid-uFUYMYXr6Q .content-wrapper {
  padding: 40px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1640px) {
  .cid-uFUYMYXr6Q .content-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uFUYMYXr6Q .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uFUYMYXr6Q .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uFUYMYXr6Q .content-wrapper .text-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uFUYMYXr6Q .content-wrapper .text-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uFUYMYXr6Q .mbr-section-title {
  color: #150764;
}
.cid-uFUYMYXr6Q .mbr-text {
  color: #150764;
}
.cid-uFUYMYXr6Q .mbr-section-title,
.cid-uFUYMYXr6Q .mbr-section-btn {
  color: #000000;
}
.cid-uFUYMYXr6Q .mbr-text,
.cid-uFUYMYXr6Q .text-wrap {
  color: #000000;
}
.cid-uFUYMZnvAd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFUYMZnvAd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMZnvAd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMZnvAd .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uFUYMZnvAd .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uFUYMZnvAd .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uFUYMZnvAd .mbr-section-title {
  color: #131313;
}
.cid-uFUYMZnvAd .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uFUYMZnvAd .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uFUYMZnvAd .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uFUYMZnvAd .card-wrapper {
  width: calc(100% - 14px);
  padding: 80px 40px 60px 40px;
  margin: 0 auto;
  border: 2px solid #212529;
  box-shadow: 4px 4px 0 #212529;
  background: #d1d7ee;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uFUYMZnvAd .card-wrapper {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) {
  .cid-uFUYMZnvAd .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uFUYMZnvAd .iconfont-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 1199px) {
  .cid-uFUYMZnvAd .iconfont-wrapper {
    margin-bottom: 25px;
  }
}
.cid-uFUYMZnvAd .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #a6b1d8;
}
.cid-uFUYMZnvAd .card-title {
  color: #131313;
}
.cid-uFUYMZnvAd .card-text {
  margin-top: 10px;
  color: #131313;
}
.cid-uFUYMZnvAd .card-link {
  margin-top: 30px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uFUYMZnvAd .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .cid-uFUYMZnvAd .card-link {
    margin-top: 15px;
  }
}
.cid-uFUYMZnvAd .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-uFUYMZnvAd .card-title,
.cid-uFUYMZnvAd .iconfont-wrapper {
  color: #000000;
}
.cid-uFUYMZZOu5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uFUYMZZOu5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYMZZOu5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYMZZOu5 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uFUYMZZOu5 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uFUYMZZOu5 .container {
    padding: 0 12px;
  }
}
.cid-uFUYMZZOu5 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uFUYMZZOu5 .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uFUYMZZOu5 .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #222222;
  box-shadow: 4px 4px #222222;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uFUYMZZOu5 .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-uFUYMZZOu5 .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFUYMZZOu5 .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uFUYMZZOu5 .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-uFUYMZZOu5 .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-uFUYMZZOu5 .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-uFUYMZZOu5 .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-uFUYMZZOu5 .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uFUYMZZOu5 .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uFUYMZZOu5 .mbr-section-subtitle {
  color: #222222;
}
.cid-uFUYMZZOu5 .mbr-text {
  color: #222222;
  text-align: center;
}
.cid-uFUYMZZOu5 .list {
  color: #222222;
}
.cid-uFUYN0rD1C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d7ee;
}
.cid-uFUYN0rD1C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYN0rD1C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYN0rD1C .card-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 64px;
  background-color: #a6b1d8;
}
@media (max-width: 992px) {
  .cid-uFUYN0rD1C .card-wrapper {
    display: block;
    padding: 16px;
  }
}
.cid-uFUYN0rD1C .card-wrapper .tabs-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uFUYN0rD1C .card-wrapper .tabs-wrapper {
    width: 100%;
  }
}
.cid-uFUYN0rD1C .card-wrapper .tabs-wrapper .nav.nav-tabs {
  border: none !important;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: block;
}
.cid-uFUYN0rD1C .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin-bottom: 0;
}
.cid-uFUYN0rD1C .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  position: relative;
  color: #ffffff;
  padding: 0 0 0 16px;
  border: none;
  transition: all 0.3s ease-in-out;
  border-radius: 0 !important;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFUYN0rD1C .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
    margin-bottom: 22px;
  }
}
.cid-uFUYN0rD1C .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1rem;
  width: 6px;
  height: 0;
  background-image: linear-gradient(0deg, #ffffff, #ff2d55 70%);
  transition: all 1s ease-in-out;
}
.cid-uFUYN0rD1C .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  background-image: linear-gradient(90deg, #ffffff, #ff2d55 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: transparent;
  border: none;
  padding: 0 0 0 32px;
}
.cid-uFUYN0rD1C .card-wrapper .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active::before {
  height: 100%;
}
.cid-uFUYN0rD1C .card-wrapper .tab-content {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uFUYN0rD1C .card-wrapper .tab-content {
    width: 100%;
  }
}
.cid-uFUYN0rD1C .card-wrapper .tab-content .tab-pane .item-content .image-wrap img {
  height: 490px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uFUYN0rD1C .card-wrapper .tab-content .tab-pane .item-content .image-wrap img {
    height: 350px;
  }
}
.cid-uFUYN152LR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #f1f4e9;
}
.cid-uFUYN152LR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYN152LR .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-uFUYN152LR .container {
    padding: 0 30px;
  }
}
.cid-uFUYN152LR .row {
  position: relative;
}
.cid-uFUYN152LR .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uFUYN152LR .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uFUYN152LR .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #ffffff;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uFUYN152LR .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uFUYN152LR .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uFUYN152LR .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uFUYN152LR .mbr-text {
  color: #212529;
}
.cid-uFUYN152LR .mbr-link,
.cid-uFUYN152LR .mbr-iconfont {
  color: #212529;
}
.cid-uFUYN1xfAu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #d1d7ee;
}
.cid-uFUYN1xfAu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYN1xfAu .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-uFUYN1xfAu .container {
    padding: 0 30px;
  }
}
.cid-uFUYN1xfAu .row {
  justify-content: center;
}
.cid-uFUYN1xfAu .title-wrapper {
  margin: 0 12%;
}
@media (max-width: 992px) {
  .cid-uFUYN1xfAu .title-wrapper {
    margin: 0;
  }
}
.cid-uFUYN1xfAu .title-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-uFUYN1xfAu .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
.cid-uFUYN1xfAu .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uFUYN1xfAu .text-wrapper .mbr-name {
  margin-bottom: 0;
}
.cid-uFUYN1xfAu .mbr-section-subtitle {
  color: #f1f4e9;
  text-align: center;
}
.cid-uFUYN1xfAu .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uFUYN1xfAu .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uFUYN1xfAu .mbr-name {
  color: #f1f4e9;
  text-align: center;
}
.cid-uFXm5qZJJE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uFXm5qZJJE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFXm5qZJJE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFXm5qZJJE .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uFXm5qZJJE .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uFXm5qZJJE .content-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFXm5qZJJE .panel-group {
    margin-bottom: 24px;
  }
}
.cid-uFXm5qZJJE .panel-group .card {
  position: relative;
  padding: 16px 24px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  margin-top: 8px;
}
@media (max-width: 992px) {
  .cid-uFXm5qZJJE .panel-group .card {
    padding: 16px;
  }
}
.cid-uFXm5qZJJE .panel-group .card:first-child {
  margin-top: 0;
}
.cid-uFXm5qZJJE .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uFXm5qZJJE .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uFXm5qZJJE .panel-group .card .card-header .panel-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uFXm5qZJJE .panel-group .card .card-header .panel-title .panel-title-edit {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.cid-uFXm5qZJJE .panel-group .card .card-header .panel-title .icon-wrapper {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #19387d;
  margin-left: 8px;
}
.cid-uFXm5qZJJE .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  transition: all 0.3s ease-in-out;
  font-size: 18px;
  color: #081228;
}
.cid-uFXm5qZJJE .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  background-color: #f96e47;
}
.cid-uFXm5qZJJE .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-45deg);
  color: #081228;
}
.cid-uFXm5qZJJE .panel-group .card .card-header .panel-title:not(.collapsed)::before {
  opacity: 1;
}
.cid-uFXm5qZJJE .panel-group .card .panel-collapse .panel-body {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uFXm5qZJJE .panel-group .card .panel-collapse .panel-body {
    padding-top: 24px;
  }
}
.cid-uFXm5qZJJE .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uFXm5qZJJE .card-wrapper {
  background-color: #f9f8f8;
  padding: 72px 24px 40px;
  box-shadow: 0 3.5rem 5.5rem 0 #5189b8;
}
@media (max-width: 992px) {
  .cid-uFXm5qZJJE .card-wrapper {
    padding: 24px 16px;
  }
}
.cid-uFXm5qZJJE .card-wrapper .icon-wrap {
  margin-bottom: 16px;
}
.cid-uFXm5qZJJE .card-wrapper .icon-wrap .mbr-iconfont {
  height: 88px;
  width: 88px;
  min-width: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #ffffff;
  color: #a672ff;
  font-size: 42px;
}
.cid-uFXm5qZJJE .card-wrapper .card-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uFXm5qZJJE .card-wrapper .card-title {
    margin-bottom: 24px;
  }
}
.cid-uFXm5qZJJE .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-uFXm5qZJJE .card-wrapper .mbr-section-btn .btn {
    padding: 14px;
  }
}
.cid-uFXm5qZJJE .mbr-section-title {
  color: #272b2e;
}
.cid-uFXm5qZJJE .panel-title-edit {
  color: #272b2e;
}
.cid-uFXm5qZJJE .panel-text {
  color: #15171a;
}
.cid-uFXm5qZJJE .card-title {
  color: #272b2e;
}
.cid-uFXm5qZJJE .card-title,
.cid-uFXm5qZJJE .icon-wrap,
.cid-uFXm5qZJJE .mbr-section-btn {
  text-align: center;
}
.cid-uFUYN22Wzj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #212529;
}
.cid-uFUYN22Wzj .mbr-section-head {
  max-width: 1302px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 991px) {
  .cid-uFUYN22Wzj .mbr-section-head {
    padding: 0 12px;
  }
}
.cid-uFUYN22Wzj .mbr-section-title {
  width: 100%;
  color: #222222;
}
.cid-uFUYN22Wzj .mbr-section-subtitle {
  color: #555555;
  width: 100%;
}
.cid-uFUYN22Wzj .google-map {
  height: 656px;
  position: relative;
}
@media (max-width: 767px) {
  .cid-uFUYN22Wzj .google-map {
    height: 356px;
  }
}
.cid-uFUYN22Wzj .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uFUYN22Wzj .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uFUYN22Wzj .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uFUYN22Wzj .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uFUYN22Wzj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYN22Wzj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYN2xYVi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #060606;
}
.cid-uFUYN2xYVi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFUYN2xYVi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFUYN2xYVi .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uFUYN2xYVi .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uFUYN2xYVi .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFUYN2xYVi .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uFUYN2xYVi .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uFUYN2xYVi .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uFUYN2xYVi .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uFUYN2xYVi .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #121212;
  color: #ffffff;
}
.cid-uFUYN2xYVi .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #9aa0a6;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uFUYN2xYVi .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #fdf339;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uFUYN2xYVi .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uFUYN2xYVi .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uFUYN2xYVi .items-wrapper .card {
  padding: 0 32px;
}
.cid-uFUYN2xYVi .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uFUYN2xYVi .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uFUYN2xYVi .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uFUYN2xYVi .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uFUYN2xYVi .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uFUYN2xYVi .list-wrapper .list .item-wrap:hover,
.cid-uFUYN2xYVi .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uFUYN2xYVi .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uFUYN2xYVi .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uFUYN2xYVi .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uFUYN2xYVi .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uFUYN2xYVi .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uFUYN2xYVi .mbr-copy {
  margin-bottom: 0;
  color: #fafafa;
}
.cid-uFUYN2xYVi .mbr-desc {
  color: #ffffff;
}
.cid-uFUYN2xYVi .mbr-text,
.cid-uFUYN2xYVi .text-wrapper {
  color: #9aa0a6;
}
.cid-uFUYN2xYVi .list {
  color: #9aa0a6;
}
