body {
  font-family: Kantumruy Pro;
}
.display-1 {
  font-family: 'PT Sans', sans-serif;
  font-size: 4.5rem;
  line-height: 1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.625rem;
}
.display-2 {
  font-family: 'PT Sans', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-4 {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.25rem;
  line-height: 1.1;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5625rem;
}
.display-5 {
  font-family: 'PT Sans', sans-serif;
  font-size: 2.13rem;
  line-height: 1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.6625rem;
}
.display-7 {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.15rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: 1;
    letter-spacing: -1vw;
  }
  .display-2 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: 1;
    letter-spacing: -0.75vw;
  }
  .display-4 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.704rem;
    font-size: calc( 1.3955rem + (2.13 - 1.3955) * ((100vw - 20rem) / (48 - 20)));
    line-height: 1;
    letter-spacing: -0.5vw;
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((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: #000000 !important;
}
.bg-success {
  background-color: #c5e8c0 !important;
}
.bg-info {
  background-color: #e2d7ff !important;
}
.bg-warning {
  background-color: #fff1e3 !important;
}
.bg-danger {
  background-color: #e83e28 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ede7e2 !important;
  border-color: #ede7e2 !important;
  color: #806650 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ccbbad !important;
  border-color: #ccbbad !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #806650 !important;
  background-color: #ccbbad !important;
  border-color: #ccbbad !important;
}
.btn-info,
.btn-info:active {
  background-color: #e2d7ff !important;
  border-color: #e2d7ff !important;
  color: #3b00d7 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #a380ff !important;
  border-color: #a380ff !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #3b00d7 !important;
  background-color: #a380ff !important;
  border-color: #a380ff !important;
}
.btn-success,
.btn-success:active {
  background-color: #c5e8c0 !important;
  border-color: #c5e8c0 !important;
  color: #377c2d !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #8bd180 !important;
  border-color: #8bd180 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #377c2d !important;
  background-color: #8bd180 !important;
  border-color: #8bd180 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fff1e3 !important;
  border-color: #fff1e3 !important;
  color: #e37100 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #8c4600 !important;
  background-color: #ffc68c !important;
  border-color: #ffc68c !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #e37100 !important;
  background-color: #ffc68c !important;
  border-color: #ffc68c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #e83e28 !important;
  border-color: #e83e28 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #a72312 !important;
  border-color: #a72312 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #a72312 !important;
  border-color: #a72312 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ede7e2;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ccbbad !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #806650 !important;
  background-color: #ede7e2 !important;
  border-color: #ede7e2 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e2d7ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #a380ff !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #3b00d7 !important;
  background-color: #e2d7ff !important;
  border-color: #e2d7ff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c5e8c0;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #8bd180 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #377c2d !important;
  background-color: #c5e8c0 !important;
  border-color: #c5e8c0 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fff1e3;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffc68c !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #e37100 !important;
  background-color: #fff1e3 !important;
  border-color: #fff1e3 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e83e28;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #a72312 !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: #e83e28 !important;
  border-color: #e83e28 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #ede7e2 !important;
}
.text-success {
  color: #c5e8c0 !important;
}
.text-info {
  color: #e2d7ff !important;
}
.text-warning {
  color: #fff1e3 !important;
}
.text-danger {
  color: #e83e28 !important;
}
.text-white {
  color: #FFFFFF !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #c6b3a3 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #80cd75 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #9871ff !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffbe7d !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #9a2010 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #e2d7ff;
}
.alert-warning {
  background-color: #fff1e3;
}
.alert-danger {
  background-color: #e83e28;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fce3e0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'PT Sans', sans-serif;
  font-size: 1.25rem;
  line-height: 1.1;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5625rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ede7e2 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition-duration: .3s;
  transition: 0.4s;
}
a:hover {
  background-image: none !important;
}
.container,
.container-fluid {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.8vw;
}
@media (max-width: 767px) {
  .container,
  .container-fluid {
    padding: 0 5.3vw;
  }
}
.row {
  margin-left: -0.7vw;
  margin-right: -0.7vw;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0.7vw;
  padding-right: 0.7vw;
}
@media (max-width: 767px) {
  .row {
    margin-left: -1vw;
    margin-right: -1vw;
  }
  .row > [class*="col"] {
    padding-left: 1vw;
    padding-right: 1vw;
  }
}
.mbr-section-btn .btn {
  min-width: 80px;
  min-height: 66px;
  padding: 22px 38px;
  border-radius: 100rem !important;
  border-width: 1px;
  font-weight: 500;
  box-shadow: none !important;
  transition: .6s all !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    min-width: auto !important;
  }
}
.custom-section-btn .btn {
  position: relative;
  overflow: hidden;
}
.custom-section-btn .btn-transform {
  position: relative;
  z-index: 4;
  width: 100%;
  min-width: 100%;
  animation: btn-move-out 0.6s ease-in-out;
}
.custom-section-btn .btn-primary {
  color: #000000 !important;
  background: #000000 !important;
  border: 1px solid #000000 !important;
}
.custom-section-btn .btn-primary:after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100rem !important;
  background-color: #000000;
  transition: .6s all;
}
.custom-section-btn .btn-primary:hover {
  color: #FFFFFF !important;
  border: 1px solid #000000 !important;
}
.custom-section-btn .btn-primary:hover .btn-transform {
  animation: btn-move 0.6s ease-in-out;
}
.custom-section-btn .btn-primary:hover:after {
  left: 100%;
}
.custom-section-btn .btn-white {
  color: #000000 !important;
  background: #000000 !important;
  border: 1px solid #000000 !important;
}
.custom-section-btn .btn-white:after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100rem !important;
  background-color: #ede7e2;
  transition: .6s all;
}
.custom-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #000000 !important;
}
.custom-section-btn .btn-white:hover .btn-transform {
  animation: btn-move 0.6s ease-in-out;
}
.custom-section-btn .btn-white:hover:after {
  left: 100%;
}
.custom-section-btn .btn-black {
  color: #FFFFFF !important;
  background: #000000 !important;
  border: 1px solid #000000 !important;
}
.custom-section-btn .btn-black:after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100rem !important;
  background-color: #000000;
  transition: .6s all;
}
.custom-section-btn .btn-black:hover {
  color: #000000 !important;
  border: 1px solid #000000 !important;
}
.custom-section-btn .btn-black:hover .btn-transform {
  animation: btn-move 0.6s ease-in-out;
}
.custom-section-btn .btn-black:hover:after {
  left: 100%;
}
.custom-section-btn .btn-black-outline {
  color: #000000 !important;
  background: #000000 !important;
  border: 1px solid #000000 !important;
}
.custom-section-btn .btn-black-outline:after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100rem !important;
  background-color: #FFFFFF;
  transition: .6s all;
}
.custom-section-btn .btn-black-outline:hover {
  color: #FFFFFF !important;
  border: 1px solid #000000 !important;
}
.custom-section-btn .btn-black-outline:hover .btn-transform {
  animation: btn-move 0.6s ease-in-out;
}
.custom-section-btn .btn-black-outline:hover:after {
  left: 100%;
}
@keyframes btn-move {
  0% {
    transform: translate3d(0, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: transform;
  }
  49% {
    transform: translate3d(100%, 0, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(100%, 0, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    z-index: 2;
  }
  51% {
    transform: translate3d(0, 0, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0, 0, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: auto;
    z-index: 2;
  }
}
@keyframes btn-move-out {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: transform;
  }
  49% {
    transform: translate3d(-100%, 0, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(-100%, 0, 0px) scale3d(0, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0, 0, 0px) scale3d(0, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0, 0, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: auto;
  }
}
.form-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}
.form-wrapper form {
  width: 100%;
}
.form-wrapper form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.form-wrapper form p {
  color: #000000;
}
.form-wrapper form .mbr-section-btn {
  text-align: right;
  justify-content: flex-end;
  margin-right: auto;
}
.form-wrapper form .form-group {
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
}
.form-wrapper form .form-control {
  height: 62px;
  border: 1px solid #000000 !important;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 10px !important;
  margin-bottom: 0;
  padding: 20px 32px;
  font-size: 18px;
  line-height: normal !important;
  color: #000000;
  font-weight: 500;
}
.form-wrapper form .form-control::-webkit-input-placeholder {
  color: #757575;
}
.form-wrapper form .form-control::-moz-placeholder {
  color: #757575;
}
.form-wrapper form .form-control:-moz-placeholder {
  color: #757575;
}
.form-wrapper form .form-control:-ms-input-placeholder {
  color: #757575;
}
.form-wrapper form select {
  color: #757575 !important;
}
.form-wrapper form textarea {
  height: 100px !important;
  min-height: 100px !important;
  padding: 20px 32px !important;
  resize: none;
}
.form-wrapper form textarea::-webkit-input-placeholder {
  color: #757575 !important;
}
.form-wrapper form textarea::-moz-placeholder {
  color: #757575 !important;
}
.form-wrapper form textarea:-moz-placeholder {
  color: #757575 !important;
}
.form-wrapper form textarea:-ms-input-placeholder {
  color: #757575 !important;
}
.form-wrapper form input,
.form-wrapper form textarea {
  transition: .5s all;
}
.form-wrapper form input:active,
.form-wrapper form textarea:active,
.form-wrapper form input:focus,
.form-wrapper form textarea:focus {
  background-color: transparent !important;
  border-color: #000000 !important;
  outline: none !important;
}
.form-wrapper form input:active::-webkit-input-placeholder,
.form-wrapper form textarea:active::-webkit-input-placeholder,
.form-wrapper form input:focus::-webkit-input-placeholder,
.form-wrapper form textarea:focus::-webkit-input-placeholder {
  color: #757575 !important;
}
.form-wrapper form input:active::-moz-placeholder,
.form-wrapper form textarea:active::-moz-placeholder,
.form-wrapper form input:focus::-moz-placeholder,
.form-wrapper form textarea:focus::-moz-placeholder {
  color: #757575 !important;
}
.form-wrapper form input:active:-moz-placeholder,
.form-wrapper form textarea:active:-moz-placeholder,
.form-wrapper form input:focus:-moz-placeholder,
.form-wrapper form textarea:focus:-moz-placeholder {
  color: #757575 !important;
}
.form-wrapper form input:active:-ms-input-placeholder,
.form-wrapper form textarea:active:-ms-input-placeholder,
.form-wrapper form input:focus:-ms-input-placeholder,
.form-wrapper form textarea:focus:-ms-input-placeholder {
  color: #757575 !important;
}
.form-wrapper form .row {
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}
.form-wrapper form .row [class*=col] {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.form-wrapper form label {
  width: 100%;
  color: #000000;
  margin-bottom: 0.5rem;
}
.form-wrapper form .form-check-input {
  border-color: #757575 !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: transparent !important;
}
.form-wrapper form .form-check-input:focus,
.form-wrapper form .form-check-input:hover {
  background-color: transparent !important;
  border-color: #000000 !important;
}
.form-wrapper form .form-check-input:checked {
  border-color: #000000 !important;
  background-color: #757575 !important;
}
.cid-uCBYDj8G2j {
  border-bottom: 3px solid #000000;
  background-image: url("../../../assets/images/448434541-985183826945410-4890090343783723059-n-2000x1500.jpg");
}
.cid-uCBYDj8G2j .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  width: auto;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-uCBYDj8G2j .card-wrapper {
    margin-top: 2rem !important;
    padding: 0;
  }
  .cid-uCBYDj8G2j .back {
    width: auto;
    height: 100%;
  }
}
.cid-uCBYDj8G2j .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-uCBYDj8G2j .mbr-section-btn {
    margin-left: .5rem;
    margin-right: 1rem;
  }
}
@media (min-width: 991px) {
  .cid-uCBYDj8G2j .mbr-section-btn {
    margin-left: .5rem;
  }
}
.cid-uCBYDj8G2j .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uCBYDj8G2j .btn:hover,
.cid-uCBYDj8G2j .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-uCBYDj8G2j .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-uCBYDj8G2j .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uCBYDj8G2j .btn:hover:before,
.cid-uCBYDj8G2j .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-uCBYDj8G2j .btn-secondary {
  color: #000000 !important;
}
.cid-uCBYDj8G2j .btn-secondary:hover {
  color: #000000 !important;
}
.cid-uCBYDj8G2j .card-title {
  text-align: right;
  color: #000000;
}
.cid-uCBYDj8G2j .mbr-text,
.cid-uCBYDj8G2j .mbr-section-btn {
  text-align: right;
  color: #000000;
}
.cid-uCBYDj8G2j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBYDj8G2j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBsYA2B0r {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCBsYA2B0r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBsYA2B0r .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-uCBsYA2B0r .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uCBsYA2B0r .container {
    padding: 0 12px;
  }
}
.cid-uCBsYA2B0r .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCBsYA2B0r .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #000000;
}
.cid-uCBsYA2B0r .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uCBsYA2B0r .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffeafd;
  background-color: #000000;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uCBsYA2B0r .mbr-section-title {
  color: #222222;
}
.cid-uCC4TpcRpD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #b5d4ec;
}
.cid-uCC4TpcRpD .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uCC4TpcRpD .content_wrapper:hover .mbr-section-title a {
  color: #ede7e2 !important;
}
.cid-uCC4TpcRpD .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uCC4TpcRpD .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uCC4TpcRpD .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uCC4TpcRpD .mbr-section-btn .btn-secondary-outline:hover,
.cid-uCC4TpcRpD .mbr-section-btn .btn-secondary-outline .active,
.cid-uCC4TpcRpD .mbr-section-btn .btn-secondary-outline:focus {
  color: #000000 !important;
}
.cid-uCC4TpcRpD .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uCC4TpcRpD .image_post {
  display: inline-block;
}
.cid-uCC4TpcRpD .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uCC4TpcRpD .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uCBZlBpT55 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e3;
}
.cid-uCBZlBpT55 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBZlBpT55 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBZlBpT55 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 1440px) {
  .cid-uCBZlBpT55 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uCBZlBpT55 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uCBZlBpT55 .container {
    padding: 0 20px;
  }
}
.cid-uCBZlBpT55 .row {
  justify-content: center;
}
.cid-uCBZlBpT55 .content-wrapper {
  display: flex;
}
@media (max-width: 992px) {
  .cid-uCBZlBpT55 .content-wrapper {
    display: block;
  }
}
.cid-uCBZlBpT55 .content-wrapper .card {
  justify-content: center;
}
.cid-uCBZlBpT55 .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uCBZlBpT55 .content-wrapper .image-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uCBZlBpT55 .content-wrapper .image-wrapper img {
  height: 530px;
  object-fit: cover;
  border-radius: 20px !important;
}
@media (max-width: 992px) {
  .cid-uCBZlBpT55 .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uCBZlBpT55 .content-wrapper .content-wrap {
  width: 50%;
  padding-left: 200px;
}
@media (max-width: 1440px) {
  .cid-uCBZlBpT55 .content-wrapper .content-wrap {
    padding-left: 100px;
  }
}
@media (max-width: 1199px) {
  .cid-uCBZlBpT55 .content-wrapper .content-wrap {
    padding-left: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uCBZlBpT55 .content-wrapper .content-wrap {
    width: 100%;
    padding-left: 0;
  }
}
.cid-uCBZlBpT55 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uCBZlBpT55 .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 0;
  line-height: 1.6;
}
.cid-uCBZlBpT55 .mbr-section-title {
  color: #000000;
}
.cid-uCBZlBpT55 .mbr-text {
  color: #000000;
}
.cid-uCBuHFTDOS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCBuHFTDOS .row {
  position: relative;
}
.cid-uCBuHFTDOS .row .blur-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 450px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #dfe8ff 50%, #ffeafd);
  backdrop-filter: blur(10px);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-uCBuHFTDOS .row .blur-circle {
    display: none;
  }
}
.cid-uCBuHFTDOS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCBuHFTDOS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCBuHFTDOS .row {
  justify-content: center;
}
.cid-uCBuHFTDOS .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uCBuHFTDOS .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uCBuHFTDOS .row {
    padding: 0 24px;
  }
}
.cid-uCBuHFTDOS .row.row-wrapper {
  padding: 64px;
  background-color: #b5d4ec;
  position: relative;
  z-index: 2;
  border-radius: 16px;
}
.cid-uCBuHFTDOS .row.row-wrapper::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: -2rem;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 4px solid #ffeafd;
  background-color: transparent;
  pointer-events: none;
}
@media (max-width: 768px) {
  .cid-uCBuHFTDOS .row.row-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uCBuHFTDOS .row.row-wrapper .card {
    margin-bottom: 32px;
  }
}
.cid-uCBuHFTDOS .row.row-wrapper .card .text-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-uCBuHFTDOS .row.row-wrapper .card .text-wrapper {
    margin-bottom: 42px;
  }
}
.cid-uCBuHFTDOS .row.row-wrapper .card .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uCBuHFTDOS .row.row-wrapper .card .text-wrapper .link-wrapper {
  width: 100%;
  height: 100%;
  transition: all .3s ease;
}
.cid-uCBuHFTDOS .row.row-wrapper .card .text-wrapper .link-wrapper:hover {
  opacity: .75;
}
.cid-uCBuHFTDOS .row.row-wrapper .card .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  text-decoration: underline;
}
.cid-uCBuHFTDOS .row.row-wrapper .card .text-wrapper .mbr-desc {
  margin: 30px 0 0 0;
}
.cid-uCBuHFTDOS .row.row-wrapper .card .text-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-uCBuHFTDOS .mbr-section-title {
  color: #000000;
}
.cid-uCBuHFTDOS .mbr-link {
  color: #f4efe8;
}
.cid-uCBuHFTDOS .mbr-desc {
  color: #f4efe8;
}
.cid-uCBuHFTDOS .mbr-text {
  color: #f4efe8;
}
.cid-uCzDC4wSDL {
  position: relative;
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCzDC4wSDL .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCzDC4wSDL .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uCzDC4wSDL .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uCzDC4wSDL .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uCzDC4wSDL .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uCzDC4wSDL .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCC0bVl4Vm {
  overflow: visible !important;
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-uCC0bVl4Vm {
    padding-top: 1.5rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-uCC0bVl4Vm {
    padding-top: 0.9rem;
    padding-bottom: 0rem;
  }
}
.cid-uCC0bVl4Vm .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uCC0bVl4Vm .f-row {
    flex-direction: row;
    min-height: 665px;
  }
}
@media (min-width: 992px) {
  .cid-uCC0bVl4Vm .image-wrapper {
    transform: translateX(25%);
    min-width: 770px;
    min-height: 500px;
    max-height: 500px;
  }
}
.cid-uCC0bVl4Vm .image-wrapper img {
  min-height: 100%;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uCC0bVl4Vm .text {
    min-width: 615px;
    transform: translate(-25%, 4rem);
  }
}
.cid-uCC0bVl4Vm .text-wrapper {
  background: #fff1e3;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-uCC0bVl4Vm .text-wrapper {
    padding: 100px 100px 63px;
  }
}
.cid-uCC0bVl4Vm .mbr-text {
  font-weight: 300;
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uCC0bVl4Vm .display-1 {
    font-size: 65px;
  }
  .cid-uCC0bVl4Vm .display-5 {
    font-size: 29px;
  }
}
.cid-uCC0bVl4Vm .mbr-section-btn {
  background: #fff1e3;
  margin-left: 0;
  margin-right: 0;
}
.cid-uCC0bVl4Vm .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 72px;
  padding-right: 80px;
  padding-left: 80px;
  margin: 0;
}
.cid-uCC0bVl4Vm .btn:hover {
  background: #BEE1E6 !important;
  border-color: #BEE1E6 !important;
  color: #18293D !important;
}
.cid-uCzDy9usJy {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCzDy9usJy .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCzDy9usJy .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uCzDy9usJy .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uCzDy9usJy .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uCzDy9usJy .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uCzDy9usJy .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCzChDAEUd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #dfe8ff;
}
.cid-uCzChDAEUd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCzChDAEUd .col-12 {
  padding: 0;
}
.cid-uCzChDAEUd .row {
  margin: 0;
}
.cid-uCzChDAEUd .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uCzChDAEUd .card-margin {
    margin-top: -1px;
  }
}
.cid-uCzChDAEUd .card-wrapper {
  min-height: 500px;
  border: 1px solid #000000;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uCzChDAEUd .card-wrapper {
    padding: 1rem;
  }
}
.cid-uCzChDAEUd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCzChDAEUd .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uCzChDAEUd .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uCzChDAEUd .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uCzChDAEUd .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uCzChDAEUd .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uCzChDAEUd .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uCzChDAEUd .image-wrapper {
    padding: 1rem;
  }
}
.cid-uCzChDAEUd .mbr-section-title {
  color: #000000;
}
.cid-uCzChDAEUd .mbr-text,
.cid-uCzChDAEUd .mbr-section-btn {
  color: #221b35;
}
.cid-uCCrLGa9Dr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCCrLGa9Dr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCrLGa9Dr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCCrLGa9Dr .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uCCrLGa9Dr .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-uCCrLGa9Dr .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uCCrLGa9Dr .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 16px;
  }
}
.cid-uCCrLGa9Dr .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #333333, #292739);
}
@media (max-width: 992px) {
  .cid-uCCrLGa9Dr .border-wrap {
    margin-top: 32px;
  }
}
.cid-uCCrLGa9Dr .mbr-section-title {
  color: #ffffff;
}
.cid-uCCrLGa9Dr .mbr-text,
.cid-uCCrLGa9Dr .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uCCrLGa9Dr .mbr-section-title,
.cid-uCCrLGa9Dr .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-tlJIbZ1Qzw {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #fff1e3;
  position: relative;
}
.cid-tlJIbZ1Qzw .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff1e3;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-tlJIbZ1Qzw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tlJIbZ1Qzw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tlJIbZ1Qzw .col-title {
    margin-bottom: 7vw;
  }
}
@media (max-width: 767px) {
  .cid-tlJIbZ1Qzw .col-title {
    margin-bottom: 9vw;
  }
}
.cid-tlJIbZ1Qzw .mbr-section-title {
  color: #000000;
  margin-bottom: 1rem;
}
.cid-tlJIbZ1Qzw .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 0;
}
.cid-tlJIbZ1Qzw .toggle-panel {
  border-top: 1px solid #000000;
}
.cid-tlJIbZ1Qzw .card {
  padding-bottom: 0;
  border-radius: 0;
  border-bottom: 1px solid #000000;
}
.cid-tlJIbZ1Qzw .card-header {
  background-color: transparent;
  margin-bottom: 0;
  padding: 0;
  border-bottom: none !important;
}
.cid-tlJIbZ1Qzw .sign {
  font-family: 'Moririse2' !important;
  padding: 10px;
  font-size: 18px;
  border-radius: 50%;
  color: #000000;
  border: 1px solid #000000;
  transition: 0.3s all;
  animation: icon-move-out 0.2s ease-out;
}
@media (max-width: 991px) {
  .cid-tlJIbZ1Qzw .sign {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    width: 7.3vw;
    font-size: 3.7vw;
    aspect-ratio: 1;
  }
}
@media (max-width: 767px) {
  .cid-tlJIbZ1Qzw .sign {
    width: 8.53vw;
    font-size: 4.3vw;
  }
}
.cid-tlJIbZ1Qzw .panel-title-edit {
  color: #000000;
  padding-right: 1rem;
  transition: .3s all;
}
.cid-tlJIbZ1Qzw .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  transition: .4s all;
}
@media (max-width: 991px) {
  .cid-tlJIbZ1Qzw .panel-title {
    padding: 5vw 0;
  }
}
@media (max-width: 767px) {
  .cid-tlJIbZ1Qzw .panel-title {
    padding: 6.4vw 0;
  }
}
.cid-tlJIbZ1Qzw .panel-title[aria-expanded="false"] .sign:hover {
  animation: icon-move 0.8s forwards;
}
.cid-tlJIbZ1Qzw .panel-title[aria-expanded="true"] .sign {
  transform: rotate(135deg);
}
.cid-tlJIbZ1Qzw .panel-text {
  color: #FFFFFF;
  margin-bottom: 36px;
  max-width: 80%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tlJIbZ1Qzw .panel-text {
    margin-bottom: 5vw;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tlJIbZ1Qzw .panel-text {
    margin-bottom: 6.4vw;
  }
}
@keyframes icon-move {
  0% {
    transform: translate3d(0, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: transform;
  }
  80% {
    transform: translate3d(0, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(360deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0, 0%, 0px) scale3d(1.2, 1.2, 1) rotateX(0deg) rotateY(0deg) rotateZ(360deg) skew(0deg, 0deg);
    will-change: auto;
  }
}
@keyframes icon-move-out {
  0% {
    transform: translate3d(0, 0%, 0px) scale3d(1.2, 1.2, 1) rotateX(0deg) rotateY(0deg) rotateZ(0) skew(0deg, 0deg);
    will-change: transform;
  }
  100% {
    transform: translate3d(0, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0) skew(0deg, 0deg);
    will-change: auto;
  }
}
.cid-uCC2JMWUml {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uCC2JMWUml .content {
    max-width: 600px;
    margin: auto;
  }
}
@media (min-width: 767px) {
  .cid-uCC2JMWUml .content {
    padding: 0 2rem;
  }
}
.cid-uCC2JMWUml .img-col {
  padding: 0;
  margin: auto 0;
}
@media (max-width: 992px) {
  .cid-uCC2JMWUml .content {
    margin: auto;
  }
}
.cid-uCC2JMWUml li {
  list-style: none;
}
.cid-uCC2JMWUml .item-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.cid-uCC2JMWUml .item-wrap:hover .mbr-iconfont {
  color: #181818 !important;
}
.cid-uCC2JMWUml .mbr-iconfont {
  font-size: 18px !important;
  padding-right: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 900;
  color: #ffffff !important;
}
.cid-uCC2JMWUml h4 {
  margin: 0;
}
.cid-uCC2JMWUml ul {
  padding: 0;
  margin: 0;
}
.cid-uCC2JMWUml H2 {
  color: #ed6436;
}
.cid-uCC2JMWUml .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC2JMWUml .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCzDwWkCBT {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e3;
}
.cid-uCzDwWkCBT .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff1e3;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCzDwWkCBT .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uCzDwWkCBT .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uCzDwWkCBT .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uCzDwWkCBT .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uCzDwWkCBT .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCzIJRre3k {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uCzIJRre3k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCzIJRre3k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCzIJRre3k .google-map {
  height: 30rem;
  position: relative;
}
.cid-uCzIJRre3k .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uCzIJRre3k .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-uCzIJRre3k .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uCzIJRre3k .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uCzE3KMYtU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #dfe8ff;
  overflow: hidden;
}
.cid-uCzE3KMYtU::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #fff1e3 50%);
  z-index: 1;
}
.cid-uCzE3KMYtU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCzE3KMYtU .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-uCzE3KMYtU .container {
    padding: 0 22px;
  }
}
.cid-uCzE3KMYtU .row {
  position: relative;
  z-index: 1;
}
.cid-uCzE3KMYtU .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uCzE3KMYtU .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uCzE3KMYtU .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uCzE3KMYtU .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uCzE3KMYtU .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCzE3KMYtU .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uCzE3KMYtU .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uCzE3KMYtU .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uCzE3KMYtU .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uCzE3KMYtU .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uCzE3KMYtU .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uCzE3KMYtU .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uCzE3KMYtU .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uCzE3KMYtU .nav-wrapper .list .item-wrap:hover,
.cid-uCzE3KMYtU .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uCzE3KMYtU .nav-wrapper .list .item-wrap:hover::before,
.cid-uCzE3KMYtU .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uCzE3KMYtU .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCzE3KMYtU .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCzE3KMYtU .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uCzE3KMYtU .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uCzE3KMYtU .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uCzE3KMYtU .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uCzE3KMYtU .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uCzE3KMYtU .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uCzE3KMYtU .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uCzE3KMYtU .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uCzE3KMYtU .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uCzE3KMYtU .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uCzE3KMYtU .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCzE3KMYtU .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCzE3KMYtU .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uCzE3KMYtU .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uCzE3KMYtU .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uCzE3KMYtU .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uCzE3KMYtU .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uCzE3KMYtU .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uCzE3KMYtU .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uCzE3KMYtU .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uCzE3KMYtU .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCzE3KMYtU .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCzE3KMYtU .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uCzE3KMYtU .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uCzE3KMYtU .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #000000;
  text-align: center;
}
.cid-uCzE3KMYtU .mbr-section-title {
  color: #000000;
}
.cid-uCzE3KMYtU .mbr-text {
  color: #ffffff;
}
.cid-uCzE3KMYtU .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uCzE3KMYtU .list {
  color: #ffffff;
}
.cid-uCzE3KMYtU .mbr-contact {
  color: #ffffff;
}
.cid-uCzE3KMYtU .mbr-desc {
  color: #ffffff;
}
.cid-uCzE3KMYtU .mbr-contact,
.cid-uCzE3KMYtU .item-contact {
  color: #000000;
}
.cid-uCzE3KMYtU .list,
.cid-uCzE3KMYtU .item-wrap {
  color: #000000;
}
.cid-uCClcaAsOu .navbar-dropdown {
  position: relative !important;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCClcaAsOu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCClcaAsOu .dropdown-item:hover,
.cid-uCClcaAsOu .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uCClcaAsOu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCClcaAsOu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCClcaAsOu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
  color: #000;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCClcaAsOu .nav-link {
  position: relative;
}
.cid-uCClcaAsOu .container {
  display: flex;
  margin: auto;
}
.cid-uCClcaAsOu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCClcaAsOu .dropdown-menu,
.cid-uCClcaAsOu .navbar.opened {
  background: #ffffff !important;
}
.cid-uCClcaAsOu .nav-item:focus,
.cid-uCClcaAsOu .nav-link:focus {
  outline: none;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCClcaAsOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCClcaAsOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCClcaAsOu .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: #ffffff;
}
.cid-uCClcaAsOu .navbar.opened {
  transition: all 0.3s;
}
.cid-uCClcaAsOu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCClcaAsOu .navbar .navbar-logo img {
  width: auto;
}
.cid-uCClcaAsOu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCClcaAsOu .navbar.collapsed {
  justify-content: center;
}
.cid-uCClcaAsOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCClcaAsOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCClcaAsOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCClcaAsOu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCClcaAsOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCClcaAsOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCClcaAsOu .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-uCClcaAsOu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCClcaAsOu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCClcaAsOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCClcaAsOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCClcaAsOu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uCClcaAsOu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCClcaAsOu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCClcaAsOu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCClcaAsOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCClcaAsOu .dropdown-item.active,
.cid-uCClcaAsOu .dropdown-item:active {
  background-color: transparent;
}
.cid-uCClcaAsOu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCClcaAsOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCClcaAsOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCClcaAsOu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCClcaAsOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCClcaAsOu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCClcaAsOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCClcaAsOu .navbar-dropdown {
  padding: .7rem 1rem;
}
.cid-uCClcaAsOu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar {
    height: 70px;
  }
  .cid-uCClcaAsOu .navbar.opened {
    height: auto;
  }
  .cid-uCClcaAsOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCCoGHqRPM {
  border-bottom: 3px solid #000000;
  background-image: url("../../../assets/images/44-1270x714.jpg");
}
.cid-uCCoGHqRPM .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  width: auto;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-uCCoGHqRPM .card-wrapper {
    margin-top: 2rem !important;
    padding: 0;
  }
  .cid-uCCoGHqRPM .back {
    width: auto;
    height: 100%;
  }
}
.cid-uCCoGHqRPM .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-uCCoGHqRPM .mbr-section-btn {
    margin-left: .5rem;
    margin-right: 1rem;
  }
}
@media (min-width: 991px) {
  .cid-uCCoGHqRPM .mbr-section-btn {
    margin-left: .5rem;
  }
}
.cid-uCCoGHqRPM .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uCCoGHqRPM .btn:hover,
.cid-uCCoGHqRPM .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-uCCoGHqRPM .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-uCCoGHqRPM .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uCCoGHqRPM .btn:hover:before,
.cid-uCCoGHqRPM .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-uCCoGHqRPM .btn-secondary {
  color: #000000 !important;
}
.cid-uCCoGHqRPM .btn-secondary:hover {
  color: #000000 !important;
}
.cid-uCCoGHqRPM .card-title {
  text-align: right;
  color: #000000;
}
.cid-uCCoGHqRPM .mbr-text,
.cid-uCCoGHqRPM .mbr-section-btn {
  text-align: right;
  color: #000000;
}
.cid-uCCoGHqRPM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCoGHqRPM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCA05gUd0Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCA05gUd0Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCA05gUd0Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCA05gUd0Y .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uCA05gUd0Y .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uCA05gUd0Y .container {
    padding: 0 12px;
  }
}
.cid-uCA05gUd0Y .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCA05gUd0Y .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uCA05gUd0Y .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #ffffff;
  box-shadow: 4px 4px #ffffff;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uCA05gUd0Y .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-uCA05gUd0Y .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCA05gUd0Y .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uCA05gUd0Y .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-uCA05gUd0Y .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-uCA05gUd0Y .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-uCA05gUd0Y .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-uCA05gUd0Y .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uCA05gUd0Y .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uCA05gUd0Y .mbr-section-subtitle {
  color: #222222;
}
.cid-uCA05gUd0Y .mbr-text {
  color: #222222;
}
.cid-uCA05gUd0Y .list {
  color: #222222;
}
.cid-uCA05z2VbH {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uCA05z2VbH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCA05z2VbH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCA05z2VbH .google-map {
  height: 30rem;
  position: relative;
}
.cid-uCA05z2VbH .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uCA05z2VbH .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-uCA05z2VbH .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uCA05z2VbH .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uCA05AGv3B {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #dfe8ff;
  overflow: hidden;
}
.cid-uCA05AGv3B::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #fff1e3 50%);
  z-index: 1;
}
.cid-uCA05AGv3B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCA05AGv3B .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-uCA05AGv3B .container {
    padding: 0 22px;
  }
}
.cid-uCA05AGv3B .row {
  position: relative;
  z-index: 1;
}
.cid-uCA05AGv3B .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uCA05AGv3B .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uCA05AGv3B .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uCA05AGv3B .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uCA05AGv3B .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCA05AGv3B .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uCA05AGv3B .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uCA05AGv3B .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uCA05AGv3B .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uCA05AGv3B .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uCA05AGv3B .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uCA05AGv3B .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uCA05AGv3B .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uCA05AGv3B .nav-wrapper .list .item-wrap:hover,
.cid-uCA05AGv3B .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uCA05AGv3B .nav-wrapper .list .item-wrap:hover::before,
.cid-uCA05AGv3B .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uCA05AGv3B .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCA05AGv3B .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCA05AGv3B .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uCA05AGv3B .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uCA05AGv3B .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uCA05AGv3B .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uCA05AGv3B .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uCA05AGv3B .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uCA05AGv3B .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uCA05AGv3B .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uCA05AGv3B .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uCA05AGv3B .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uCA05AGv3B .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCA05AGv3B .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCA05AGv3B .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uCA05AGv3B .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uCA05AGv3B .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uCA05AGv3B .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uCA05AGv3B .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uCA05AGv3B .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uCA05AGv3B .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uCA05AGv3B .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uCA05AGv3B .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCA05AGv3B .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCA05AGv3B .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uCA05AGv3B .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uCA05AGv3B .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #000000;
  text-align: center;
}
.cid-uCA05AGv3B .mbr-section-title {
  color: #000000;
}
.cid-uCA05AGv3B .mbr-text {
  color: #ffffff;
}
.cid-uCA05AGv3B .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uCA05AGv3B .list {
  color: #ffffff;
}
.cid-uCA05AGv3B .mbr-contact {
  color: #ffffff;
}
.cid-uCA05AGv3B .mbr-desc {
  color: #ffffff;
}
.cid-uCA05AGv3B .mbr-contact,
.cid-uCA05AGv3B .item-contact {
  color: #000000;
}
.cid-uCA05AGv3B .list,
.cid-uCA05AGv3B .item-wrap {
  color: #000000;
}
.cid-uCClcaAsOu .navbar-dropdown {
  position: relative !important;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCClcaAsOu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCClcaAsOu .dropdown-item:hover,
.cid-uCClcaAsOu .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uCClcaAsOu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCClcaAsOu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCClcaAsOu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
  color: #000;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCClcaAsOu .nav-link {
  position: relative;
}
.cid-uCClcaAsOu .container {
  display: flex;
  margin: auto;
}
.cid-uCClcaAsOu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCClcaAsOu .dropdown-menu,
.cid-uCClcaAsOu .navbar.opened {
  background: #ffffff !important;
}
.cid-uCClcaAsOu .nav-item:focus,
.cid-uCClcaAsOu .nav-link:focus {
  outline: none;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCClcaAsOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCClcaAsOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCClcaAsOu .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: #ffffff;
}
.cid-uCClcaAsOu .navbar.opened {
  transition: all 0.3s;
}
.cid-uCClcaAsOu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCClcaAsOu .navbar .navbar-logo img {
  width: auto;
}
.cid-uCClcaAsOu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCClcaAsOu .navbar.collapsed {
  justify-content: center;
}
.cid-uCClcaAsOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCClcaAsOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCClcaAsOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCClcaAsOu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCClcaAsOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCClcaAsOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCClcaAsOu .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-uCClcaAsOu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCClcaAsOu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCClcaAsOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCClcaAsOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCClcaAsOu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uCClcaAsOu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCClcaAsOu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCClcaAsOu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCClcaAsOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCClcaAsOu .dropdown-item.active,
.cid-uCClcaAsOu .dropdown-item:active {
  background-color: transparent;
}
.cid-uCClcaAsOu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCClcaAsOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCClcaAsOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCClcaAsOu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCClcaAsOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCClcaAsOu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCClcaAsOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCClcaAsOu .navbar-dropdown {
  padding: .7rem 1rem;
}
.cid-uCClcaAsOu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar {
    height: 70px;
  }
  .cid-uCClcaAsOu .navbar.opened {
    height: auto;
  }
  .cid-uCClcaAsOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCCp9lE6m3 {
  border-bottom: 3px solid #000000;
  background-image: url("../../../assets/images/2022-001-philadelphia-mills-1-087a0196-1200x800.jpg");
}
.cid-uCCp9lE6m3 .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  width: auto;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-uCCp9lE6m3 .card-wrapper {
    margin-top: 2rem !important;
    padding: 0;
  }
  .cid-uCCp9lE6m3 .back {
    width: auto;
    height: 100%;
  }
}
.cid-uCCp9lE6m3 .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-uCCp9lE6m3 .mbr-section-btn {
    margin-left: .5rem;
    margin-right: 1rem;
  }
}
@media (min-width: 991px) {
  .cid-uCCp9lE6m3 .mbr-section-btn {
    margin-left: .5rem;
  }
}
.cid-uCCp9lE6m3 .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uCCp9lE6m3 .btn:hover,
.cid-uCCp9lE6m3 .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-uCCp9lE6m3 .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-uCCp9lE6m3 .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uCCp9lE6m3 .btn:hover:before,
.cid-uCCp9lE6m3 .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-uCCp9lE6m3 .btn-secondary {
  color: #000000 !important;
}
.cid-uCCp9lE6m3 .btn-secondary:hover {
  color: #000000 !important;
}
.cid-uCCp9lE6m3 .card-title {
  text-align: right;
  color: #000000;
}
.cid-uCCp9lE6m3 .mbr-text,
.cid-uCCp9lE6m3 .mbr-section-btn {
  text-align: right;
  color: #000000;
}
.cid-uCCp9lE6m3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCp9lE6m3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCA2j9U6Rn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCA2j9U6Rn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCA2j9U6Rn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCA2j9U6Rn .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uCA2j9U6Rn .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uCA2j9U6Rn .container {
    padding: 0 12px;
  }
}
.cid-uCA2j9U6Rn .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uCA2j9U6Rn .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uCA2j9U6Rn .card-wrapper {
  padding: 40px;
  border-radius: 50px;
  border: 3px solid #ffffff;
  box-shadow: 4px 4px #ffffff;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uCA2j9U6Rn .card-wrapper {
    padding: 24px;
    border-radius: 24px;
  }
}
.cid-uCA2j9U6Rn .card-wrapper .card-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uCA2j9U6Rn .card-wrapper .card-wrap {
    display: block;
  }
}
.cid-uCA2j9U6Rn .card-wrapper .card-wrap .icon-wrapper {
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-uCA2j9U6Rn .card-wrapper .card-wrap .icon-wrapper {
    margin: 0 0 16px 0;
    text-align: center;
  }
}
.cid-uCA2j9U6Rn .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
  font-size: 140px;
  color: #ff6928;
}
@media (max-width: 992px) {
  .cid-uCA2j9U6Rn .card-wrapper .card-wrap .icon-wrapper .mbr-iconfont {
    font-size: 100px;
  }
}
.cid-uCA2j9U6Rn .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uCA2j9U6Rn .mbr-section-title {
  color: #222222;
  text-align: center;
}
.cid-uCA2j9U6Rn .mbr-section-subtitle {
  color: #222222;
}
.cid-uCA2j9U6Rn .mbr-text {
  color: #222222;
}
.cid-uCA2j9U6Rn .list {
  color: #222222;
}
.cid-uCA2jb2bgn {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uCA2jb2bgn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCA2jb2bgn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCA2jb2bgn .google-map {
  height: 30rem;
  position: relative;
}
.cid-uCA2jb2bgn .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uCA2jb2bgn .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-uCA2jb2bgn .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uCA2jb2bgn .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uCA2jcKFFc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #dfe8ff;
  overflow: hidden;
}
.cid-uCA2jcKFFc::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #fff1e3 50%);
  z-index: 1;
}
.cid-uCA2jcKFFc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCA2jcKFFc .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-uCA2jcKFFc .container {
    padding: 0 22px;
  }
}
.cid-uCA2jcKFFc .row {
  position: relative;
  z-index: 1;
}
.cid-uCA2jcKFFc .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uCA2jcKFFc .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uCA2jcKFFc .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uCA2jcKFFc .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uCA2jcKFFc .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCA2jcKFFc .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uCA2jcKFFc .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uCA2jcKFFc .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uCA2jcKFFc .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uCA2jcKFFc .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uCA2jcKFFc .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uCA2jcKFFc .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uCA2jcKFFc .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uCA2jcKFFc .nav-wrapper .list .item-wrap:hover,
.cid-uCA2jcKFFc .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uCA2jcKFFc .nav-wrapper .list .item-wrap:hover::before,
.cid-uCA2jcKFFc .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uCA2jcKFFc .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCA2jcKFFc .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCA2jcKFFc .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uCA2jcKFFc .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uCA2jcKFFc .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uCA2jcKFFc .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uCA2jcKFFc .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uCA2jcKFFc .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uCA2jcKFFc .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uCA2jcKFFc .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uCA2jcKFFc .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uCA2jcKFFc .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uCA2jcKFFc .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCA2jcKFFc .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCA2jcKFFc .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uCA2jcKFFc .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uCA2jcKFFc .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uCA2jcKFFc .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uCA2jcKFFc .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uCA2jcKFFc .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uCA2jcKFFc .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uCA2jcKFFc .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uCA2jcKFFc .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCA2jcKFFc .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCA2jcKFFc .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uCA2jcKFFc .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uCA2jcKFFc .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #000000;
  text-align: center;
}
.cid-uCA2jcKFFc .mbr-section-title {
  color: #000000;
}
.cid-uCA2jcKFFc .mbr-text {
  color: #ffffff;
}
.cid-uCA2jcKFFc .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uCA2jcKFFc .list {
  color: #ffffff;
}
.cid-uCA2jcKFFc .mbr-contact {
  color: #ffffff;
}
.cid-uCA2jcKFFc .mbr-desc {
  color: #ffffff;
}
.cid-uCA2jcKFFc .mbr-contact,
.cid-uCA2jcKFFc .item-contact {
  color: #000000;
}
.cid-uCA2jcKFFc .list,
.cid-uCA2jcKFFc .item-wrap {
  color: #000000;
}
.cid-uCClcaAsOu .navbar-dropdown {
  position: relative !important;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCClcaAsOu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCClcaAsOu .dropdown-item:hover,
.cid-uCClcaAsOu .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uCClcaAsOu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCClcaAsOu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCClcaAsOu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
  color: #000;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCClcaAsOu .nav-link {
  position: relative;
}
.cid-uCClcaAsOu .container {
  display: flex;
  margin: auto;
}
.cid-uCClcaAsOu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCClcaAsOu .dropdown-menu,
.cid-uCClcaAsOu .navbar.opened {
  background: #ffffff !important;
}
.cid-uCClcaAsOu .nav-item:focus,
.cid-uCClcaAsOu .nav-link:focus {
  outline: none;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCClcaAsOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCClcaAsOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCClcaAsOu .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: #ffffff;
}
.cid-uCClcaAsOu .navbar.opened {
  transition: all 0.3s;
}
.cid-uCClcaAsOu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCClcaAsOu .navbar .navbar-logo img {
  width: auto;
}
.cid-uCClcaAsOu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCClcaAsOu .navbar.collapsed {
  justify-content: center;
}
.cid-uCClcaAsOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCClcaAsOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCClcaAsOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCClcaAsOu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCClcaAsOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCClcaAsOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCClcaAsOu .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-uCClcaAsOu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCClcaAsOu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCClcaAsOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCClcaAsOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCClcaAsOu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uCClcaAsOu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCClcaAsOu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCClcaAsOu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCClcaAsOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCClcaAsOu .dropdown-item.active,
.cid-uCClcaAsOu .dropdown-item:active {
  background-color: transparent;
}
.cid-uCClcaAsOu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCClcaAsOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCClcaAsOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCClcaAsOu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCClcaAsOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCClcaAsOu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCClcaAsOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCClcaAsOu .navbar-dropdown {
  padding: .7rem 1rem;
}
.cid-uCClcaAsOu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar {
    height: 70px;
  }
  .cid-uCClcaAsOu .navbar.opened {
    height: auto;
  }
  .cid-uCClcaAsOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCClcaAsOu .navbar-dropdown {
  position: relative !important;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCClcaAsOu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCClcaAsOu .dropdown-item:hover,
.cid-uCClcaAsOu .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uCClcaAsOu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCClcaAsOu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCClcaAsOu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
  color: #000;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCClcaAsOu .nav-link {
  position: relative;
}
.cid-uCClcaAsOu .container {
  display: flex;
  margin: auto;
}
.cid-uCClcaAsOu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCClcaAsOu .dropdown-menu,
.cid-uCClcaAsOu .navbar.opened {
  background: #ffffff !important;
}
.cid-uCClcaAsOu .nav-item:focus,
.cid-uCClcaAsOu .nav-link:focus {
  outline: none;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCClcaAsOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCClcaAsOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCClcaAsOu .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: #ffffff;
}
.cid-uCClcaAsOu .navbar.opened {
  transition: all 0.3s;
}
.cid-uCClcaAsOu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCClcaAsOu .navbar .navbar-logo img {
  width: auto;
}
.cid-uCClcaAsOu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCClcaAsOu .navbar.collapsed {
  justify-content: center;
}
.cid-uCClcaAsOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCClcaAsOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCClcaAsOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCClcaAsOu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCClcaAsOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCClcaAsOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCClcaAsOu .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-uCClcaAsOu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCClcaAsOu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCClcaAsOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCClcaAsOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCClcaAsOu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uCClcaAsOu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCClcaAsOu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCClcaAsOu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCClcaAsOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCClcaAsOu .dropdown-item.active,
.cid-uCClcaAsOu .dropdown-item:active {
  background-color: transparent;
}
.cid-uCClcaAsOu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCClcaAsOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCClcaAsOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCClcaAsOu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCClcaAsOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCClcaAsOu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCClcaAsOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCClcaAsOu .navbar-dropdown {
  padding: .7rem 1rem;
}
.cid-uCClcaAsOu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar {
    height: 70px;
  }
  .cid-uCClcaAsOu .navbar.opened {
    height: auto;
  }
  .cid-uCClcaAsOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCC95KbhzB {
  border-bottom: 3px solid #000000;
  background-image: url("../../../assets/images/news-big-bounce-1-960x640.jpg");
}
.cid-uCC95KbhzB .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  width: auto;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-uCC95KbhzB .card-wrapper {
    margin-top: 2rem !important;
    padding: 0;
  }
  .cid-uCC95KbhzB .back {
    width: auto;
    height: 100%;
  }
}
.cid-uCC95KbhzB .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-uCC95KbhzB .mbr-section-btn {
    margin-left: .5rem;
    margin-right: 1rem;
  }
}
@media (min-width: 991px) {
  .cid-uCC95KbhzB .mbr-section-btn {
    margin-left: .5rem;
  }
}
.cid-uCC95KbhzB .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uCC95KbhzB .btn:hover,
.cid-uCC95KbhzB .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-uCC95KbhzB .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-uCC95KbhzB .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uCC95KbhzB .btn:hover:before,
.cid-uCC95KbhzB .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-uCC95KbhzB .btn-secondary {
  color: #000000 !important;
}
.cid-uCC95KbhzB .btn-secondary:hover {
  color: #000000 !important;
}
.cid-uCC95KbhzB .card-title {
  text-align: right;
  color: #000000;
}
.cid-uCC95KbhzB .mbr-text,
.cid-uCC95KbhzB .mbr-section-btn {
  text-align: right;
  color: #000000;
}
.cid-uCC95KbhzB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC95KbhzB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC95L3BeG {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCC95L3BeG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC95L3BeG .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-uCC95L3BeG .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uCC95L3BeG .container {
    padding: 0 12px;
  }
}
.cid-uCC95L3BeG .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCC95L3BeG .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #000000;
}
.cid-uCC95L3BeG .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uCC95L3BeG .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffeafd;
  background-color: #000000;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uCC95L3BeG .mbr-section-title {
  color: #222222;
}
.cid-uCC95McCZu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #b5d4ec;
}
.cid-uCC95McCZu .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uCC95McCZu .content_wrapper:hover .mbr-section-title a {
  color: #ede7e2 !important;
}
.cid-uCC95McCZu .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uCC95McCZu .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uCC95McCZu .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uCC95McCZu .mbr-section-btn .btn-secondary-outline:hover,
.cid-uCC95McCZu .mbr-section-btn .btn-secondary-outline .active,
.cid-uCC95McCZu .mbr-section-btn .btn-secondary-outline:focus {
  color: #000000 !important;
}
.cid-uCC95McCZu .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uCC95McCZu .image_post {
  display: inline-block;
}
.cid-uCC95McCZu .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uCC95McCZu .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uCC9IQAXfW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff1e3;
}
.cid-uCC9IQAXfW .mbr-section-head {
  border-bottom: 1px solid #FFFFFF;
  padding-right: 40px;
  padding-left: 40px;
  padding-bottom: 32px;
}
@media (max-width: 575px) {
  .cid-uCC9IQAXfW .mbr-section-head {
    padding-right: 24px;
    padding-left: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 992px) {
  .cid-uCC9IQAXfW .mbr-section-head {
    padding-right: 60px;
    padding-left: 60px;
  }
}
.cid-uCC9IQAXfW .mbr-section-title {
  color: #000000;
}
.cid-uCC9IQAXfW .mbr-text {
  color: #000000;
}
.cid-uCC9IQAXfW .container-fluid {
  padding: 0;
}
.cid-uCC9IQAXfW .row {
  margin: 0;
}
.cid-uCC9IQAXfW .text-container {
  padding: 40px 24px;
}
@media (min-width: 576px) {
  .cid-uCC9IQAXfW .text-container {
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .cid-uCC9IQAXfW .text-container {
    padding: 60px;
  }
}
.cid-uCC9IQAXfW .image-wrapper {
  padding: 0;
  min-height: 420px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uCC9IQAXfW .image-wrapper {
    height: 420px;
  }
}
.cid-uCC9IQAXfW .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.cid-uCC9IQAXfW .image-wrapper img:hover {
  transform: scale(1.2);
}
.cid-uCC9IQAXfW .img-container {
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .cid-uCC9IQAXfW .img-container {
    max-width: 700px;
    overflow: hidden;
  }
}
.cid-uCC9IQAXfW .item__buttons-container {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-bottom: -16px;
}
.cid-uCC9IQAXfW .item__buttons-container_round {
  align-items: flex-start;
}
.cid-uCC9IQAXfW .btn {
  margin: 0;
}
.cid-uCC9IQAXfW .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-uCC9IQAXfW .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-uCC9IQAXfW .item__button {
  margin: 0;
}
.cid-uCC9IQAXfW .item__button .btn {
  margin-left: 16px;
  margin-bottom: 16px;
}
.cid-uCC9IQAXfW .mbr-section-round-btn .btn {
  min-width: 120px;
  min-height: 120px;
  border-radius: 50%;
  margin: 0 0 16px 32px;
}
@media (max-width: 575px) {
  .cid-uCC9IQAXfW .mbr-section-round-btn .btn {
    min-width: 80px;
    min-height: 80px;
  }
}
.cid-uCC9IQAXfW .mbr-section-round-btn .btn .mbr-iconfont {
  width: 42px;
  height: 42px;
  margin: 0;
  transform: rotate(45deg);
}
.cid-uCC95OYgYE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCC95OYgYE .row {
  position: relative;
}
.cid-uCC95OYgYE .row .blur-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 450px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #dfe8ff 50%, #ffeafd);
  backdrop-filter: blur(10px);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-uCC95OYgYE .row .blur-circle {
    display: none;
  }
}
.cid-uCC95OYgYE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC95OYgYE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC95OYgYE .row {
  justify-content: center;
}
.cid-uCC95OYgYE .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uCC95OYgYE .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uCC95OYgYE .row {
    padding: 0 24px;
  }
}
.cid-uCC95OYgYE .row.row-wrapper {
  padding: 64px;
  background-color: #b5d4ec;
  position: relative;
  z-index: 2;
  border-radius: 16px;
}
.cid-uCC95OYgYE .row.row-wrapper::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: -2rem;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 4px solid #ffeafd;
  background-color: transparent;
  pointer-events: none;
}
@media (max-width: 768px) {
  .cid-uCC95OYgYE .row.row-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uCC95OYgYE .row.row-wrapper .card {
    margin-bottom: 32px;
  }
}
.cid-uCC95OYgYE .row.row-wrapper .card .text-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-uCC95OYgYE .row.row-wrapper .card .text-wrapper {
    margin-bottom: 42px;
  }
}
.cid-uCC95OYgYE .row.row-wrapper .card .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uCC95OYgYE .row.row-wrapper .card .text-wrapper .link-wrapper {
  width: 100%;
  height: 100%;
  transition: all .3s ease;
}
.cid-uCC95OYgYE .row.row-wrapper .card .text-wrapper .link-wrapper:hover {
  opacity: .75;
}
.cid-uCC95OYgYE .row.row-wrapper .card .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  text-decoration: underline;
}
.cid-uCC95OYgYE .row.row-wrapper .card .text-wrapper .mbr-desc {
  margin: 30px 0 0 0;
}
.cid-uCC95OYgYE .row.row-wrapper .card .text-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-uCC95OYgYE .mbr-section-title {
  color: #000000;
}
.cid-uCC95OYgYE .mbr-link {
  color: #f4efe8;
}
.cid-uCC95OYgYE .mbr-desc {
  color: #f4efe8;
}
.cid-uCC95OYgYE .mbr-text {
  color: #f4efe8;
}
.cid-uCC95QxPkC {
  position: relative;
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCC95QxPkC .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCC95QxPkC .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uCC95QxPkC .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uCC95QxPkC .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uCC95QxPkC .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uCC95QxPkC .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCC95RDqrB {
  overflow: visible !important;
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-uCC95RDqrB {
    padding-top: 1.5rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-uCC95RDqrB {
    padding-top: 0.9rem;
    padding-bottom: 0rem;
  }
}
.cid-uCC95RDqrB .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uCC95RDqrB .f-row {
    flex-direction: row;
    min-height: 665px;
  }
}
@media (min-width: 992px) {
  .cid-uCC95RDqrB .image-wrapper {
    transform: translateX(25%);
    min-width: 770px;
    min-height: 500px;
    max-height: 500px;
  }
}
.cid-uCC95RDqrB .image-wrapper img {
  min-height: 100%;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uCC95RDqrB .text {
    min-width: 615px;
    transform: translate(-25%, 4rem);
  }
}
.cid-uCC95RDqrB .text-wrapper {
  background: #fff1e3;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-uCC95RDqrB .text-wrapper {
    padding: 100px 100px 63px;
  }
}
.cid-uCC95RDqrB .mbr-text {
  font-weight: 300;
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uCC95RDqrB .display-1 {
    font-size: 65px;
  }
  .cid-uCC95RDqrB .display-5 {
    font-size: 29px;
  }
}
.cid-uCC95RDqrB .mbr-section-btn {
  background: #fff1e3;
  margin-left: 0;
  margin-right: 0;
}
.cid-uCC95RDqrB .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 72px;
  padding-right: 80px;
  padding-left: 80px;
  margin: 0;
}
.cid-uCC95RDqrB .btn:hover {
  background: #BEE1E6 !important;
  border-color: #BEE1E6 !important;
  color: #18293D !important;
}
.cid-uCC95TQJSh {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCC95TQJSh .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCC95TQJSh .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uCC95TQJSh .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uCC95TQJSh .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uCC95TQJSh .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uCC95TQJSh .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCC95V8yaT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #dfe8ff;
}
.cid-uCC95V8yaT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC95V8yaT .col-12 {
  padding: 0;
}
.cid-uCC95V8yaT .row {
  margin: 0;
}
.cid-uCC95V8yaT .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uCC95V8yaT .card-margin {
    margin-top: -1px;
  }
}
.cid-uCC95V8yaT .card-wrapper {
  min-height: 500px;
  border: 1px solid #000000;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uCC95V8yaT .card-wrapper {
    padding: 1rem;
  }
}
.cid-uCC95V8yaT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC95V8yaT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uCC95V8yaT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uCC95V8yaT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uCC95V8yaT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uCC95V8yaT .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uCC95V8yaT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uCC95V8yaT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uCC95V8yaT .mbr-section-title {
  color: #000000;
}
.cid-uCC95V8yaT .mbr-text,
.cid-uCC95V8yaT .mbr-section-btn {
  color: #221b35;
}
.cid-uCC95WNtVt {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCC95WNtVt .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCC95WNtVt .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uCC95WNtVt .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uCC95WNtVt .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uCC95WNtVt .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uCC95WNtVt .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCLqYZAA79 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #fff1e3;
  position: relative;
}
.cid-uCLqYZAA79 .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff1e3;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCLqYZAA79 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLqYZAA79 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCLqYZAA79 .col-title {
    margin-bottom: 7vw;
  }
}
@media (max-width: 767px) {
  .cid-uCLqYZAA79 .col-title {
    margin-bottom: 9vw;
  }
}
.cid-uCLqYZAA79 .mbr-section-title {
  color: #000000;
  margin-bottom: 1rem;
}
.cid-uCLqYZAA79 .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 0;
}
.cid-uCLqYZAA79 .toggle-panel {
  border-top: 1px solid #000000;
}
.cid-uCLqYZAA79 .card {
  padding-bottom: 0;
  border-radius: 0;
  border-bottom: 1px solid #000000;
}
.cid-uCLqYZAA79 .card-header {
  background-color: transparent;
  margin-bottom: 0;
  padding: 0;
  border-bottom: none !important;
}
.cid-uCLqYZAA79 .sign {
  font-family: 'Moririse2' !important;
  padding: 10px;
  font-size: 18px;
  border-radius: 50%;
  color: #000000;
  border: 1px solid #000000;
  transition: 0.3s all;
  animation: icon-move-out 0.2s ease-out;
}
@media (max-width: 991px) {
  .cid-uCLqYZAA79 .sign {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    width: 7.3vw;
    font-size: 3.7vw;
    aspect-ratio: 1;
  }
}
@media (max-width: 767px) {
  .cid-uCLqYZAA79 .sign {
    width: 8.53vw;
    font-size: 4.3vw;
  }
}
.cid-uCLqYZAA79 .panel-title-edit {
  color: #000000;
  padding-right: 1rem;
  transition: .3s all;
}
.cid-uCLqYZAA79 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  transition: .4s all;
}
@media (max-width: 991px) {
  .cid-uCLqYZAA79 .panel-title {
    padding: 5vw 0;
  }
}
@media (max-width: 767px) {
  .cid-uCLqYZAA79 .panel-title {
    padding: 6.4vw 0;
  }
}
.cid-uCLqYZAA79 .panel-title[aria-expanded="false"] .sign:hover {
  animation: icon-move 0.8s forwards;
}
.cid-uCLqYZAA79 .panel-title[aria-expanded="true"] .sign {
  transform: rotate(135deg);
}
.cid-uCLqYZAA79 .panel-text {
  color: #FFFFFF;
  margin-bottom: 36px;
  max-width: 80%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uCLqYZAA79 .panel-text {
    margin-bottom: 5vw;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uCLqYZAA79 .panel-text {
    margin-bottom: 6.4vw;
  }
}
@keyframes icon-move {
  0% {
    transform: translate3d(0, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: transform;
  }
  80% {
    transform: translate3d(0, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(360deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0, 0%, 0px) scale3d(1.2, 1.2, 1) rotateX(0deg) rotateY(0deg) rotateZ(360deg) skew(0deg, 0deg);
    will-change: auto;
  }
}
@keyframes icon-move-out {
  0% {
    transform: translate3d(0, 0%, 0px) scale3d(1.2, 1.2, 1) rotateX(0deg) rotateY(0deg) rotateZ(0) skew(0deg, 0deg);
    will-change: transform;
  }
  100% {
    transform: translate3d(0, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0) skew(0deg, 0deg);
    will-change: auto;
  }
}
.cid-uCC95ZOXPN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uCC95ZOXPN .content {
    max-width: 600px;
    margin: auto;
  }
}
@media (min-width: 767px) {
  .cid-uCC95ZOXPN .content {
    padding: 0 2rem;
  }
}
.cid-uCC95ZOXPN .img-col {
  padding: 0;
  margin: auto 0;
}
@media (max-width: 992px) {
  .cid-uCC95ZOXPN .content {
    margin: auto;
  }
}
.cid-uCC95ZOXPN li {
  list-style: none;
}
.cid-uCC95ZOXPN .item-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.cid-uCC95ZOXPN .item-wrap:hover .mbr-iconfont {
  color: #181818 !important;
}
.cid-uCC95ZOXPN .mbr-iconfont {
  font-size: 18px !important;
  padding-right: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 900;
  color: #ffffff !important;
}
.cid-uCC95ZOXPN h4 {
  margin: 0;
}
.cid-uCC95ZOXPN ul {
  padding: 0;
  margin: 0;
}
.cid-uCC95ZOXPN H2 {
  color: #ed6436;
}
.cid-uCC95ZOXPN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC95ZOXPN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC961n4zE {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e3;
}
.cid-uCC961n4zE .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff1e3;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCC961n4zE .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uCC961n4zE .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uCC961n4zE .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uCC961n4zE .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uCC961n4zE .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCCcc0Pm9i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCCcc0Pm9i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCcc0Pm9i .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-uCCcc0Pm9i .container {
    padding: 0 30px;
  }
}
.cid-uCCcc0Pm9i .row {
  justify-content: center;
}
.cid-uCCcc0Pm9i .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCCcc0Pm9i .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCCcc0Pm9i .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #000000;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-uCCcc0Pm9i .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-uCCcc0Pm9i .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uCCcc0Pm9i .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uCCcc0Pm9i .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uCCcc0Pm9i .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #fff1e3;
  background-color: #000000;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-uCCcc0Pm9i .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uCCcc0Pm9i .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-uCCcc0Pm9i .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uCCcc0Pm9i .mbr-section-title {
  color: #000000;
}
.cid-uCCcc0Pm9i .panel-title-edit {
  color: #000000;
}
.cid-uCCcc0Pm9i .panel-text {
  color: #000000;
}
.cid-uCC963021w {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uCC963021w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC963021w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCC963021w .google-map {
  height: 30rem;
  position: relative;
}
.cid-uCC963021w .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uCC963021w .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-uCC963021w .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uCC963021w .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uCC964skFn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #dfe8ff;
  overflow: hidden;
}
.cid-uCC964skFn::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #fff1e3 50%);
  z-index: 1;
}
.cid-uCC964skFn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCC964skFn .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-uCC964skFn .container {
    padding: 0 22px;
  }
}
.cid-uCC964skFn .row {
  position: relative;
  z-index: 1;
}
.cid-uCC964skFn .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uCC964skFn .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uCC964skFn .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uCC964skFn .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uCC964skFn .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCC964skFn .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uCC964skFn .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uCC964skFn .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uCC964skFn .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uCC964skFn .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uCC964skFn .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uCC964skFn .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uCC964skFn .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uCC964skFn .nav-wrapper .list .item-wrap:hover,
.cid-uCC964skFn .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uCC964skFn .nav-wrapper .list .item-wrap:hover::before,
.cid-uCC964skFn .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uCC964skFn .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCC964skFn .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCC964skFn .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uCC964skFn .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uCC964skFn .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uCC964skFn .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uCC964skFn .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uCC964skFn .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uCC964skFn .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uCC964skFn .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uCC964skFn .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uCC964skFn .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uCC964skFn .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCC964skFn .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCC964skFn .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uCC964skFn .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uCC964skFn .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uCC964skFn .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uCC964skFn .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uCC964skFn .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uCC964skFn .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uCC964skFn .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uCC964skFn .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCC964skFn .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCC964skFn .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uCC964skFn .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uCC964skFn .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #000000;
  text-align: center;
}
.cid-uCC964skFn .mbr-section-title {
  color: #000000;
}
.cid-uCC964skFn .mbr-text {
  color: #ffffff;
}
.cid-uCC964skFn .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uCC964skFn .list {
  color: #ffffff;
}
.cid-uCC964skFn .mbr-contact {
  color: #ffffff;
}
.cid-uCC964skFn .mbr-desc {
  color: #ffffff;
}
.cid-uCC964skFn .mbr-contact,
.cid-uCC964skFn .item-contact {
  color: #000000;
}
.cid-uCC964skFn .list,
.cid-uCC964skFn .item-wrap {
  color: #000000;
}
.cid-uCCctChsx0 {
  border-bottom: 3px solid #000000;
  background-image: url("../../../assets/images/308629233-600999391473660-5767289493369648124-n-2000x1500.jpg");
}
.cid-uCCctChsx0 .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  width: auto;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-uCCctChsx0 .card-wrapper {
    margin-top: 2rem !important;
    padding: 0;
  }
  .cid-uCCctChsx0 .back {
    width: auto;
    height: 100%;
  }
}
.cid-uCCctChsx0 .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-uCCctChsx0 .mbr-section-btn {
    margin-left: .5rem;
    margin-right: 1rem;
  }
}
@media (min-width: 991px) {
  .cid-uCCctChsx0 .mbr-section-btn {
    margin-left: .5rem;
  }
}
.cid-uCCctChsx0 .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uCCctChsx0 .btn:hover,
.cid-uCCctChsx0 .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-uCCctChsx0 .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-uCCctChsx0 .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uCCctChsx0 .btn:hover:before,
.cid-uCCctChsx0 .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-uCCctChsx0 .btn-secondary {
  color: #000000 !important;
}
.cid-uCCctChsx0 .btn-secondary:hover {
  color: #000000 !important;
}
.cid-uCCctChsx0 .card-title {
  text-align: right;
  color: #000000;
}
.cid-uCCctChsx0 .mbr-text,
.cid-uCCctChsx0 .mbr-section-btn {
  text-align: right;
  color: #000000;
}
.cid-uCCctChsx0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCctChsx0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCCctEwt1e {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCCctEwt1e .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCctEwt1e .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-uCCctEwt1e .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uCCctEwt1e .container {
    padding: 0 12px;
  }
}
.cid-uCCctEwt1e .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCCctEwt1e .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #000000;
}
.cid-uCCctEwt1e .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uCCctEwt1e .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffeafd;
  background-color: #000000;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uCCctEwt1e .mbr-section-title {
  color: #222222;
}
.cid-uCCctG698y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #b5d4ec;
}
.cid-uCCctG698y .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uCCctG698y .content_wrapper:hover .mbr-section-title a {
  color: #ede7e2 !important;
}
.cid-uCCctG698y .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uCCctG698y .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uCCctG698y .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uCCctG698y .mbr-section-btn .btn-secondary-outline:hover,
.cid-uCCctG698y .mbr-section-btn .btn-secondary-outline .active,
.cid-uCCctG698y .mbr-section-btn .btn-secondary-outline:focus {
  color: #000000 !important;
}
.cid-uCCctG698y .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uCCctG698y .image_post {
  display: inline-block;
}
.cid-uCCctG698y .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uCCctG698y .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uCCctHuhEp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff1e3;
}
.cid-uCCctHuhEp .mbr-section-head {
  border-bottom: 1px solid #FFFFFF;
  padding-right: 40px;
  padding-left: 40px;
  padding-bottom: 32px;
}
@media (max-width: 575px) {
  .cid-uCCctHuhEp .mbr-section-head {
    padding-right: 24px;
    padding-left: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 992px) {
  .cid-uCCctHuhEp .mbr-section-head {
    padding-right: 60px;
    padding-left: 60px;
  }
}
.cid-uCCctHuhEp .mbr-section-title {
  color: #000000;
}
.cid-uCCctHuhEp .mbr-text {
  color: #000000;
}
.cid-uCCctHuhEp .container-fluid {
  padding: 0;
}
.cid-uCCctHuhEp .row {
  margin: 0;
}
.cid-uCCctHuhEp .text-container {
  padding: 40px 24px;
}
@media (min-width: 576px) {
  .cid-uCCctHuhEp .text-container {
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .cid-uCCctHuhEp .text-container {
    padding: 60px;
  }
}
.cid-uCCctHuhEp .image-wrapper {
  padding: 0;
  min-height: 420px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uCCctHuhEp .image-wrapper {
    height: 420px;
  }
}
.cid-uCCctHuhEp .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.cid-uCCctHuhEp .image-wrapper img:hover {
  transform: scale(1.2);
}
.cid-uCCctHuhEp .img-container {
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .cid-uCCctHuhEp .img-container {
    max-width: 700px;
    overflow: hidden;
  }
}
.cid-uCCctHuhEp .item__buttons-container {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-bottom: -16px;
}
.cid-uCCctHuhEp .item__buttons-container_round {
  align-items: flex-start;
}
.cid-uCCctHuhEp .btn {
  margin: 0;
}
.cid-uCCctHuhEp .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-uCCctHuhEp .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-uCCctHuhEp .item__button {
  margin: 0;
}
.cid-uCCctHuhEp .item__button .btn {
  margin-left: 16px;
  margin-bottom: 16px;
}
.cid-uCCctHuhEp .mbr-section-round-btn .btn {
  min-width: 120px;
  min-height: 120px;
  border-radius: 50%;
  margin: 0 0 16px 32px;
}
@media (max-width: 575px) {
  .cid-uCCctHuhEp .mbr-section-round-btn .btn {
    min-width: 80px;
    min-height: 80px;
  }
}
.cid-uCCctHuhEp .mbr-section-round-btn .btn .mbr-iconfont {
  width: 42px;
  height: 42px;
  margin: 0;
  transform: rotate(45deg);
}
.cid-uCCctJ3fOH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCCctJ3fOH .row {
  position: relative;
}
.cid-uCCctJ3fOH .row .blur-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 450px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #dfe8ff 50%, #ffeafd);
  backdrop-filter: blur(10px);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-uCCctJ3fOH .row .blur-circle {
    display: none;
  }
}
.cid-uCCctJ3fOH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCctJ3fOH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCCctJ3fOH .row {
  justify-content: center;
}
.cid-uCCctJ3fOH .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uCCctJ3fOH .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uCCctJ3fOH .row {
    padding: 0 24px;
  }
}
.cid-uCCctJ3fOH .row.row-wrapper {
  padding: 64px;
  background-color: #b5d4ec;
  position: relative;
  z-index: 2;
  border-radius: 16px;
}
.cid-uCCctJ3fOH .row.row-wrapper::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: -2rem;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 4px solid #ffeafd;
  background-color: transparent;
  pointer-events: none;
}
@media (max-width: 768px) {
  .cid-uCCctJ3fOH .row.row-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uCCctJ3fOH .row.row-wrapper .card {
    margin-bottom: 32px;
  }
}
.cid-uCCctJ3fOH .row.row-wrapper .card .text-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-uCCctJ3fOH .row.row-wrapper .card .text-wrapper {
    margin-bottom: 42px;
  }
}
.cid-uCCctJ3fOH .row.row-wrapper .card .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uCCctJ3fOH .row.row-wrapper .card .text-wrapper .link-wrapper {
  width: 100%;
  height: 100%;
  transition: all .3s ease;
}
.cid-uCCctJ3fOH .row.row-wrapper .card .text-wrapper .link-wrapper:hover {
  opacity: .75;
}
.cid-uCCctJ3fOH .row.row-wrapper .card .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  text-decoration: underline;
}
.cid-uCCctJ3fOH .row.row-wrapper .card .text-wrapper .mbr-desc {
  margin: 30px 0 0 0;
}
.cid-uCCctJ3fOH .row.row-wrapper .card .text-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-uCCctJ3fOH .mbr-section-title {
  color: #000000;
}
.cid-uCCctJ3fOH .mbr-link {
  color: #f4efe8;
}
.cid-uCCctJ3fOH .mbr-desc {
  color: #f4efe8;
}
.cid-uCCctJ3fOH .mbr-text {
  color: #f4efe8;
}
.cid-uCCctR3832 {
  position: relative;
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCCctR3832 .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCCctR3832 .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uCCctR3832 .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uCCctR3832 .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uCCctR3832 .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uCCctR3832 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCCctU627p {
  overflow: visible !important;
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-uCCctU627p {
    padding-top: 1.5rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-uCCctU627p {
    padding-top: 0.9rem;
    padding-bottom: 0rem;
  }
}
.cid-uCCctU627p .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uCCctU627p .f-row {
    flex-direction: row;
    min-height: 665px;
  }
}
@media (min-width: 992px) {
  .cid-uCCctU627p .image-wrapper {
    transform: translateX(25%);
    min-width: 770px;
    min-height: 500px;
    max-height: 500px;
  }
}
.cid-uCCctU627p .image-wrapper img {
  min-height: 100%;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uCCctU627p .text {
    min-width: 615px;
    transform: translate(-25%, 4rem);
  }
}
.cid-uCCctU627p .text-wrapper {
  background: #fff1e3;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-uCCctU627p .text-wrapper {
    padding: 100px 100px 63px;
  }
}
.cid-uCCctU627p .mbr-text {
  font-weight: 300;
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uCCctU627p .display-1 {
    font-size: 65px;
  }
  .cid-uCCctU627p .display-5 {
    font-size: 29px;
  }
}
.cid-uCCctU627p .mbr-section-btn {
  background: #fff1e3;
  margin-left: 0;
  margin-right: 0;
}
.cid-uCCctU627p .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 72px;
  padding-right: 80px;
  padding-left: 80px;
  margin: 0;
}
.cid-uCCctU627p .btn:hover {
  background: #BEE1E6 !important;
  border-color: #BEE1E6 !important;
  color: #18293D !important;
}
.cid-uCCctWy4be {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCCctWy4be .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCCctWy4be .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uCCctWy4be .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uCCctWy4be .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uCCctWy4be .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uCCctWy4be .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCCctY3UYz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #dfe8ff;
}
.cid-uCCctY3UYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCctY3UYz .col-12 {
  padding: 0;
}
.cid-uCCctY3UYz .row {
  margin: 0;
}
.cid-uCCctY3UYz .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uCCctY3UYz .card-margin {
    margin-top: -1px;
  }
}
.cid-uCCctY3UYz .card-wrapper {
  min-height: 500px;
  border: 1px solid #000000;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uCCctY3UYz .card-wrapper {
    padding: 1rem;
  }
}
.cid-uCCctY3UYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCCctY3UYz .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uCCctY3UYz .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uCCctY3UYz .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uCCctY3UYz .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uCCctY3UYz .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uCCctY3UYz .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uCCctY3UYz .image-wrapper {
    padding: 1rem;
  }
}
.cid-uCCctY3UYz .mbr-section-title {
  color: #000000;
}
.cid-uCCctY3UYz .mbr-text,
.cid-uCCctY3UYz .mbr-section-btn {
  color: #221b35;
}
.cid-uCCcu03jxp {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCCcu03jxp .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCCcu03jxp .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uCCcu03jxp .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uCCcu03jxp .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uCCcu03jxp .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uCCcu03jxp .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCLr3fEQCB {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #fff1e3;
  position: relative;
}
.cid-uCLr3fEQCB .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff1e3;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCLr3fEQCB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLr3fEQCB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCLr3fEQCB .col-title {
    margin-bottom: 7vw;
  }
}
@media (max-width: 767px) {
  .cid-uCLr3fEQCB .col-title {
    margin-bottom: 9vw;
  }
}
.cid-uCLr3fEQCB .mbr-section-title {
  color: #000000;
  margin-bottom: 1rem;
}
.cid-uCLr3fEQCB .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 0;
}
.cid-uCLr3fEQCB .toggle-panel {
  border-top: 1px solid #000000;
}
.cid-uCLr3fEQCB .card {
  padding-bottom: 0;
  border-radius: 0;
  border-bottom: 1px solid #000000;
}
.cid-uCLr3fEQCB .card-header {
  background-color: transparent;
  margin-bottom: 0;
  padding: 0;
  border-bottom: none !important;
}
.cid-uCLr3fEQCB .sign {
  font-family: 'Moririse2' !important;
  padding: 10px;
  font-size: 18px;
  border-radius: 50%;
  color: #000000;
  border: 1px solid #000000;
  transition: 0.3s all;
  animation: icon-move-out 0.2s ease-out;
}
@media (max-width: 991px) {
  .cid-uCLr3fEQCB .sign {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    width: 7.3vw;
    font-size: 3.7vw;
    aspect-ratio: 1;
  }
}
@media (max-width: 767px) {
  .cid-uCLr3fEQCB .sign {
    width: 8.53vw;
    font-size: 4.3vw;
  }
}
.cid-uCLr3fEQCB .panel-title-edit {
  color: #000000;
  padding-right: 1rem;
  transition: .3s all;
}
.cid-uCLr3fEQCB .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  transition: .4s all;
}
@media (max-width: 991px) {
  .cid-uCLr3fEQCB .panel-title {
    padding: 5vw 0;
  }
}
@media (max-width: 767px) {
  .cid-uCLr3fEQCB .panel-title {
    padding: 6.4vw 0;
  }
}
.cid-uCLr3fEQCB .panel-title[aria-expanded="false"] .sign:hover {
  animation: icon-move 0.8s forwards;
}
.cid-uCLr3fEQCB .panel-title[aria-expanded="true"] .sign {
  transform: rotate(135deg);
}
.cid-uCLr3fEQCB .panel-text {
  color: #FFFFFF;
  margin-bottom: 36px;
  max-width: 80%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uCLr3fEQCB .panel-text {
    margin-bottom: 5vw;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uCLr3fEQCB .panel-text {
    margin-bottom: 6.4vw;
  }
}
@keyframes icon-move {
  0% {
    transform: translate3d(0, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: transform;
  }
  80% {
    transform: translate3d(0, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(360deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0, 0%, 0px) scale3d(1.2, 1.2, 1) rotateX(0deg) rotateY(0deg) rotateZ(360deg) skew(0deg, 0deg);
    will-change: auto;
  }
}
@keyframes icon-move-out {
  0% {
    transform: translate3d(0, 0%, 0px) scale3d(1.2, 1.2, 1) rotateX(0deg) rotateY(0deg) rotateZ(0) skew(0deg, 0deg);
    will-change: transform;
  }
  100% {
    transform: translate3d(0, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0) skew(0deg, 0deg);
    will-change: auto;
  }
}
.cid-uCCcu4qV75 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uCCcu4qV75 .content {
    max-width: 600px;
    margin: auto;
  }
}
@media (min-width: 767px) {
  .cid-uCCcu4qV75 .content {
    padding: 0 2rem;
  }
}
.cid-uCCcu4qV75 .img-col {
  padding: 0;
  margin: auto 0;
}
@media (max-width: 992px) {
  .cid-uCCcu4qV75 .content {
    margin: auto;
  }
}
.cid-uCCcu4qV75 li {
  list-style: none;
}
.cid-uCCcu4qV75 .item-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.cid-uCCcu4qV75 .item-wrap:hover .mbr-iconfont {
  color: #181818 !important;
}
.cid-uCCcu4qV75 .mbr-iconfont {
  font-size: 18px !important;
  padding-right: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 900;
  color: #ffffff !important;
}
.cid-uCCcu4qV75 h4 {
  margin: 0;
}
.cid-uCCcu4qV75 ul {
  padding: 0;
  margin: 0;
}
.cid-uCCcu4qV75 H2 {
  color: #ed6436;
}
.cid-uCCcu4qV75 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCcu4qV75 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCCv5NYRWm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCCv5NYRWm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCv5NYRWm .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-uCCv5NYRWm .container {
    padding: 0 20px;
  }
}
.cid-uCCv5NYRWm .row {
  margin: 0;
}
.cid-uCCv5NYRWm .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uCCv5NYRWm .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uCCv5NYRWm .video-block .video-wrapper .app-video-wrapper::before {
  color: #f5fd7b;
  text-shadow: none;
}
.cid-uCCv5NYRWm .video-block .video-wrapper .app-video-wrapper img {
  object-fit: cover;
  height: 500px;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .cid-uCCv5NYRWm .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uCCv5NYRWm .video-block .video-wrapper iframe {
  border-radius: 50px;
}
.cid-uCCv5NYRWm .mbr-section-title {
  color: #ffffff;
}
.cid-uCCcu6y4iS {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e3;
}
.cid-uCCcu6y4iS .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff1e3;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCCcu6y4iS .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uCCcu6y4iS .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uCCcu6y4iS .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uCCcu6y4iS .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uCCcu6y4iS .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCCcu8AMjI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCCcu8AMjI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCcu8AMjI .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-uCCcu8AMjI .container {
    padding: 0 30px;
  }
}
.cid-uCCcu8AMjI .row {
  justify-content: center;
}
.cid-uCCcu8AMjI .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCCcu8AMjI .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCCcu8AMjI .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #000000;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-uCCcu8AMjI .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-uCCcu8AMjI .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uCCcu8AMjI .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uCCcu8AMjI .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uCCcu8AMjI .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #fff1e3;
  background-color: #000000;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-uCCcu8AMjI .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uCCcu8AMjI .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-uCCcu8AMjI .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uCCcu8AMjI .mbr-section-title {
  color: #000000;
}
.cid-uCCcu8AMjI .panel-title-edit {
  color: #000000;
}
.cid-uCCcu8AMjI .panel-text {
  color: #000000;
}
.cid-uCCcuau2kb {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uCCcuau2kb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCcuau2kb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCCcuau2kb .google-map {
  height: 30rem;
  position: relative;
}
.cid-uCCcuau2kb .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uCCcuau2kb .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-uCCcuau2kb .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uCCcuau2kb .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uCCcucxoIh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #dfe8ff;
  overflow: hidden;
}
.cid-uCCcucxoIh::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #fff1e3 50%);
  z-index: 1;
}
.cid-uCCcucxoIh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCcucxoIh .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-uCCcucxoIh .container {
    padding: 0 22px;
  }
}
.cid-uCCcucxoIh .row {
  position: relative;
  z-index: 1;
}
.cid-uCCcucxoIh .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uCCcucxoIh .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uCCcucxoIh .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uCCcucxoIh .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uCCcucxoIh .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCCcucxoIh .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uCCcucxoIh .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uCCcucxoIh .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uCCcucxoIh .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uCCcucxoIh .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uCCcucxoIh .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uCCcucxoIh .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uCCcucxoIh .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uCCcucxoIh .nav-wrapper .list .item-wrap:hover,
.cid-uCCcucxoIh .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uCCcucxoIh .nav-wrapper .list .item-wrap:hover::before,
.cid-uCCcucxoIh .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uCCcucxoIh .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCCcucxoIh .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCCcucxoIh .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uCCcucxoIh .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uCCcucxoIh .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uCCcucxoIh .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uCCcucxoIh .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uCCcucxoIh .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uCCcucxoIh .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uCCcucxoIh .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uCCcucxoIh .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uCCcucxoIh .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uCCcucxoIh .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCCcucxoIh .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCCcucxoIh .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uCCcucxoIh .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uCCcucxoIh .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uCCcucxoIh .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uCCcucxoIh .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uCCcucxoIh .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uCCcucxoIh .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uCCcucxoIh .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uCCcucxoIh .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCCcucxoIh .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCCcucxoIh .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uCCcucxoIh .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uCCcucxoIh .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #000000;
  text-align: center;
}
.cid-uCCcucxoIh .mbr-section-title {
  color: #000000;
}
.cid-uCCcucxoIh .mbr-text {
  color: #ffffff;
}
.cid-uCCcucxoIh .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uCCcucxoIh .list {
  color: #ffffff;
}
.cid-uCCcucxoIh .mbr-contact {
  color: #ffffff;
}
.cid-uCCcucxoIh .mbr-desc {
  color: #ffffff;
}
.cid-uCCcucxoIh .mbr-contact,
.cid-uCCcucxoIh .item-contact {
  color: #000000;
}
.cid-uCCcucxoIh .list,
.cid-uCCcucxoIh .item-wrap {
  color: #000000;
}
.cid-uCClcaAsOu .navbar-dropdown {
  position: relative !important;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCClcaAsOu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCClcaAsOu .dropdown-item:hover,
.cid-uCClcaAsOu .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uCClcaAsOu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCClcaAsOu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCClcaAsOu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
  color: #000;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCClcaAsOu .nav-link {
  position: relative;
}
.cid-uCClcaAsOu .container {
  display: flex;
  margin: auto;
}
.cid-uCClcaAsOu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCClcaAsOu .dropdown-menu,
.cid-uCClcaAsOu .navbar.opened {
  background: #ffffff !important;
}
.cid-uCClcaAsOu .nav-item:focus,
.cid-uCClcaAsOu .nav-link:focus {
  outline: none;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCClcaAsOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCClcaAsOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCClcaAsOu .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: #ffffff;
}
.cid-uCClcaAsOu .navbar.opened {
  transition: all 0.3s;
}
.cid-uCClcaAsOu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCClcaAsOu .navbar .navbar-logo img {
  width: auto;
}
.cid-uCClcaAsOu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCClcaAsOu .navbar.collapsed {
  justify-content: center;
}
.cid-uCClcaAsOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCClcaAsOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCClcaAsOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCClcaAsOu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCClcaAsOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCClcaAsOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCClcaAsOu .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-uCClcaAsOu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCClcaAsOu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCClcaAsOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCClcaAsOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCClcaAsOu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uCClcaAsOu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCClcaAsOu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCClcaAsOu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCClcaAsOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCClcaAsOu .dropdown-item.active,
.cid-uCClcaAsOu .dropdown-item:active {
  background-color: transparent;
}
.cid-uCClcaAsOu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCClcaAsOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCClcaAsOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCClcaAsOu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCClcaAsOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCClcaAsOu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCClcaAsOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCClcaAsOu .navbar-dropdown {
  padding: .7rem 1rem;
}
.cid-uCClcaAsOu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar {
    height: 70px;
  }
  .cid-uCClcaAsOu .navbar.opened {
    height: auto;
  }
  .cid-uCClcaAsOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCCeomJ8qV {
  border-bottom: 3px solid #000000;
  background-image: url("../../../assets/images/448430397-985182636945529-5024546739829030259-n-960x675.jpg");
}
.cid-uCCeomJ8qV .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  width: auto;
  height: 100%;
}
@media (max-width: 991px) {
  .cid-uCCeomJ8qV .card-wrapper {
    margin-top: 2rem !important;
    padding: 0;
  }
  .cid-uCCeomJ8qV .back {
    width: auto;
    height: 100%;
  }
}
.cid-uCCeomJ8qV .mbr-section-btn {
  position: relative;
}
@media (max-width: 991px) {
  .cid-uCCeomJ8qV .mbr-section-btn {
    margin-left: .5rem;
    margin-right: 1rem;
  }
}
@media (min-width: 991px) {
  .cid-uCCeomJ8qV .mbr-section-btn {
    margin-left: .5rem;
  }
}
.cid-uCCeomJ8qV .btn {
  position: relative;
  min-width: 225px;
  min-height: 54px;
  z-index: 10;
  font-weight: 700;
  border: 3px solid #000000 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  padding-left: 40px;
  padding-right: 40px;
  transform: translate(0, -9px);
  transition: all 400ms ease;
  -webkit-box-shadow: preserve-3d;
  -moz-box-shadow: preserve-3d;
  transform-style: preserve-3d;
}
.cid-uCCeomJ8qV .btn:hover,
.cid-uCCeomJ8qV .btn:focus {
  border: 3px solid #000000 !important;
  transform: translate(10px, 0);
}
@media (max-width: 991px) {
  .cid-uCCeomJ8qV .btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-uCCeomJ8qV .btn:before {
  position: absolute;
  content: "";
  width: 101%;
  height: 107%;
  top: 10px;
  left: 12px;
  border: 3px solid #000;
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-box-shadow: translateZ(-1px);
  -moz-box-shadow: translateZ(-1px);
  transform: translateZ(-1px);
}
.cid-uCCeomJ8qV .btn:hover:before,
.cid-uCCeomJ8qV .btn:focus:before {
  left: -1px;
  top: -2px;
}
.cid-uCCeomJ8qV .btn-secondary {
  color: #000000 !important;
}
.cid-uCCeomJ8qV .btn-secondary:hover {
  color: #000000 !important;
}
.cid-uCCeomJ8qV .card-title {
  text-align: right;
  color: #000000;
}
.cid-uCCeomJ8qV .mbr-text,
.cid-uCCeomJ8qV .mbr-section-btn {
  text-align: right;
  color: #000000;
}
.cid-uCCeomJ8qV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCeomJ8qV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCCeooU7hm {
  padding-top: 9rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCCeooU7hm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCeooU7hm .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-uCCeooU7hm .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uCCeooU7hm .container {
    padding: 0 12px;
  }
}
.cid-uCCeooU7hm .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uCCeooU7hm .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #000000;
}
.cid-uCCeooU7hm .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uCCeooU7hm .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "✓";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffeafd;
  background-color: #000000;
  width: 22px;
  height: 22px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uCCeooU7hm .mbr-section-title {
  color: #222222;
}
.cid-uCCeoqA5R0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #b5d4ec;
}
.cid-uCCeoqA5R0 .content_wrapper {
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  z-index: 1;
}
.cid-uCCeoqA5R0 .content_wrapper:hover .mbr-section-title a {
  color: #ede7e2 !important;
}
.cid-uCCeoqA5R0 .mbr-section-title {
  margin-bottom: 12px;
}
.cid-uCCeoqA5R0 .icon_wrapper .mbr-iconfont {
  font-size: 140px;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  color: #fef2ed;
  top: 2%;
  right: 13%;
}
.cid-uCCeoqA5R0 .mbr-section-btn .btn-secondary-outline {
  padding: 3px 0;
  border: none !important;
  background-color: transparent !important;
}
.cid-uCCeoqA5R0 .mbr-section-btn .btn-secondary-outline:hover,
.cid-uCCeoqA5R0 .mbr-section-btn .btn-secondary-outline .active,
.cid-uCCeoqA5R0 .mbr-section-btn .btn-secondary-outline:focus {
  color: #000000 !important;
}
.cid-uCCeoqA5R0 .card_post {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.cid-uCCeoqA5R0 .image_post {
  display: inline-block;
}
.cid-uCCeoqA5R0 .image_post img {
  object-fit: cover;
  height: 50px;
  width: 50px;
  min-width: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
  border-radius: 50%;
}
.cid-uCCeoqA5R0 .author_post {
  display: inline-block;
  margin-left: 15px;
}
.cid-uCCeoshf6H {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff1e3;
}
.cid-uCCeoshf6H .mbr-section-head {
  border-bottom: 1px solid #FFFFFF;
  padding-right: 40px;
  padding-left: 40px;
  padding-bottom: 32px;
}
@media (max-width: 575px) {
  .cid-uCCeoshf6H .mbr-section-head {
    padding-right: 24px;
    padding-left: 24px;
    padding-bottom: 24px;
  }
}
@media (min-width: 992px) {
  .cid-uCCeoshf6H .mbr-section-head {
    padding-right: 60px;
    padding-left: 60px;
  }
}
.cid-uCCeoshf6H .mbr-section-title {
  color: #000000;
}
.cid-uCCeoshf6H .mbr-text {
  color: #000000;
}
.cid-uCCeoshf6H .container-fluid {
  padding: 0;
}
.cid-uCCeoshf6H .row {
  margin: 0;
}
.cid-uCCeoshf6H .text-container {
  padding: 40px 24px;
}
@media (min-width: 576px) {
  .cid-uCCeoshf6H .text-container {
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .cid-uCCeoshf6H .text-container {
    padding: 60px;
  }
}
.cid-uCCeoshf6H .image-wrapper {
  padding: 0;
  min-height: 420px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-uCCeoshf6H .image-wrapper {
    height: 420px;
  }
}
.cid-uCCeoshf6H .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.cid-uCCeoshf6H .image-wrapper img:hover {
  transform: scale(1.2);
}
.cid-uCCeoshf6H .img-container {
  width: 100%;
  height: 100%;
}
@media (min-width: 992px) {
  .cid-uCCeoshf6H .img-container {
    max-width: 700px;
    overflow: hidden;
  }
}
.cid-uCCeoshf6H .item__buttons-container {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-bottom: -16px;
}
.cid-uCCeoshf6H .item__buttons-container_round {
  align-items: flex-start;
}
.cid-uCCeoshf6H .btn {
  margin: 0;
}
.cid-uCCeoshf6H .btn-info-outline {
  border: 1px solid currentColor;
}
.cid-uCCeoshf6H .btn-info-outline:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1px solid currentColor !important;
}
.cid-uCCeoshf6H .item__button {
  margin: 0;
}
.cid-uCCeoshf6H .item__button .btn {
  margin-left: 16px;
  margin-bottom: 16px;
}
.cid-uCCeoshf6H .mbr-section-round-btn .btn {
  min-width: 120px;
  min-height: 120px;
  border-radius: 50%;
  margin: 0 0 16px 32px;
}
@media (max-width: 575px) {
  .cid-uCCeoshf6H .mbr-section-round-btn .btn {
    min-width: 80px;
    min-height: 80px;
  }
}
.cid-uCCeoshf6H .mbr-section-round-btn .btn .mbr-iconfont {
  width: 42px;
  height: 42px;
  margin: 0;
  transform: rotate(45deg);
}
.cid-uCCeou5BxG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCCeou5BxG .row {
  position: relative;
}
.cid-uCCeou5BxG .row .blur-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 450px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #dfe8ff 50%, #ffeafd);
  backdrop-filter: blur(10px);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-uCCeou5BxG .row .blur-circle {
    display: none;
  }
}
.cid-uCCeou5BxG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCeou5BxG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCCeou5BxG .row {
  justify-content: center;
}
.cid-uCCeou5BxG .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uCCeou5BxG .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uCCeou5BxG .row {
    padding: 0 24px;
  }
}
.cid-uCCeou5BxG .row.row-wrapper {
  padding: 64px;
  background-color: #b5d4ec;
  position: relative;
  z-index: 2;
  border-radius: 16px;
}
.cid-uCCeou5BxG .row.row-wrapper::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: -2rem;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 4px solid #ffeafd;
  background-color: transparent;
  pointer-events: none;
}
@media (max-width: 768px) {
  .cid-uCCeou5BxG .row.row-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uCCeou5BxG .row.row-wrapper .card {
    margin-bottom: 32px;
  }
}
.cid-uCCeou5BxG .row.row-wrapper .card .text-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-uCCeou5BxG .row.row-wrapper .card .text-wrapper {
    margin-bottom: 42px;
  }
}
.cid-uCCeou5BxG .row.row-wrapper .card .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uCCeou5BxG .row.row-wrapper .card .text-wrapper .link-wrapper {
  width: 100%;
  height: 100%;
  transition: all .3s ease;
}
.cid-uCCeou5BxG .row.row-wrapper .card .text-wrapper .link-wrapper:hover {
  opacity: .75;
}
.cid-uCCeou5BxG .row.row-wrapper .card .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  text-decoration: underline;
}
.cid-uCCeou5BxG .row.row-wrapper .card .text-wrapper .mbr-desc {
  margin: 30px 0 0 0;
}
.cid-uCCeou5BxG .row.row-wrapper .card .text-wrapper .mbr-text {
  margin: 30px 0 0 0;
}
.cid-uCCeou5BxG .mbr-section-title {
  color: #000000;
}
.cid-uCCeou5BxG .mbr-link {
  color: #f4efe8;
}
.cid-uCCeou5BxG .mbr-desc {
  color: #f4efe8;
}
.cid-uCCeou5BxG .mbr-text {
  color: #f4efe8;
}
.cid-uCCeow1GgS {
  position: relative;
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCCeow1GgS .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCCeow1GgS .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uCCeow1GgS .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uCCeow1GgS .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uCCeow1GgS .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uCCeow1GgS .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCCeoxlyb9 {
  overflow: visible !important;
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 1000px) {
  .cid-uCCeoxlyb9 {
    padding-top: 1.5rem;
    padding-bottom: 0rem;
  }
}
@media (max-width: 768px) {
  .cid-uCCeoxlyb9 {
    padding-top: 0.9rem;
    padding-bottom: 0rem;
  }
}
.cid-uCCeoxlyb9 .f-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 992px) {
  .cid-uCCeoxlyb9 .f-row {
    flex-direction: row;
    min-height: 665px;
  }
}
@media (min-width: 992px) {
  .cid-uCCeoxlyb9 .image-wrapper {
    transform: translateX(25%);
    min-width: 770px;
    min-height: 500px;
    max-height: 500px;
  }
}
.cid-uCCeoxlyb9 .image-wrapper img {
  min-height: 100%;
  max-height: 500px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uCCeoxlyb9 .text {
    min-width: 615px;
    transform: translate(-25%, 4rem);
  }
}
.cid-uCCeoxlyb9 .text-wrapper {
  background: #fff1e3;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-uCCeoxlyb9 .text-wrapper {
    padding: 100px 100px 63px;
  }
}
.cid-uCCeoxlyb9 .mbr-text {
  font-weight: 300;
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uCCeoxlyb9 .display-1 {
    font-size: 65px;
  }
  .cid-uCCeoxlyb9 .display-5 {
    font-size: 29px;
  }
}
.cid-uCCeoxlyb9 .mbr-section-btn {
  background: #fff1e3;
  margin-left: 0;
  margin-right: 0;
}
.cid-uCCeoxlyb9 .btn {
  box-shadow: none !important;
  border-radius: 0 !important;
  font-weight: 400;
  min-height: 72px;
  padding-right: 80px;
  padding-left: 80px;
  margin: 0;
}
.cid-uCCeoxlyb9 .btn:hover {
  background: #BEE1E6 !important;
  border-color: #BEE1E6 !important;
  color: #18293D !important;
}
.cid-uCCeoz5lof {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCCeoz5lof .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCCeoz5lof .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uCCeoz5lof .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uCCeoz5lof .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uCCeoz5lof .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uCCeoz5lof .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCCeoAynAF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #dfe8ff;
}
.cid-uCCeoAynAF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCeoAynAF .col-12 {
  padding: 0;
}
.cid-uCCeoAynAF .row {
  margin: 0;
}
.cid-uCCeoAynAF .card-margin {
  margin-left: -1px;
}
@media (max-width: 992px) {
  .cid-uCCeoAynAF .card-margin {
    margin-top: -1px;
  }
}
.cid-uCCeoAynAF .card-wrapper {
  min-height: 500px;
  border: 1px solid #000000;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uCCeoAynAF .card-wrapper {
    padding: 1rem;
  }
}
.cid-uCCeoAynAF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCCeoAynAF .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uCCeoAynAF .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uCCeoAynAF .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uCCeoAynAF .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uCCeoAynAF .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uCCeoAynAF .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uCCeoAynAF .image-wrapper {
    padding: 1rem;
  }
}
.cid-uCCeoAynAF .mbr-section-title {
  color: #000000;
}
.cid-uCCeoAynAF .mbr-text,
.cid-uCCeoAynAF .mbr-section-btn {
  color: #221b35;
}
.cid-uCCeoCH6W3 {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCCeoCH6W3 .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCCeoCH6W3 .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uCCeoCH6W3 .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uCCeoCH6W3 .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uCCeoCH6W3 .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uCCeoCH6W3 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCLracEbhS {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #fff1e3;
  position: relative;
}
.cid-uCLracEbhS .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff1e3;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCLracEbhS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCLracEbhS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uCLracEbhS .col-title {
    margin-bottom: 7vw;
  }
}
@media (max-width: 767px) {
  .cid-uCLracEbhS .col-title {
    margin-bottom: 9vw;
  }
}
.cid-uCLracEbhS .mbr-section-title {
  color: #000000;
  margin-bottom: 1rem;
}
.cid-uCLracEbhS .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 0;
}
.cid-uCLracEbhS .toggle-panel {
  border-top: 1px solid #000000;
}
.cid-uCLracEbhS .card {
  padding-bottom: 0;
  border-radius: 0;
  border-bottom: 1px solid #000000;
}
.cid-uCLracEbhS .card-header {
  background-color: transparent;
  margin-bottom: 0;
  padding: 0;
  border-bottom: none !important;
}
.cid-uCLracEbhS .sign {
  font-family: 'Moririse2' !important;
  padding: 10px;
  font-size: 18px;
  border-radius: 50%;
  color: #000000;
  border: 1px solid #000000;
  transition: 0.3s all;
  animation: icon-move-out 0.2s ease-out;
}
@media (max-width: 991px) {
  .cid-uCLracEbhS .sign {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    width: 7.3vw;
    font-size: 3.7vw;
    aspect-ratio: 1;
  }
}
@media (max-width: 767px) {
  .cid-uCLracEbhS .sign {
    width: 8.53vw;
    font-size: 4.3vw;
  }
}
.cid-uCLracEbhS .panel-title-edit {
  color: #000000;
  padding-right: 1rem;
  transition: .3s all;
}
.cid-uCLracEbhS .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  transition: .4s all;
}
@media (max-width: 991px) {
  .cid-uCLracEbhS .panel-title {
    padding: 5vw 0;
  }
}
@media (max-width: 767px) {
  .cid-uCLracEbhS .panel-title {
    padding: 6.4vw 0;
  }
}
.cid-uCLracEbhS .panel-title[aria-expanded="false"] .sign:hover {
  animation: icon-move 0.8s forwards;
}
.cid-uCLracEbhS .panel-title[aria-expanded="true"] .sign {
  transform: rotate(135deg);
}
.cid-uCLracEbhS .panel-text {
  color: #FFFFFF;
  margin-bottom: 36px;
  max-width: 80%;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uCLracEbhS .panel-text {
    margin-bottom: 5vw;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-uCLracEbhS .panel-text {
    margin-bottom: 6.4vw;
  }
}
@keyframes icon-move {
  0% {
    transform: translate3d(0, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: transform;
  }
  80% {
    transform: translate3d(0, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(360deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0, 0%, 0px) scale3d(1.2, 1.2, 1) rotateX(0deg) rotateY(0deg) rotateZ(360deg) skew(0deg, 0deg);
    will-change: auto;
  }
}
@keyframes icon-move-out {
  0% {
    transform: translate3d(0, 0%, 0px) scale3d(1.2, 1.2, 1) rotateX(0deg) rotateY(0deg) rotateZ(0) skew(0deg, 0deg);
    will-change: transform;
  }
  100% {
    transform: translate3d(0, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0) skew(0deg, 0deg);
    will-change: auto;
  }
}
.cid-uCCeoG32Fs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uCCeoG32Fs .content {
    max-width: 600px;
    margin: auto;
  }
}
@media (min-width: 767px) {
  .cid-uCCeoG32Fs .content {
    padding: 0 2rem;
  }
}
.cid-uCCeoG32Fs .img-col {
  padding: 0;
  margin: auto 0;
}
@media (max-width: 992px) {
  .cid-uCCeoG32Fs .content {
    margin: auto;
  }
}
.cid-uCCeoG32Fs li {
  list-style: none;
}
.cid-uCCeoG32Fs .item-wrap {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.cid-uCCeoG32Fs .item-wrap:hover .mbr-iconfont {
  color: #181818 !important;
}
.cid-uCCeoG32Fs .mbr-iconfont {
  font-size: 18px !important;
  padding-right: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 900;
  color: #ffffff !important;
}
.cid-uCCeoG32Fs h4 {
  margin: 0;
}
.cid-uCCeoG32Fs ul {
  padding: 0;
  margin: 0;
}
.cid-uCCeoG32Fs H2 {
  color: #ed6436;
}
.cid-uCCeoG32Fs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCeoG32Fs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCCeoNI5r1 {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff1e3;
}
.cid-uCCeoNI5r1 .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff1e3;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uCCeoNI5r1 .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uCCeoNI5r1 .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uCCeoNI5r1 .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uCCeoNI5r1 .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uCCeoNI5r1 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uCCeoPLucn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uCCeoPLucn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCeoPLucn .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-uCCeoPLucn .container {
    padding: 0 30px;
  }
}
.cid-uCCeoPLucn .row {
  justify-content: center;
}
.cid-uCCeoPLucn .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uCCeoPLucn .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uCCeoPLucn .panel-group .card {
  border-radius: 2rem 0 2rem 0 !important;
  border: 1px solid #000000;
  margin-bottom: 24px;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-uCCeoPLucn .panel-group .card {
    padding: 30px 20px;
  }
}
.cid-uCCeoPLucn .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uCCeoPLucn .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uCCeoPLucn .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uCCeoPLucn .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 45px;
  height: 45px;
  min-width: 45px;
  transition: all 0.3s ease-in-out;
  color: #fff1e3;
  background-color: #000000;
  border-radius: 100%;
  margin-left: 20px;
}
.cid-uCCeoPLucn .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uCCeoPLucn .panel-group .card .panel-collapse .panel-body {
  padding-top: 30px;
}
.cid-uCCeoPLucn .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uCCeoPLucn .mbr-section-title {
  color: #000000;
}
.cid-uCCeoPLucn .panel-title-edit {
  color: #000000;
}
.cid-uCCeoPLucn .panel-text {
  color: #000000;
}
.cid-uCCeoSmT3b {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: #ffffff;
}
.cid-uCCeoSmT3b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCeoSmT3b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCCeoSmT3b .google-map {
  height: 30rem;
  position: relative;
}
.cid-uCCeoSmT3b .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uCCeoSmT3b .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-uCCeoSmT3b .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uCCeoSmT3b .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uCCeoUGqUz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #dfe8ff;
  overflow: hidden;
}
.cid-uCCeoUGqUz::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 85%;
  background-image: linear-gradient(transparent, #fff1e3 50%);
  z-index: 1;
}
.cid-uCCeoUGqUz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCCeoUGqUz .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-uCCeoUGqUz .container {
    padding: 0 22px;
  }
}
.cid-uCCeoUGqUz .row {
  position: relative;
  z-index: 1;
}
.cid-uCCeoUGqUz .row-main {
  position: relative;
  justify-content: center;
  padding: 40px 0;
}
.cid-uCCeoUGqUz .row-main::before {
  content: '';
  position: absolute;
  top: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uCCeoUGqUz .row-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 200vh;
  height: 1px;
  background-color: #b0b0b0;
}
.cid-uCCeoUGqUz .row-main .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uCCeoUGqUz .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCCeoUGqUz .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uCCeoUGqUz .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uCCeoUGqUz .nav-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uCCeoUGqUz .nav-wrapper {
    margin-bottom: 20px;
    text-align: left;
  }
}
.cid-uCCeoUGqUz .nav-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uCCeoUGqUz .nav-wrapper .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-uCCeoUGqUz .nav-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: inline-block;
  text-align: left;
}
.cid-uCCeoUGqUz .nav-wrapper .list .item-wrap {
  margin-bottom: 5px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uCCeoUGqUz .nav-wrapper .list .item-wrap:hover,
.cid-uCCeoUGqUz .nav-wrapper .list .item-wrap:hover {
  color: #00d0f3;
}
.cid-uCCeoUGqUz .nav-wrapper .list .item-wrap:hover::before,
.cid-uCCeoUGqUz .nav-wrapper .list .item-wrap:hover::before {
  width: 100%;
}
.cid-uCCeoUGqUz .nav-wrapper .list .item-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCCeoUGqUz .contacts-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCCeoUGqUz .contacts-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uCCeoUGqUz .contacts-wrapper .contacts-wrap .item-contact {
  margin-bottom: 15px;
}
.cid-uCCeoUGqUz .contacts-wrapper .contacts-wrap .item-contact .item-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uCCeoUGqUz .contacts-wrapper .contacts-wrap .item-contact .item-wrap .mbr-iconfont {
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin-right: 20px;
}
.cid-uCCeoUGqUz .contacts-wrapper .contacts-wrap .item-contact .item-wrap a {
  display: block;
}
.cid-uCCeoUGqUz .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact,
.cid-uCCeoUGqUz .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact {
  color: #00d0f3;
}
.cid-uCCeoUGqUz .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before,
.cid-uCCeoUGqUz .contacts-wrapper .contacts-wrap .item-contact .item-wrap a:hover .mbr-contact::before {
  width: 100%;
}
.cid-uCCeoUGqUz .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact {
  margin-bottom: 0;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.cid-uCCeoUGqUz .contacts-wrapper .contacts-wrap .item-contact .item-wrap a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #00d0f3;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uCCeoUGqUz .desc-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uCCeoUGqUz .desc-wrapper .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-uCCeoUGqUz .desc-wrapper .mbr-desc {
  margin-bottom: 5px;
}
.cid-uCCeoUGqUz .desc-wrapper .social-wrapper {
  margin-top: 10px;
}
.cid-uCCeoUGqUz .desc-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.cid-uCCeoUGqUz .desc-wrapper .social-wrapper .social-wrap .soc-item {
  margin-left: 32px;
}
@media (max-width: 992px) {
  .cid-uCCeoUGqUz .desc-wrapper .social-wrapper .social-wrap .soc-item {
    margin-left: 16px;
  }
  .cid-uCCeoUGqUz .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
    margin-left: 0;
  }
}
.cid-uCCeoUGqUz .desc-wrapper .social-wrapper .social-wrap .soc-item:first-child {
  margin-left: 0;
}
.cid-uCCeoUGqUz .desc-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uCCeoUGqUz .desc-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uCCeoUGqUz .desc-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  color: #00d0f3;
}
.cid-uCCeoUGqUz .desc-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.cid-uCCeoUGqUz .mbr-copy {
  margin-bottom: 0;
  padding: 25px 0;
  color: #000000;
  text-align: center;
}
.cid-uCCeoUGqUz .mbr-section-title {
  color: #000000;
}
.cid-uCCeoUGqUz .mbr-text {
  color: #ffffff;
}
.cid-uCCeoUGqUz .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uCCeoUGqUz .list {
  color: #ffffff;
}
.cid-uCCeoUGqUz .mbr-contact {
  color: #ffffff;
}
.cid-uCCeoUGqUz .mbr-desc {
  color: #ffffff;
}
.cid-uCCeoUGqUz .mbr-contact,
.cid-uCCeoUGqUz .item-contact {
  color: #000000;
}
.cid-uCCeoUGqUz .list,
.cid-uCCeoUGqUz .item-wrap {
  color: #000000;
}
.cid-uCClcaAsOu .navbar-dropdown {
  position: relative !important;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCClcaAsOu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCClcaAsOu .dropdown-item:hover,
.cid-uCClcaAsOu .dropdown-item:focus {
  background: #000000 !important;
  color: white !important;
}
.cid-uCClcaAsOu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCClcaAsOu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCClcaAsOu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
  color: #000;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCClcaAsOu .nav-link {
  position: relative;
}
.cid-uCClcaAsOu .container {
  display: flex;
  margin: auto;
}
.cid-uCClcaAsOu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCClcaAsOu .dropdown-menu,
.cid-uCClcaAsOu .navbar.opened {
  background: #ffffff !important;
}
.cid-uCClcaAsOu .nav-item:focus,
.cid-uCClcaAsOu .nav-link:focus {
  outline: none;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCClcaAsOu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCClcaAsOu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCClcaAsOu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCClcaAsOu .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: #ffffff;
}
.cid-uCClcaAsOu .navbar.opened {
  transition: all 0.3s;
}
.cid-uCClcaAsOu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCClcaAsOu .navbar .navbar-logo img {
  width: auto;
}
.cid-uCClcaAsOu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCClcaAsOu .navbar.collapsed {
  justify-content: center;
}
.cid-uCClcaAsOu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCClcaAsOu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCClcaAsOu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 2.8rem);
  }
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCClcaAsOu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCClcaAsOu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCClcaAsOu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCClcaAsOu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCClcaAsOu .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-uCClcaAsOu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCClcaAsOu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCClcaAsOu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCClcaAsOu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCClcaAsOu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCClcaAsOu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uCClcaAsOu .navbar.navbar-short {
  min-height: 60px;
}
.cid-uCClcaAsOu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCClcaAsOu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCClcaAsOu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCClcaAsOu .dropdown-item.active,
.cid-uCClcaAsOu .dropdown-item:active {
  background-color: transparent;
}
.cid-uCClcaAsOu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCClcaAsOu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCClcaAsOu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCClcaAsOu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCClcaAsOu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCClcaAsOu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCClcaAsOu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCClcaAsOu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCClcaAsOu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCClcaAsOu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCClcaAsOu .navbar-dropdown {
  padding: .7rem 1rem;
}
.cid-uCClcaAsOu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCClcaAsOu .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-uCClcaAsOu .navbar {
    height: 70px;
  }
  .cid-uCClcaAsOu .navbar.opened {
    height: auto;
  }
  .cid-uCClcaAsOu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
