body {
  font-family: Finlandica;
}
.display-1 {
  font-family: 'Crimson Pro', serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Crimson Pro', serif;
  font-size: 3rem;
  line-height: 1.2;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-5 {
  font-family: 'Crimson Pro', serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((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: #ec1722 !important;
}
.bg-success {
  background-color: #8fff32 !important;
}
.bg-info {
  background-color: #312ca8 !important;
}
.bg-warning {
  background-color: #ec1722 !important;
}
.bg-danger {
  background-color: #13171f !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ec1722 !important;
  border-color: #ec1722 !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: #9f0d15 !important;
  border-color: #9f0d15 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #9f0d15 !important;
  border-color: #9f0d15 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #6b67ce !important;
  border-color: #6b67ce !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #3b36a8 !important;
  border-color: #3b36a8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #3b36a8 !important;
  border-color: #3b36a8 !important;
}
.btn-info,
.btn-info:active {
  background-color: #312ca8 !important;
  border-color: #312ca8 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #1d1a63 !important;
  border-color: #1d1a63 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #1d1a63 !important;
  border-color: #1d1a63 !important;
}
.btn-success,
.btn-success:active {
  background-color: #8fff32 !important;
  border-color: #8fff32 !important;
  color: #173200 !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: #63da00 !important;
  border-color: #63da00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #173200 !important;
  background-color: #63da00 !important;
  border-color: #63da00 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ec1722 !important;
  border-color: #ec1722 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #9f0d15 !important;
  border-color: #9f0d15 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9f0d15 !important;
  border-color: #9f0d15 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #13171f !important;
  border-color: #13171f !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #c4cfde !important;
  border-color: #c4cfde !important;
  color: #3a4e69 !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: #ffffff !important;
  background-color: #8ca2bf !important;
  border-color: #8ca2bf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #3a4e69 !important;
  background-color: #8ca2bf !important;
  border-color: #8ca2bf !important;
}
.btn-black,
.btn-black:active {
  background-color: #212428 !important;
  border-color: #212428 !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: #ec1722;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #9f0d15 !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: #ec1722 !important;
  border-color: #ec1722 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6b67ce;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #3b36a8 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #6b67ce !important;
  border-color: #6b67ce !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #312ca8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #1d1a63 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #312ca8 !important;
  border-color: #312ca8 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8fff32;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #63da00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #173200 !important;
  background-color: #8fff32 !important;
  border-color: #8fff32 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ec1722;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #9f0d15 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ec1722 !important;
  border-color: #ec1722 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #13171f;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #000000 !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: #13171f !important;
  border-color: #13171f !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #212428;
}
.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: #212428 !important;
  border-color: #212428 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c4cfde;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #8ca2bf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #3a4e69 !important;
  background-color: #c4cfde !important;
  border-color: #c4cfde !important;
}
.text-primary {
  color: #ec1722 !important;
}
.text-secondary {
  color: #6b67ce !important;
}
.text-success {
  color: #8fff32 !important;
}
.text-info {
  color: #312ca8 !important;
}
.text-warning {
  color: #ec1722 !important;
}
.text-danger {
  color: #13171f !important;
}
.text-white {
  color: #C4CFDE !important;
}
.text-black {
  color: #212428 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #910c13 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #37329d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #5ccb00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #191757 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #910c13 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #839ab9 !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: #ec1722;
}
.nav-tabs .nav-link:not(.active) {
  color: #212428;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #312ca8;
}
.alert-warning {
  background-color: #ec1722;
}
.alert-danger {
  background-color: #13171f;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ec1722;
  border-color: #ec1722;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ec1722;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fbd4d6;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fefffe;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #7c78dc;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fbd4d6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #bfc7d8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Crimson Pro', serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.75rem;
}
.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: #ec1722 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Crimson Pro', serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.75rem;
}
blockquote {
  border-color: #ec1722;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ec1722;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ec1722;
}
.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: #ec1722;
  border-bottom-color: #ec1722;
}
.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: #ec1722 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #6b67ce !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='%23ec1722' %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.3s;
}
a:hover {
  background-image: none !important;
}
.container-fluid {
  padding-left: 120px;
  padding-right: 120px;
}
@media (max-width: 1199px) {
  .container-fluid {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.mbr-section-btn .btn {
  min-width: 70px;
  min-height: 57px;
  padding: 18px 40px;
  border-radius: 6px !important;
  font-weight: 500;
  line-height: 1.3 !important;
  box-shadow: 10px 10px 19px #1c1e22, -10px -10px 19px #262a2e !important;
  transform-style: preserve-3d;
}
@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;
  transition: 0.4s all !important;
  border: none !important;
  align-items: baseline;
}
.custom-section-btn .btn-black {
  color: #ec1722 !important;
  background: linear-gradient(145deg, #1e2024, #23272b) !important;
}
.custom-section-btn .btn-black:hover {
  color: #ec1722 !important;
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  transform: translateY(-5px);
}
.custom-section-btn .btn-white {
  color: #ec1722 !important;
  background: #FFFFFF !important;
  box-shadow: none !important;
}
.custom-section-btn .btn-white:hover {
  color: #ec1722 !important;
  background: #FFFFFF !important;
  transform: translateY(-5px);
}
.cid-uOmUgmGkHI {
  background-color: transparent;
}
.cid-uOmUgmGkHI .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-uOmUgmGkHI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-uOmUgmGkHI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOmUgmGkHI .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uOmUgmGkHI .menu_box .navbar.opened,
  .cid-uOmUgmGkHI .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uOmUgmGkHI .navbar-dropdown {
  position: relative !important;
}
.cid-uOmUgmGkHI .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
.cid-uOmUgmGkHI .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uOmUgmGkHI .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uOmUgmGkHI .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
}
.cid-uOmUgmGkHI .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uOmUgmGkHI .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uOmUgmGkHI ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uOmUgmGkHI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uOmUgmGkHI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uOmUgmGkHI .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uOmUgmGkHI li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uOmUgmGkHI .lg_brand {
    margin: 0 1rem;
  }
  .cid-uOmUgmGkHI .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uOmUgmGkHI .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uOmUgmGkHI .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .nav-item {
    margin: 0 !important;
  }
}
.cid-uOmUgmGkHI .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uOmUgmGkHI .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-uOmUgmGkHI .nav-item .nav-link:hover:before,
.cid-uOmUgmGkHI .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-uOmUgmGkHI .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uOmUgmGkHI .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uOmUgmGkHI .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uOmUgmGkHI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uOmUgmGkHI .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
}
.cid-uOmUgmGkHI .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uOmUgmGkHI .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uOmUgmGkHI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uOmUgmGkHI .container {
  display: flex;
  margin: auto;
}
.cid-uOmUgmGkHI .iconfont-wrapper {
  color: #01004c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uOmUgmGkHI .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uOmUgmGkHI .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uOmUgmGkHI .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uOmUgmGkHI .navbar-nav {
    margin: 0;
  }
}
.cid-uOmUgmGkHI .dropdown-menu,
.cid-uOmUgmGkHI .navbar.opened {
  background-color: false !important;
}
.cid-uOmUgmGkHI .nav-item:focus,
.cid-uOmUgmGkHI .nav-link:focus {
  outline: none;
}
.cid-uOmUgmGkHI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOmUgmGkHI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOmUgmGkHI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOmUgmGkHI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOmUgmGkHI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOmUgmGkHI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOmUgmGkHI .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uOmUgmGkHI .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uOmUgmGkHI .navbar.opened {
  transition: all 0.3s;
}
.cid-uOmUgmGkHI .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uOmUgmGkHI .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uOmUgmGkHI .navbar .navbar-collapse {
  justify-content: space-between;
  justify-content: center;
  z-index: 1;
}
.cid-uOmUgmGkHI .navbar.collapsed {
  justify-content: center;
}
.cid-uOmUgmGkHI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOmUgmGkHI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uOmUgmGkHI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOmUgmGkHI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOmUgmGkHI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOmUgmGkHI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uOmUgmGkHI .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uOmUgmGkHI .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uOmUgmGkHI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOmUgmGkHI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOmUgmGkHI .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uOmUgmGkHI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOmUgmGkHI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uOmUgmGkHI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOmUgmGkHI .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uOmUgmGkHI .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uOmUgmGkHI .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uOmUgmGkHI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uOmUgmGkHI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOmUgmGkHI .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uOmUgmGkHI .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOmUgmGkHI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOmUgmGkHI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOmUgmGkHI .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-uOmUgmGkHI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uOmUgmGkHI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOmUgmGkHI .dropdown-item.active,
.cid-uOmUgmGkHI .dropdown-item:active {
  background-color: transparent;
}
.cid-uOmUgmGkHI .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-uOmUgmGkHI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOmUgmGkHI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOmUgmGkHI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOmUgmGkHI ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uOmUgmGkHI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOmUgmGkHI button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #000000;
}
.cid-uOmUgmGkHI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #01004c;
}
.cid-uOmUgmGkHI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOmUgmGkHI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOmUgmGkHI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOmUgmGkHI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOmUgmGkHI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOmUgmGkHI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOmUgmGkHI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOmUgmGkHI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOmUgmGkHI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uOmUgmGkHI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOmUgmGkHI .navbar {
    height: 70px;
  }
  .cid-uOmUgmGkHI .navbar.opened {
    height: auto;
  }
  .cid-uOmUgmGkHI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOmUgmGkHI .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uOmUgmGkHI .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uOmUgmGkHI .navbar-caption:hover {
  color: #ec1722;
}
@media (min-width: 992px) {
  .cid-uOmUgmGkHI .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uOmUgmGkHI .text_widget {
  margin-bottom: 32px;
}
.cid-uOmUgmGkHI .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uOmUgmGkHI .text_widget a:hover,
.cid-uOmUgmGkHI .text_widget a:focus {
  opacity: .8;
}
.cid-uOmUgmGkHI .contacts-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uOmUgmGkHI .contacts-wrapper {
    display: none;
  }
}
.cid-uOmUgmGkHI .contacts-wrapper a .mbr-contact {
  margin: 8px 20px;
  position: relative;
}
.cid-uOmUgmGkHI .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-uOmUgmGkHI .contacts-wrapper a .mbr-contact:hover:before,
.cid-uOmUgmGkHI .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-uOmUgmGkHI .mbr-section-subtitle {
  color: #01004c;
  text-align: center;
}
.cid-uOmUgmGkHI .navbar-caption {
  color: #01004c;
}
.cid-uOmUgmGkHI .mbr-text {
  color: #01004c;
  text-align: center;
}
.cid-uOmUgmGkHI .mbr-section-subtitle,
.cid-uOmUgmGkHI .text_widget,
.cid-uOmUgmGkHI .mbr-section-btn {
  text-align: center;
}
.cid-uOmUgmGkHI a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uP0IjDEnY2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uP0IjDEnY2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP0IjDEnY2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP0IjDEnY2 .row {
  flex-direction: row-reverse;
}
.cid-uP0IjDEnY2 .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uP0IjDEnY2 .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.cid-uP0IjDEnY2 .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uP0IjDEnY2 .col-img {
  padding: 10px;
}
@media (min-width: 992px) {
  .cid-uP0IjDEnY2 .col-img {
    padding-right: 30px !important;
  }
}
@media (max-width: 991px) and (min-width: 767px) {
  .cid-uP0IjDEnY2 .col-img {
    padding: 30px !important;
  }
}
.cid-uP0IjDEnY2 .col-text {
  display: flex;
  align-items: center;
  padding: 10px;
}
.cid-uP0IjDEnY2 .text-wrapper {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uP0IjDEnY2 .text-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uP0IjDEnY2 .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-uP0IjDEnY2 .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 22px;
}
.cid-uP0IjDEnY2 .mbr-section-subtitle a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-uP0IjDEnY2 .mbr-text {
  color: #C4CFDE;
  margin-bottom: 20px;
  padding-right: 16%;
}
@media (max-width: 991px) {
  .cid-uP0IjDEnY2 .mbr-text {
    padding-right: 0;
  }
}
.cid-uP0IjDEnY2 .mbr-section-btn {
  margin-top: 20px;
}
.cid-uP0IjDEnY2 .social-container {
  width: 100%;
  padding-top: 100px;
}
@media (max-width: 991px) {
  .cid-uP0IjDEnY2 .social-container {
    padding-top: 40px;
  }
}
.cid-uP0IjDEnY2 .social-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-uP0IjDEnY2 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -10px -12px;
}
.cid-uP0IjDEnY2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 10px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uP0IjDEnY2 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uP0IjDEnY2 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uP0IjDEnY2 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uP0IjDEnY2 .soc-item:hover:before {
  opacity: 1;
}
.cid-uP0IjDEnY2 .soc-item a {
  animation: none;
}
.cid-uP0IjDEnY2 .img-wrapper {
  padding: 15px;
  border-radius: 6px;
  position: relative;
  width: 100%;
  background: linear-gradient(to right, #6b67ce, #ff014e);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-uP0IjDEnY2 .img-box {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.cid-uP0IjDEnY2 .img-box img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 0.75026795;
}
.cid-uP0IjDEnY2 .mbr-text,
.cid-uP0IjDEnY2 .mbr-section-btn {
  color: #000000;
}
.cid-uOj1KcyURT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-uOj1KcyURT .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uOj1KcyURT .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uOj1KcyURT .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uOj1KcyURT .mbr-section-title {
  text-align: center;
  color: #212428;
}
.cid-uOj1KcyURT .mbr-text {
  color: #3d5943;
}
.cid-uP0N8Netjr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP0N8Netjr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP0N8Netjr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP0N8Netjr .content-wrapper .mbr-name {
  margin-bottom: 32px;
}
.cid-uP0N8Netjr .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uP0N8Netjr .mbr-name {
  color: #858585;
}
.cid-uP0N8Netjr .mbr-text {
  color: #191c25;
}
.cid-uP0N8Netjr .mbr-section-btn {
  text-align: center;
}
.cid-uP0MXJxkdd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP0MXJxkdd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP0MXJxkdd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP0MXJxkdd .row {
  justify-content: space-between;
}
.cid-uP0MXJxkdd .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 75px 64px;
  background-color: #c4cfde;
}
@media (max-width: 1440px) {
  .cid-uP0MXJxkdd .card-wrapper {
    padding: 75px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uP0MXJxkdd .card-wrapper {
    padding: 24px 12px;
    display: block;
  }
}
.cid-uP0MXJxkdd .card-wrapper .card-wrap {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uP0MXJxkdd .card-wrapper .card-wrap {
    width: 100%;
    margin-bottom: 24px;
    padding: 0 14px;
  }
}
.cid-uP0MXJxkdd .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP0MXJxkdd .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uP0MXJxkdd .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uP0MXJxkdd .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uP0MXJxkdd .card-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uP0MXJxkdd .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uP0MXJxkdd .card-wrapper .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uP0MXJxkdd .card-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-uP0MXJxkdd .mbr-section-title {
  color: #ffffff;
}
.cid-uP0MXJxkdd .mbr-text,
.cid-uP0MXJxkdd .text-wrapper {
  color: #000000;
}
.cid-uP0MXJxkdd .mbr-section-title,
.cid-uP0MXJxkdd .mbr-section-btn {
  color: #000000;
}
.cid-uP0P2RDMCF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP0P2RDMCF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP0P2RDMCF .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-uP0P2RDMCF .container {
    padding: 0 16px;
  }
}
.cid-uP0P2RDMCF .card {
  justify-content: center;
}
.cid-uP0P2RDMCF .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #c4cfde;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uP0P2RDMCF .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uP0P2RDMCF .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uP0P2RDMCF .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uP0P2RDMCF .mbr-section-title {
  color: #000000;
}
.cid-uP0P2RDMCF .mbr-text {
  color: #000000;
}
.cid-uP0P2RDMCF .mbr-desc {
  color: #000000;
}
.cid-uP0P2RDMCF .mbr-section-title,
.cid-uP0P2RDMCF .title-wrapper {
  text-align: center;
}
.cid-thYaWFjPel {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-thYaWFjPel .mbr-fallback-image.disabled {
  display: none;
}
.cid-thYaWFjPel .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-thYaWFjPel .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-thYaWFjPel .mbr-section-title {
  color: #212428;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-thYaWFjPel .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-thYaWFjPel .mbr-section-subtitle {
  color: #212428;
}
.cid-thYaWFjPel .card-row {
  align-items: stretch;
}
.cid-thYaWFjPel .card {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-thYaWFjPel .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 20px;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-thYaWFjPel .card-box {
  height: 100%;
}
.cid-thYaWFjPel .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 25px;
}
.cid-thYaWFjPel .iconfont-wrapper .mbr-iconfont {
  font-size: 45px;
  color: #312ca8;
}
.cid-thYaWFjPel .card-title {
  color: #000000;
  margin-bottom: 20px;
}
.cid-thYaWFjPel .card-text {
  color: #212428;
  margin-bottom: 0;
}
.cid-uP0PglEATq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP0PglEATq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP0PglEATq .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-uP0PglEATq .container {
    padding: 0 16px;
  }
}
.cid-uP0PglEATq .row {
  position: relative;
  z-index: 1;
}
.cid-uP0PglEATq .card {
  justify-content: flex-end;
}
.cid-uP0PglEATq .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-uP0PglEATq .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uP0PglEATq .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uP0PglEATq .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-uP0PglEATq .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-uP0PglEATq .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-uP0PglEATq .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uP0PglEATq .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uP0PglEATq .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-uP0PglEATq .card-wrapper .card-wrap {
  background-color: #c4cfde;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-uP0PglEATq .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-uP0PglEATq .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-uP0PglEATq .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-uP0PglEATq .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-uP0PglEATq .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uP0PglEATq .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uP0PglEATq .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-uP0PglEATq .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uP0PglEATq .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-uP0PglEATq .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uP0PglEATq .text-wrapper {
    margin-left: 0;
  }
}
.cid-uP0PglEATq .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uP0PglEATq .mbr-section-title {
  color: #000000;
  text-align: right;
}
.cid-uP0PglEATq .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-uP0PglEATq .mbr-text {
  color: #000000;
}
.cid-uP0PglEATq .card-desc {
  color: #000000;
}
.cid-uP0PglEATq .card-text {
  color: #ffffff;
}
.cid-uP0PglEATq .card-name {
  color: #ffffff;
}
.cid-uP0PglEATq .card-role {
  color: #13171f;
}
.cid-thYAh1rn4D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-thYAh1rn4D .mbr-fallback-image.disabled {
  display: none;
}
.cid-thYAh1rn4D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1600px) {
  .cid-thYAh1rn4D .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-thYAh1rn4D .row {
  margin-left: -30px;
  margin-right: -30px;
  justify-content: flex-start;
}
.cid-thYAh1rn4D .row > [class*="col"] {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 1599px) {
  .cid-thYAh1rn4D .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-thYAh1rn4D .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-thYAh1rn4D .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-thYAh1rn4D .mbr-section-title {
  color: #212428;
}
.cid-thYAh1rn4D .mbr-section-subtitle {
  color: #212428;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-thYAh1rn4D .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-thYAh1rn4D .card-row {
  align-items: stretch;
}
.cid-thYAh1rn4D .item {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .cid-thYAh1rn4D .item {
    margin-top: 50px;
  }
}
.cid-thYAh1rn4D .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: visible;
}
.cid-thYAh1rn4D .item-wrapper:hover .card-bg {
  opacity: 0.5;
}
.cid-thYAh1rn4D .item-wrapper:hover .mbr-section-btn {
  margin-top: 0;
  opacity: 1;
}
.cid-thYAh1rn4D .item-wrapper:hover .card-title {
  color: #c4cfde !important;
}
.cid-thYAh1rn4D .item-wrapper:hover .card-text {
  color: #c4cfde !important;
}
.cid-thYAh1rn4D .item-img-shadow {
  width: 100%;
  border-radius: 7px;
}
.cid-thYAh1rn4D .item-img {
  position: relative;
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 1.02702703;
}
.cid-thYAh1rn4D .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-thYAh1rn4D .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 6px;
  opacity: 0;
  transition: .5s all;
  pointer-events: none;
}
.cid-thYAh1rn4D .mbr-section-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: translate(-50%, -50%);
  max-width: 100%;
  margin-top: 10px;
  transition: 0.4s all;
  opacity: 0;
}
.cid-thYAh1rn4D .mbr-section-btn .btn {
  padding: 10px 18px;
  min-height: 44px;
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .cid-thYAh1rn4D .mbr-section-btn {
    width: auto;
  }
  .cid-thYAh1rn4D .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-thYAh1rn4D .card-box {
  position: relative;
  z-index: 5;
  padding: 39px 30px 0;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-thYAh1rn4D .card-box {
    padding: 20px 10px 0;
  }
}
.cid-thYAh1rn4D .card-title {
  color: #ffffff;
  margin-bottom: 20px;
  transition: .4s all;
}
.cid-thYAh1rn4D .card-text {
  color: #212428;
  margin-bottom: 22px;
  transition: .4s all;
}
.cid-uP0SvBiNDN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-uP0SvBiNDN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP0SvBiNDN .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-uP0SvBiNDN .container {
    padding: 0 15px;
  }
}
.cid-uP0SvBiNDN .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uP0SvBiNDN .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uP0SvBiNDN .content-wrapper {
    padding-right: 0;
  }
}
.cid-uP0SvBiNDN .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uP0SvBiNDN .content-wrap {
    display: block;
  }
}
.cid-uP0SvBiNDN .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uP0SvBiNDN .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uP0SvBiNDN .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uP0SvBiNDN .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uP0SvBiNDN .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #1e2024;
}
.cid-uP0SvBiNDN .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #1e2024;
  transform: rotate(20deg);
}
.cid-uP0SvBiNDN .mbr-section-title {
  color: #212428;
  text-align: center;
}
.cid-uP0SvBiNDN .mbr-desc,
.cid-uP0SvBiNDN .desc-wrapper {
  color: #3f1819;
}
.cid-uOn0TlITvY {
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOn0TlITvY .section-head {
  margin-bottom: 80px;
}
.cid-uOn0TlITvY .card .card-header {
  background-color: transparent;
  border: 3px solid;
  border-color: #000000;
  padding: 1rem;
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-uOn0TlITvY .card .card-header {
    padding: 19px;
  }
}
.cid-uOn0TlITvY .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uOn0TlITvY .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uOn0TlITvY .panel-body,
.cid-uOn0TlITvY .card-header {
  padding: 1rem 19px 0;
}
.cid-uOn0TlITvY .card {
  padding: 1rem;
  background-color: #c4cfde;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .cid-uOn0TlITvY .card {
    padding: 40px;
  }
}
.cid-uOn0TlITvY .panel-title-edit {
  color: #000000;
}
.cid-uOn0TlITvY .image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-uOn0TlITvY .image-wrapper {
    padding: .5rem;
  }
}
.cid-uOn0TlITvY .image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  vertical-align: middle;
  display: inline-block;
}
.cid-uP0R6KUqpo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP0R6KUqpo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP0R6KUqpo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP0R6KUqpo .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uP0R6KUqpo .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uP0R6KUqpo .container {
    padding: 0 26px;
  }
}
.cid-uP0R6KUqpo .row {
  justify-content: center;
}
.cid-uP0R6KUqpo .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #c4cfde;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-uP0R6KUqpo .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uP0R6KUqpo .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uP0R6KUqpo .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uP0R6KUqpo .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uP0R6KUqpo .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uP0R6KUqpo .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uP0R6KUqpo .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uP0R6KUqpo .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uP0R6KUqpo .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uP0R6KUqpo .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uP0R6KUqpo .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-uP0R6KUqpo .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-uP0R6KUqpo .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uP0R6KUqpo .mbr-section-title {
  color: #16181c;
}
.cid-uP0R6KUqpo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uP0R6KUqpo .mbr-desc {
  color: #ffffff;
}
.cid-uP0R6KUqpo .mbr-text {
  color: #13171f;
}
.cid-uP0R6KUqpo .mbr-link {
  color: #ffffff;
}
.cid-uOn2kFoa2s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOn2kFoa2s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOn2kFoa2s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOn2kFoa2s .row {
  margin: 0 -8px;
}
.cid-uOn2kFoa2s .row .card {
  padding: 0 8px;
}
.cid-uOn2kFoa2s .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #c4cfde;
}
@media (max-width: 1440px) {
  .cid-uOn2kFoa2s .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uOn2kFoa2s .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uOn2kFoa2s .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uOn2kFoa2s .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uOn2kFoa2s .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uOn2kFoa2s .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uOn2kFoa2s .image-wrapper {
  height: 100%;
}
.cid-uOn2kFoa2s .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uOn2kFoa2s .image-wrapper img {
    height: 300px;
  }
}
.cid-uOn2kFoa2s .mbr-section-title {
  color: #2c2c26;
}
.cid-uOn2kFoa2s .mbr-text,
.cid-uOn2kFoa2s .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uOn2kFoa2s .mbr-section-title,
.cid-uOn2kFoa2s .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uOnBHbOf2g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-uOnBHbOf2g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOnBHbOf2g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOnBHbOf2g .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uOnBHbOf2g .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uOnBHbOf2g .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uOnBHbOf2g .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uOnBHbOf2g .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uOnBHbOf2g .mbr-section-title {
  color: #000000;
}
.cid-uOnBHbOf2g .mbr-desc {
  color: #000000;
}
.cid-uOnBHbOf2g .mbr-text {
  color: #000000;
}
.cid-uOmefWq9dr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f1f3;
}
.cid-uOmefWq9dr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOmefWq9dr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOmefWq9dr .card-wrapper {
  padding: 80px;
  background-color: #c4cfde;
}
@media (max-width: 1440px) {
  .cid-uOmefWq9dr .card-wrapper {
    padding: 80px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uOmefWq9dr .card-wrapper {
    padding: 0;
  }
}
.cid-uOmefWq9dr .card-wrapper .google-map iframe {
  height: 550px;
  box-shadow: 5px 30px 50px 0 #191b1f;
}
@media (max-width: 992px) {
  .cid-uOmefWq9dr .card-wrapper .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uOmefWq9dr .card-wrapper .google-map iframe {
    box-shadow: none;
  }
}
.cid-uOhZhSPg57 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uOhZhSPg57 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOhZhSPg57 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOhZhSPg57 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uOhZhSPg57 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOhZhSPg57 .row {
    text-align: center;
  }
  .cid-uOhZhSPg57 .social-row {
    justify-content: center;
  }
}
.cid-uOhZhSPg57 .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uOhZhSPg57 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOhZhSPg57 .list {
    margin-bottom: 0rem;
  }
}
.cid-uOhZhSPg57 .mbr-text {
  color: #bbbbbb;
}
.cid-uOhZhSPg57 .mbr-iconfont {
  color: black;
}
.cid-uOhZhSPg57 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uOmUgmGkHI {
  background-color: transparent;
}
.cid-uOmUgmGkHI .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-uOmUgmGkHI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-uOmUgmGkHI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOmUgmGkHI .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uOmUgmGkHI .menu_box .navbar.opened,
  .cid-uOmUgmGkHI .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uOmUgmGkHI .navbar-dropdown {
  position: relative !important;
}
.cid-uOmUgmGkHI .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
.cid-uOmUgmGkHI .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uOmUgmGkHI .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uOmUgmGkHI .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
}
.cid-uOmUgmGkHI .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uOmUgmGkHI .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uOmUgmGkHI ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uOmUgmGkHI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uOmUgmGkHI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uOmUgmGkHI .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uOmUgmGkHI li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uOmUgmGkHI .lg_brand {
    margin: 0 1rem;
  }
  .cid-uOmUgmGkHI .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uOmUgmGkHI .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uOmUgmGkHI .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .nav-item {
    margin: 0 !important;
  }
}
.cid-uOmUgmGkHI .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uOmUgmGkHI .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-uOmUgmGkHI .nav-item .nav-link:hover:before,
.cid-uOmUgmGkHI .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-uOmUgmGkHI .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uOmUgmGkHI .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uOmUgmGkHI .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uOmUgmGkHI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uOmUgmGkHI .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
}
.cid-uOmUgmGkHI .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uOmUgmGkHI .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uOmUgmGkHI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uOmUgmGkHI .container {
  display: flex;
  margin: auto;
}
.cid-uOmUgmGkHI .iconfont-wrapper {
  color: #01004c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uOmUgmGkHI .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uOmUgmGkHI .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uOmUgmGkHI .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uOmUgmGkHI .navbar-nav {
    margin: 0;
  }
}
.cid-uOmUgmGkHI .dropdown-menu,
.cid-uOmUgmGkHI .navbar.opened {
  background-color: false !important;
}
.cid-uOmUgmGkHI .nav-item:focus,
.cid-uOmUgmGkHI .nav-link:focus {
  outline: none;
}
.cid-uOmUgmGkHI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOmUgmGkHI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOmUgmGkHI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOmUgmGkHI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOmUgmGkHI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOmUgmGkHI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOmUgmGkHI .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uOmUgmGkHI .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uOmUgmGkHI .navbar.opened {
  transition: all 0.3s;
}
.cid-uOmUgmGkHI .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uOmUgmGkHI .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uOmUgmGkHI .navbar .navbar-collapse {
  justify-content: space-between;
  justify-content: center;
  z-index: 1;
}
.cid-uOmUgmGkHI .navbar.collapsed {
  justify-content: center;
}
.cid-uOmUgmGkHI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOmUgmGkHI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uOmUgmGkHI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOmUgmGkHI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOmUgmGkHI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOmUgmGkHI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uOmUgmGkHI .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uOmUgmGkHI .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uOmUgmGkHI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOmUgmGkHI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOmUgmGkHI .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uOmUgmGkHI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOmUgmGkHI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uOmUgmGkHI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOmUgmGkHI .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uOmUgmGkHI .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uOmUgmGkHI .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uOmUgmGkHI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uOmUgmGkHI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOmUgmGkHI .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uOmUgmGkHI .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOmUgmGkHI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOmUgmGkHI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOmUgmGkHI .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-uOmUgmGkHI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uOmUgmGkHI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOmUgmGkHI .dropdown-item.active,
.cid-uOmUgmGkHI .dropdown-item:active {
  background-color: transparent;
}
.cid-uOmUgmGkHI .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-uOmUgmGkHI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOmUgmGkHI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOmUgmGkHI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOmUgmGkHI ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uOmUgmGkHI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOmUgmGkHI button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #000000;
}
.cid-uOmUgmGkHI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #01004c;
}
.cid-uOmUgmGkHI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOmUgmGkHI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOmUgmGkHI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOmUgmGkHI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOmUgmGkHI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOmUgmGkHI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOmUgmGkHI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOmUgmGkHI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOmUgmGkHI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uOmUgmGkHI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOmUgmGkHI .navbar {
    height: 70px;
  }
  .cid-uOmUgmGkHI .navbar.opened {
    height: auto;
  }
  .cid-uOmUgmGkHI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOmUgmGkHI .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uOmUgmGkHI .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uOmUgmGkHI .navbar-caption:hover {
  color: #ec1722;
}
@media (min-width: 992px) {
  .cid-uOmUgmGkHI .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uOmUgmGkHI .text_widget {
  margin-bottom: 32px;
}
.cid-uOmUgmGkHI .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uOmUgmGkHI .text_widget a:hover,
.cid-uOmUgmGkHI .text_widget a:focus {
  opacity: .8;
}
.cid-uOmUgmGkHI .contacts-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uOmUgmGkHI .contacts-wrapper {
    display: none;
  }
}
.cid-uOmUgmGkHI .contacts-wrapper a .mbr-contact {
  margin: 8px 20px;
  position: relative;
}
.cid-uOmUgmGkHI .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-uOmUgmGkHI .contacts-wrapper a .mbr-contact:hover:before,
.cid-uOmUgmGkHI .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-uOmUgmGkHI .mbr-section-subtitle {
  color: #01004c;
  text-align: center;
}
.cid-uOmUgmGkHI .navbar-caption {
  color: #01004c;
}
.cid-uOmUgmGkHI .mbr-text {
  color: #01004c;
  text-align: center;
}
.cid-uOmUgmGkHI .mbr-section-subtitle,
.cid-uOmUgmGkHI .text_widget,
.cid-uOmUgmGkHI .mbr-section-btn {
  text-align: center;
}
.cid-uOmUgmGkHI a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uP2g78CZ08 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-uP2g78CZ08 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP2g78CZ08 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP2g78CZ08 .container-fluid {
  padding: 0 120px;
}
@media (max-width: 768px) {
  .cid-uP2g78CZ08 .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .cid-uP2g78CZ08 .container {
    padding: 0 26px;
  }
}
.cid-uP2g78CZ08 .image-wrapper {
  border: 1px solid #ffffff;
  padding: 20px;
  margin-right: 80px;
}
@media (max-width: 992px) {
  .cid-uP2g78CZ08 .image-wrapper {
    margin: 0 0 50px 0;
  }
}
.cid-uP2g78CZ08 .image-wrapper .mbr-emoji {
  margin-bottom: 18px;
}
.cid-uP2g78CZ08 .image-wrapper img {
  height: 530px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uP2g78CZ08 .image-wrapper img {
    height: 300px;
  }
}
.cid-uP2g78CZ08 .title-wrapper .mbr-section-subtitle {
  margin-bottom: 18px;
}
.cid-uP2g78CZ08 .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-uP2g78CZ08 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uP2g78CZ08 .title-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-uP2g78CZ08 .mbr-section-title {
  color: #ffffff;
}
.cid-uP2g78CZ08 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uP2g78CZ08 .mbr-text {
  color: #000000;
}
.cid-uP2g78CZ08 .mbr-section-title,
.cid-uP2g78CZ08 .mbr-section-btn {
  color: #1e2024;
}
.cid-uOnM05e6tu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #191b1f;
}
.cid-uOnM05e6tu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOnM05e6tu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOnM05e6tu .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uOnM05e6tu .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uOnM05e6tu .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uOnM05e6tu .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uOnM05e6tu .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uOnM05e6tu .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uOnM05e6tu .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uOnM05e6tu .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uOnM05e6tu .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uOnM05e6tu .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uOnM05e6tu .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uOiRRO0nf7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uOiRRO0nf7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOiRRO0nf7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOiRRO0nf7 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uOiRRO0nf7 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOiRRO0nf7 .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-uOiRRO0nf7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOiRRO0nf7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOiRROP7vt {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uOiRROP7vt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOiRROP7vt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOiRROP7vt .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uOiRROP7vt .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOiRROP7vt .row {
    text-align: center;
  }
  .cid-uOiRROP7vt .social-row {
    justify-content: center;
  }
}
.cid-uOiRROP7vt .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uOiRROP7vt .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOiRROP7vt .list {
    margin-bottom: 0rem;
  }
}
.cid-uOiRROP7vt .mbr-text {
  color: #bbbbbb;
}
.cid-uOiRROP7vt .mbr-iconfont {
  color: black;
}
.cid-uOiRROP7vt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uOmUgmGkHI {
  background-color: transparent;
}
.cid-uOmUgmGkHI .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-uOmUgmGkHI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-uOmUgmGkHI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOmUgmGkHI .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uOmUgmGkHI .menu_box .navbar.opened,
  .cid-uOmUgmGkHI .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uOmUgmGkHI .navbar-dropdown {
  position: relative !important;
}
.cid-uOmUgmGkHI .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
.cid-uOmUgmGkHI .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uOmUgmGkHI .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uOmUgmGkHI .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
}
.cid-uOmUgmGkHI .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uOmUgmGkHI .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uOmUgmGkHI ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uOmUgmGkHI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uOmUgmGkHI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uOmUgmGkHI .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uOmUgmGkHI li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uOmUgmGkHI .lg_brand {
    margin: 0 1rem;
  }
  .cid-uOmUgmGkHI .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uOmUgmGkHI .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uOmUgmGkHI .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .nav-item {
    margin: 0 !important;
  }
}
.cid-uOmUgmGkHI .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uOmUgmGkHI .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-uOmUgmGkHI .nav-item .nav-link:hover:before,
.cid-uOmUgmGkHI .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-uOmUgmGkHI .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uOmUgmGkHI .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uOmUgmGkHI .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uOmUgmGkHI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uOmUgmGkHI .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
}
.cid-uOmUgmGkHI .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uOmUgmGkHI .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uOmUgmGkHI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uOmUgmGkHI .container {
  display: flex;
  margin: auto;
}
.cid-uOmUgmGkHI .iconfont-wrapper {
  color: #01004c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uOmUgmGkHI .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uOmUgmGkHI .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uOmUgmGkHI .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uOmUgmGkHI .navbar-nav {
    margin: 0;
  }
}
.cid-uOmUgmGkHI .dropdown-menu,
.cid-uOmUgmGkHI .navbar.opened {
  background-color: false !important;
}
.cid-uOmUgmGkHI .nav-item:focus,
.cid-uOmUgmGkHI .nav-link:focus {
  outline: none;
}
.cid-uOmUgmGkHI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOmUgmGkHI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOmUgmGkHI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOmUgmGkHI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOmUgmGkHI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOmUgmGkHI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOmUgmGkHI .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uOmUgmGkHI .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uOmUgmGkHI .navbar.opened {
  transition: all 0.3s;
}
.cid-uOmUgmGkHI .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uOmUgmGkHI .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uOmUgmGkHI .navbar .navbar-collapse {
  justify-content: space-between;
  justify-content: center;
  z-index: 1;
}
.cid-uOmUgmGkHI .navbar.collapsed {
  justify-content: center;
}
.cid-uOmUgmGkHI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOmUgmGkHI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uOmUgmGkHI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOmUgmGkHI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOmUgmGkHI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOmUgmGkHI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uOmUgmGkHI .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uOmUgmGkHI .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uOmUgmGkHI .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uOmUgmGkHI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOmUgmGkHI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOmUgmGkHI .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uOmUgmGkHI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOmUgmGkHI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uOmUgmGkHI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOmUgmGkHI .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uOmUgmGkHI .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uOmUgmGkHI .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uOmUgmGkHI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uOmUgmGkHI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOmUgmGkHI .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uOmUgmGkHI .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOmUgmGkHI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOmUgmGkHI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOmUgmGkHI .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-uOmUgmGkHI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uOmUgmGkHI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOmUgmGkHI .dropdown-item.active,
.cid-uOmUgmGkHI .dropdown-item:active {
  background-color: transparent;
}
.cid-uOmUgmGkHI .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-uOmUgmGkHI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOmUgmGkHI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOmUgmGkHI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOmUgmGkHI ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uOmUgmGkHI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOmUgmGkHI button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #000000;
}
.cid-uOmUgmGkHI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #01004c;
}
.cid-uOmUgmGkHI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOmUgmGkHI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOmUgmGkHI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOmUgmGkHI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOmUgmGkHI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOmUgmGkHI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOmUgmGkHI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOmUgmGkHI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOmUgmGkHI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uOmUgmGkHI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOmUgmGkHI .navbar {
    height: 70px;
  }
  .cid-uOmUgmGkHI .navbar.opened {
    height: auto;
  }
  .cid-uOmUgmGkHI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOmUgmGkHI .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uOmUgmGkHI .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uOmUgmGkHI .navbar-caption:hover {
  color: #ec1722;
}
@media (min-width: 992px) {
  .cid-uOmUgmGkHI .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uOmUgmGkHI .text_widget {
  margin-bottom: 32px;
}
.cid-uOmUgmGkHI .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uOmUgmGkHI .text_widget a:hover,
.cid-uOmUgmGkHI .text_widget a:focus {
  opacity: .8;
}
.cid-uOmUgmGkHI .contacts-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uOmUgmGkHI .contacts-wrapper {
    display: none;
  }
}
.cid-uOmUgmGkHI .contacts-wrapper a .mbr-contact {
  margin: 8px 20px;
  position: relative;
}
.cid-uOmUgmGkHI .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-uOmUgmGkHI .contacts-wrapper a .mbr-contact:hover:before,
.cid-uOmUgmGkHI .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-uOmUgmGkHI .mbr-section-subtitle {
  color: #01004c;
  text-align: center;
}
.cid-uOmUgmGkHI .navbar-caption {
  color: #01004c;
}
.cid-uOmUgmGkHI .mbr-text {
  color: #01004c;
  text-align: center;
}
.cid-uOmUgmGkHI .mbr-section-subtitle,
.cid-uOmUgmGkHI .text_widget,
.cid-uOmUgmGkHI .mbr-section-btn {
  text-align: center;
}
.cid-uOmUgmGkHI a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uOmhsXExrT {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOmhsXExrT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOmhsXExrT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOmhsXExrT .row {
  margin: 0 -8px;
}
.cid-uOmhsXExrT .row .card {
  padding: 0 8px;
}
.cid-uOmhsXExrT .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #c4cfde;
}
@media (max-width: 1440px) {
  .cid-uOmhsXExrT .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uOmhsXExrT .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uOmhsXExrT .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uOmhsXExrT .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uOmhsXExrT .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uOmhsXExrT .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uOmhsXExrT .image-wrapper {
  height: 100%;
}
.cid-uOmhsXExrT .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uOmhsXExrT .image-wrapper img {
    height: 300px;
  }
}
.cid-uOmhsXExrT .mbr-section-title {
  color: #2c2c26;
}
.cid-uOmhsXExrT .mbr-text,
.cid-uOmhsXExrT .text-wrapper {
  color: #63635d;
}
.cid-uOmhsXExrT .mbr-section-title,
.cid-uOmhsXExrT .mbr-section-btn {
  color: #16181c;
}
.cid-uOnMyOjSTy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-uOnMyOjSTy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOnMyOjSTy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOnMyOjSTy .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uOnMyOjSTy .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uOnMyOjSTy .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uOnMyOjSTy .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uOnMyOjSTy .content-wrapper .card-wrapper {
  position: relative;
  z-index: 1;
  width: 75%;
  padding: 48px;
  background-color: #f7fff7;
  border: 3px solid #000000;
  box-shadow: 4px 4px 0 0 #000000;
  -webkit-flex: inherit;
}
@media (max-width: 992px) {
  .cid-uOnMyOjSTy .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uOnMyOjSTy .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uOnMyOjSTy .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uOnMyOjSTy .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uOnMyOjSTy .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uOnMyOjSTy .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uOiTq4S2ga {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uOiTq4S2ga .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOiTq4S2ga .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOiTq4S2ga .google-map {
  height: 30rem;
  position: relative;
}
.cid-uOiTq4S2ga .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uOiTq4S2ga .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-uOiTq4S2ga .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uOiTq4S2ga .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uOiTq5aoJ1 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uOiTq5aoJ1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOiTq5aoJ1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOiTq5aoJ1 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uOiTq5aoJ1 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOiTq5aoJ1 .row {
    text-align: center;
  }
  .cid-uOiTq5aoJ1 .social-row {
    justify-content: center;
  }
}
.cid-uOiTq5aoJ1 .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uOiTq5aoJ1 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOiTq5aoJ1 .list {
    margin-bottom: 0rem;
  }
}
.cid-uOiTq5aoJ1 .mbr-text {
  color: #bbbbbb;
}
.cid-uOiTq5aoJ1 .mbr-iconfont {
  color: black;
}
.cid-uOiTq5aoJ1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uP1a6zaawC {
  background-color: transparent;
}
.cid-uP1a6zaawC .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-uP1a6zaawC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-uP1a6zaawC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uP1a6zaawC .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uP1a6zaawC .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uP1a6zaawC .menu_box .navbar.opened,
  .cid-uP1a6zaawC .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uP1a6zaawC .navbar-dropdown {
  position: relative !important;
}
.cid-uP1a6zaawC .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-uP1a6zaawC .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
.cid-uP1a6zaawC .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-uP1a6zaawC .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uP1a6zaawC .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uP1a6zaawC .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
}
.cid-uP1a6zaawC .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uP1a6zaawC .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uP1a6zaawC ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uP1a6zaawC .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uP1a6zaawC .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uP1a6zaawC .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uP1a6zaawC li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uP1a6zaawC .lg_brand {
    margin: 0 1rem;
  }
  .cid-uP1a6zaawC .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uP1a6zaawC .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uP1a6zaawC .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uP1a6zaawC .nav-item {
    margin: 0 !important;
  }
}
.cid-uP1a6zaawC .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uP1a6zaawC .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-uP1a6zaawC .nav-item .nav-link:hover:before,
.cid-uP1a6zaawC .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-uP1a6zaawC .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uP1a6zaawC .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uP1a6zaawC .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uP1a6zaawC .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uP1a6zaawC .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uP1a6zaawC .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
}
.cid-uP1a6zaawC .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uP1a6zaawC .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uP1a6zaawC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uP1a6zaawC .container {
  display: flex;
  margin: auto;
}
.cid-uP1a6zaawC .iconfont-wrapper {
  color: #01004c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uP1a6zaawC .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uP1a6zaawC .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uP1a6zaawC .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uP1a6zaawC .navbar-nav {
    margin: 0;
  }
}
.cid-uP1a6zaawC .dropdown-menu,
.cid-uP1a6zaawC .navbar.opened {
  background-color: false !important;
}
.cid-uP1a6zaawC .nav-item:focus,
.cid-uP1a6zaawC .nav-link:focus {
  outline: none;
}
.cid-uP1a6zaawC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uP1a6zaawC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uP1a6zaawC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uP1a6zaawC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP1a6zaawC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uP1a6zaawC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uP1a6zaawC .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uP1a6zaawC .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uP1a6zaawC .navbar.opened {
  transition: all 0.3s;
}
.cid-uP1a6zaawC .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uP1a6zaawC .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uP1a6zaawC .navbar .navbar-collapse {
  justify-content: space-between;
  justify-content: center;
  z-index: 1;
}
.cid-uP1a6zaawC .navbar.collapsed {
  justify-content: center;
}
.cid-uP1a6zaawC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uP1a6zaawC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uP1a6zaawC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uP1a6zaawC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uP1a6zaawC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uP1a6zaawC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uP1a6zaawC .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uP1a6zaawC .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uP1a6zaawC .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uP1a6zaawC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uP1a6zaawC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uP1a6zaawC .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uP1a6zaawC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uP1a6zaawC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uP1a6zaawC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uP1a6zaawC .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uP1a6zaawC .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uP1a6zaawC .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uP1a6zaawC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uP1a6zaawC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uP1a6zaawC .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uP1a6zaawC .navbar.navbar-short {
  min-height: 60px;
}
.cid-uP1a6zaawC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uP1a6zaawC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uP1a6zaawC .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-uP1a6zaawC .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uP1a6zaawC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uP1a6zaawC .dropdown-item.active,
.cid-uP1a6zaawC .dropdown-item:active {
  background-color: transparent;
}
.cid-uP1a6zaawC .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-uP1a6zaawC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uP1a6zaawC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uP1a6zaawC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uP1a6zaawC ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uP1a6zaawC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uP1a6zaawC button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #000000;
}
.cid-uP1a6zaawC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #01004c;
}
.cid-uP1a6zaawC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uP1a6zaawC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP1a6zaawC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP1a6zaawC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uP1a6zaawC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP1a6zaawC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uP1a6zaawC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uP1a6zaawC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP1a6zaawC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uP1a6zaawC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uP1a6zaawC .navbar {
    height: 70px;
  }
  .cid-uP1a6zaawC .navbar.opened {
    height: auto;
  }
  .cid-uP1a6zaawC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uP1a6zaawC .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uP1a6zaawC .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uP1a6zaawC .navbar-caption:hover {
  color: #ec1722;
}
@media (min-width: 992px) {
  .cid-uP1a6zaawC .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uP1a6zaawC .text_widget {
  margin-bottom: 32px;
}
.cid-uP1a6zaawC .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uP1a6zaawC .text_widget a:hover,
.cid-uP1a6zaawC .text_widget a:focus {
  opacity: .8;
}
.cid-uP1a6zaawC .contacts-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uP1a6zaawC .contacts-wrapper {
    display: none;
  }
}
.cid-uP1a6zaawC .contacts-wrapper a .mbr-contact {
  margin: 8px 20px;
  position: relative;
}
.cid-uP1a6zaawC .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-uP1a6zaawC .contacts-wrapper a .mbr-contact:hover:before,
.cid-uP1a6zaawC .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-uP1a6zaawC .mbr-section-subtitle {
  color: #01004c;
  text-align: center;
}
.cid-uP1a6zaawC .navbar-caption {
  color: #01004c;
}
.cid-uP1a6zaawC .mbr-text {
  color: #01004c;
  text-align: center;
}
.cid-uP1a6zaawC .mbr-section-subtitle,
.cid-uP1a6zaawC .text_widget,
.cid-uP1a6zaawC .mbr-section-btn {
  text-align: center;
}
.cid-uP1a6zaawC a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uP1a6zRwKS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uP1a6zRwKS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a6zRwKS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a6zRwKS .row {
  flex-direction: row-reverse;
}
.cid-uP1a6zRwKS .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uP1a6zRwKS .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.cid-uP1a6zRwKS .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uP1a6zRwKS .col-img {
  padding: 10px;
}
@media (min-width: 992px) {
  .cid-uP1a6zRwKS .col-img {
    padding-right: 30px !important;
  }
}
@media (max-width: 991px) and (min-width: 767px) {
  .cid-uP1a6zRwKS .col-img {
    padding: 30px !important;
  }
}
.cid-uP1a6zRwKS .col-text {
  display: flex;
  align-items: center;
  padding: 10px;
}
.cid-uP1a6zRwKS .text-wrapper {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uP1a6zRwKS .text-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uP1a6zRwKS .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-uP1a6zRwKS .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 22px;
}
.cid-uP1a6zRwKS .mbr-section-subtitle a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-uP1a6zRwKS .mbr-text {
  color: #C4CFDE;
  margin-bottom: 20px;
  padding-right: 16%;
}
@media (max-width: 991px) {
  .cid-uP1a6zRwKS .mbr-text {
    padding-right: 0;
  }
}
.cid-uP1a6zRwKS .mbr-section-btn {
  margin-top: 20px;
}
.cid-uP1a6zRwKS .social-container {
  width: 100%;
  padding-top: 100px;
}
@media (max-width: 991px) {
  .cid-uP1a6zRwKS .social-container {
    padding-top: 40px;
  }
}
.cid-uP1a6zRwKS .social-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-uP1a6zRwKS .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -10px -12px;
}
.cid-uP1a6zRwKS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 10px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uP1a6zRwKS .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uP1a6zRwKS .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uP1a6zRwKS .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uP1a6zRwKS .soc-item:hover:before {
  opacity: 1;
}
.cid-uP1a6zRwKS .soc-item a {
  animation: none;
}
.cid-uP1a6zRwKS .img-wrapper {
  padding: 15px;
  border-radius: 6px;
  position: relative;
  width: 100%;
  background: linear-gradient(to right, #6b67ce, #ff014e);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-uP1a6zRwKS .img-box {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.cid-uP1a6zRwKS .img-box img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 0.75026795;
}
.cid-uP1a6zRwKS .mbr-text,
.cid-uP1a6zRwKS .mbr-section-btn {
  color: #000000;
}
.cid-uP1a6AxgE5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-uP1a6AxgE5 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uP1a6AxgE5 .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uP1a6AxgE5 .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uP1a6AxgE5 .mbr-section-title {
  text-align: center;
  color: #212428;
}
.cid-uP1a6AxgE5 .mbr-text {
  color: #3d5943;
}
.cid-uP1a6AWMfo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a6AWMfo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a6AWMfo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a6AWMfo .content-wrapper .mbr-name {
  margin-bottom: 32px;
}
.cid-uP1a6AWMfo .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uP1a6AWMfo .mbr-name {
  color: #858585;
}
.cid-uP1a6AWMfo .mbr-text {
  color: #191c25;
}
.cid-uP1a6AWMfo .mbr-section-btn {
  text-align: center;
}
.cid-uP1a6Bobi4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a6Bobi4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a6Bobi4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a6Bobi4 .row {
  justify-content: space-between;
}
.cid-uP1a6Bobi4 .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 75px 64px;
  background-color: #c4cfde;
}
@media (max-width: 1440px) {
  .cid-uP1a6Bobi4 .card-wrapper {
    padding: 75px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a6Bobi4 .card-wrapper {
    padding: 24px 12px;
    display: block;
  }
}
.cid-uP1a6Bobi4 .card-wrapper .card-wrap {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uP1a6Bobi4 .card-wrapper .card-wrap {
    width: 100%;
    margin-bottom: 24px;
    padding: 0 14px;
  }
}
.cid-uP1a6Bobi4 .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP1a6Bobi4 .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uP1a6Bobi4 .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uP1a6Bobi4 .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uP1a6Bobi4 .card-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uP1a6Bobi4 .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uP1a6Bobi4 .card-wrapper .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uP1a6Bobi4 .card-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-uP1a6Bobi4 .mbr-section-title {
  color: #ffffff;
}
.cid-uP1a6Bobi4 .mbr-text,
.cid-uP1a6Bobi4 .text-wrapper {
  color: #000000;
}
.cid-uP1a6Bobi4 .mbr-section-title,
.cid-uP1a6Bobi4 .mbr-section-btn {
  color: #000000;
}
.cid-uP1a6BQo1l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a6BQo1l .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a6BQo1l .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-uP1a6BQo1l .container {
    padding: 0 16px;
  }
}
.cid-uP1a6BQo1l .card {
  justify-content: center;
}
.cid-uP1a6BQo1l .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #c4cfde;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uP1a6BQo1l .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uP1a6BQo1l .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uP1a6BQo1l .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uP1a6BQo1l .mbr-section-title {
  color: #000000;
}
.cid-uP1a6BQo1l .mbr-text {
  color: #000000;
}
.cid-uP1a6BQo1l .mbr-desc {
  color: #000000;
}
.cid-uP1a6BQo1l .mbr-section-title,
.cid-uP1a6BQo1l .title-wrapper {
  text-align: center;
}
.cid-uP1a6Cesui {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-uP1a6Cesui .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a6Cesui .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a6Cesui .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-uP1a6Cesui .mbr-section-title {
  color: #212428;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-uP1a6Cesui .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-uP1a6Cesui .mbr-section-subtitle {
  color: #212428;
}
.cid-uP1a6Cesui .card-row {
  align-items: stretch;
}
.cid-uP1a6Cesui .card {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uP1a6Cesui .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 20px;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-uP1a6Cesui .card-box {
  height: 100%;
}
.cid-uP1a6Cesui .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 25px;
}
.cid-uP1a6Cesui .iconfont-wrapper .mbr-iconfont {
  font-size: 45px;
  color: #312ca8;
}
.cid-uP1a6Cesui .card-title {
  color: #000000;
  margin-bottom: 20px;
}
.cid-uP1a6Cesui .card-text {
  color: #212428;
  margin-bottom: 0;
}
.cid-uP1a6D3F2x {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a6D3F2x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a6D3F2x .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-uP1a6D3F2x .container {
    padding: 0 16px;
  }
}
.cid-uP1a6D3F2x .row {
  position: relative;
  z-index: 1;
}
.cid-uP1a6D3F2x .card {
  justify-content: flex-end;
}
.cid-uP1a6D3F2x .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-uP1a6D3F2x .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uP1a6D3F2x .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uP1a6D3F2x .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-uP1a6D3F2x .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-uP1a6D3F2x .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-uP1a6D3F2x .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uP1a6D3F2x .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uP1a6D3F2x .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-uP1a6D3F2x .card-wrapper .card-wrap {
  background-color: #c4cfde;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-uP1a6D3F2x .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-uP1a6D3F2x .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-uP1a6D3F2x .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-uP1a6D3F2x .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-uP1a6D3F2x .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uP1a6D3F2x .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uP1a6D3F2x .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-uP1a6D3F2x .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uP1a6D3F2x .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-uP1a6D3F2x .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a6D3F2x .text-wrapper {
    margin-left: 0;
  }
}
.cid-uP1a6D3F2x .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uP1a6D3F2x .mbr-section-title {
  color: #000000;
  text-align: right;
}
.cid-uP1a6D3F2x .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-uP1a6D3F2x .mbr-text {
  color: #000000;
}
.cid-uP1a6D3F2x .card-desc {
  color: #000000;
}
.cid-uP1a6D3F2x .card-text {
  color: #ffffff;
}
.cid-uP1a6D3F2x .card-name {
  color: #ffffff;
}
.cid-uP1a6D3F2x .card-role {
  color: #13171f;
}
.cid-uP1a6DvIdi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-uP1a6DvIdi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a6DvIdi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1600px) {
  .cid-uP1a6DvIdi .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uP1a6DvIdi .row {
  margin-left: -30px;
  margin-right: -30px;
  justify-content: flex-start;
}
.cid-uP1a6DvIdi .row > [class*="col"] {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 1599px) {
  .cid-uP1a6DvIdi .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-uP1a6DvIdi .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-uP1a6DvIdi .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-uP1a6DvIdi .mbr-section-title {
  color: #212428;
}
.cid-uP1a6DvIdi .mbr-section-subtitle {
  color: #212428;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-uP1a6DvIdi .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uP1a6DvIdi .card-row {
  align-items: stretch;
}
.cid-uP1a6DvIdi .item {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .cid-uP1a6DvIdi .item {
    margin-top: 50px;
  }
}
.cid-uP1a6DvIdi .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: visible;
}
.cid-uP1a6DvIdi .item-wrapper:hover .card-bg {
  opacity: 0.5;
}
.cid-uP1a6DvIdi .item-wrapper:hover .mbr-section-btn {
  margin-top: 0;
  opacity: 1;
}
.cid-uP1a6DvIdi .item-wrapper:hover .card-title {
  color: #c4cfde !important;
}
.cid-uP1a6DvIdi .item-wrapper:hover .card-text {
  color: #c4cfde !important;
}
.cid-uP1a6DvIdi .item-img-shadow {
  width: 100%;
  border-radius: 7px;
}
.cid-uP1a6DvIdi .item-img {
  position: relative;
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 1.02702703;
}
.cid-uP1a6DvIdi .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uP1a6DvIdi .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 6px;
  opacity: 0;
  transition: .5s all;
  pointer-events: none;
}
.cid-uP1a6DvIdi .mbr-section-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: translate(-50%, -50%);
  max-width: 100%;
  margin-top: 10px;
  transition: 0.4s all;
  opacity: 0;
}
.cid-uP1a6DvIdi .mbr-section-btn .btn {
  padding: 10px 18px;
  min-height: 44px;
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .cid-uP1a6DvIdi .mbr-section-btn {
    width: auto;
  }
  .cid-uP1a6DvIdi .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-uP1a6DvIdi .card-box {
  position: relative;
  z-index: 5;
  padding: 39px 30px 0;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uP1a6DvIdi .card-box {
    padding: 20px 10px 0;
  }
}
.cid-uP1a6DvIdi .card-title {
  color: #ffffff;
  margin-bottom: 20px;
  transition: .4s all;
}
.cid-uP1a6DvIdi .card-text {
  color: #212428;
  margin-bottom: 22px;
  transition: .4s all;
}
.cid-uP1a6E6ltt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-uP1a6E6ltt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a6E6ltt .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-uP1a6E6ltt .container {
    padding: 0 15px;
  }
}
.cid-uP1a6E6ltt .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uP1a6E6ltt .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uP1a6E6ltt .content-wrapper {
    padding-right: 0;
  }
}
.cid-uP1a6E6ltt .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uP1a6E6ltt .content-wrap {
    display: block;
  }
}
.cid-uP1a6E6ltt .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uP1a6E6ltt .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uP1a6E6ltt .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uP1a6E6ltt .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uP1a6E6ltt .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #1e2024;
}
.cid-uP1a6E6ltt .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #1e2024;
  transform: rotate(20deg);
}
.cid-uP1a6E6ltt .mbr-section-title {
  color: #212428;
  text-align: center;
}
.cid-uP1a6E6ltt .mbr-desc,
.cid-uP1a6E6ltt .desc-wrapper {
  color: #3f1819;
}
.cid-uP1ejqIDca {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uP1ejqIDca .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1ejqIDca .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-uP1ejqIDca .container {
    padding: 0 30px;
  }
}
.cid-uP1ejqIDca .row {
  justify-content: center;
}
.cid-uP1ejqIDca .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uP1ejqIDca .video-block .video-wrapper iframe {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uP1ejqIDca .video-block .video-wrapper iframe {
    height: 300px;
  }
}
.cid-uP1ejqIDca .video-block .video-wrapper .app-video-wrapper::before {
  color: #ffffff;
  text-shadow: none;
}
.cid-uP1ejqIDca .video-block .video-wrapper .app-video-wrapper img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uP1ejqIDca .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-uP1ejqIDca .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uP1a6ExgV4 {
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a6ExgV4 .section-head {
  margin-bottom: 80px;
}
.cid-uP1a6ExgV4 .card .card-header {
  background-color: transparent;
  border: 3px solid;
  border-color: #000000;
  padding: 1rem;
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-uP1a6ExgV4 .card .card-header {
    padding: 19px;
  }
}
.cid-uP1a6ExgV4 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uP1a6ExgV4 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uP1a6ExgV4 .panel-body,
.cid-uP1a6ExgV4 .card-header {
  padding: 1rem 19px 0;
}
.cid-uP1a6ExgV4 .card {
  padding: 1rem;
  background-color: #c4cfde;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .cid-uP1a6ExgV4 .card {
    padding: 40px;
  }
}
.cid-uP1a6ExgV4 .panel-title-edit {
  color: #000000;
}
.cid-uP1a6ExgV4 .image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-uP1a6ExgV4 .image-wrapper {
    padding: .5rem;
  }
}
.cid-uP1a6ExgV4 .image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  vertical-align: middle;
  display: inline-block;
}
.cid-uP1a6F9XIa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a6F9XIa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a6F9XIa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a6F9XIa .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uP1a6F9XIa .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a6F9XIa .container {
    padding: 0 26px;
  }
}
.cid-uP1a6F9XIa .row {
  justify-content: center;
}
.cid-uP1a6F9XIa .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #c4cfde;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-uP1a6F9XIa .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a6F9XIa .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uP1a6F9XIa .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uP1a6F9XIa .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uP1a6F9XIa .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uP1a6F9XIa .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uP1a6F9XIa .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uP1a6F9XIa .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uP1a6F9XIa .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uP1a6F9XIa .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uP1a6F9XIa .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-uP1a6F9XIa .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-uP1a6F9XIa .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uP1a6F9XIa .mbr-section-title {
  color: #16181c;
}
.cid-uP1a6F9XIa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uP1a6F9XIa .mbr-desc {
  color: #ffffff;
}
.cid-uP1a6F9XIa .mbr-text {
  color: #13171f;
}
.cid-uP1a6F9XIa .mbr-link {
  color: #ffffff;
}
.cid-uP1a6FILrL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a6FILrL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a6FILrL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a6FILrL .row {
  margin: 0 -8px;
}
.cid-uP1a6FILrL .row .card {
  padding: 0 8px;
}
.cid-uP1a6FILrL .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #c4cfde;
}
@media (max-width: 1440px) {
  .cid-uP1a6FILrL .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a6FILrL .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uP1a6FILrL .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uP1a6FILrL .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uP1a6FILrL .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uP1a6FILrL .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uP1a6FILrL .image-wrapper {
  height: 100%;
}
.cid-uP1a6FILrL .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uP1a6FILrL .image-wrapper img {
    height: 300px;
  }
}
.cid-uP1a6FILrL .mbr-section-title {
  color: #2c2c26;
}
.cid-uP1a6FILrL .mbr-text,
.cid-uP1a6FILrL .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uP1a6FILrL .mbr-section-title,
.cid-uP1a6FILrL .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uP1a6GmiXb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-uP1a6GmiXb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a6GmiXb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a6GmiXb .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uP1a6GmiXb .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uP1a6GmiXb .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uP1a6GmiXb .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uP1a6GmiXb .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uP1a6GmiXb .mbr-section-title {
  color: #000000;
}
.cid-uP1a6GmiXb .mbr-desc {
  color: #000000;
}
.cid-uP1a6GmiXb .mbr-text {
  color: #000000;
}
.cid-uP2h2FHd32 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP2h2FHd32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP2h2FHd32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP2h2FHd32 .container-fluid {
  padding: 0 50px;
}
@media (max-width: 1440px) {
  .cid-uP2h2FHd32 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uP2h2FHd32 .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uP2h2FHd32 .container {
    padding: 0 20px;
  }
}
.cid-uP2h2FHd32 .row {
  justify-content: center;
}
.cid-uP2h2FHd32 .desc-wrapper .mbr-desc {
  display: inline-flex;
  border-radius: 100vw;
  padding: 14px 15px;
  margin-bottom: 80px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uP2h2FHd32 .desc-wrapper .mbr-desc {
    margin-bottom: 40px;
  }
}
.cid-uP2h2FHd32 .panel-group .card {
  border-radius: 20px !important;
  background-color: #c4cfde;
  margin-top: 40px;
  padding: 50px;
}
.cid-uP2h2FHd32 .panel-group .card:first-child {
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-uP2h2FHd32 .panel-group .card {
    padding: 20px;
  }
}
.cid-uP2h2FHd32 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uP2h2FHd32 .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uP2h2FHd32 .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uP2h2FHd32 .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  transition: all 0.3s ease-in-out;
  color: #0f1d07;
  margin-left: 20px;
}
.cid-uP2h2FHd32 .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uP2h2FHd32 .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uP2h2FHd32 .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uP2h2FHd32 .mbr-desc {
  color: #ffffff;
}
.cid-uP2h2FHd32 .panel-title-edit {
  color: #16181c;
}
.cid-uP2h2FHd32 .panel-text {
  color: #16181c;
}
.cid-uP2h2FHd32 .mbr-desc,
.cid-uP2h2FHd32 .desc-wrapper {
  color: #232323;
}
.cid-uP1a6GRzcS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f1f3;
}
.cid-uP1a6GRzcS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a6GRzcS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a6GRzcS .card-wrapper {
  padding: 80px;
  background-color: #c4cfde;
}
@media (max-width: 1440px) {
  .cid-uP1a6GRzcS .card-wrapper {
    padding: 80px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a6GRzcS .card-wrapper {
    padding: 0;
  }
}
.cid-uP1a6GRzcS .card-wrapper .google-map iframe {
  height: 550px;
  box-shadow: 5px 30px 50px 0 #191b1f;
}
@media (max-width: 992px) {
  .cid-uP1a6GRzcS .card-wrapper .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a6GRzcS .card-wrapper .google-map iframe {
    box-shadow: none;
  }
}
.cid-uP1a6HpK78 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uP1a6HpK78 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a6HpK78 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a6HpK78 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uP1a6HpK78 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uP1a6HpK78 .row {
    text-align: center;
  }
  .cid-uP1a6HpK78 .social-row {
    justify-content: center;
  }
}
.cid-uP1a6HpK78 .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uP1a6HpK78 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uP1a6HpK78 .list {
    margin-bottom: 0rem;
  }
}
.cid-uP1a6HpK78 .mbr-text {
  color: #bbbbbb;
}
.cid-uP1a6HpK78 .mbr-iconfont {
  color: black;
}
.cid-uP1a6HpK78 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uP1a9e6d9x {
  background-color: transparent;
}
.cid-uP1a9e6d9x .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-uP1a9e6d9x .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-uP1a9e6d9x .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uP1a9e6d9x .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uP1a9e6d9x .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uP1a9e6d9x .menu_box .navbar.opened,
  .cid-uP1a9e6d9x .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uP1a9e6d9x .navbar-dropdown {
  position: relative !important;
}
.cid-uP1a9e6d9x .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-uP1a9e6d9x .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
.cid-uP1a9e6d9x .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-uP1a9e6d9x .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9e6d9x .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uP1a9e6d9x .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
}
.cid-uP1a9e6d9x .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uP1a9e6d9x .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uP1a9e6d9x ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uP1a9e6d9x .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uP1a9e6d9x .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uP1a9e6d9x .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uP1a9e6d9x li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uP1a9e6d9x .lg_brand {
    margin: 0 1rem;
  }
  .cid-uP1a9e6d9x .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uP1a9e6d9x .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uP1a9e6d9x .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uP1a9e6d9x .nav-item {
    margin: 0 !important;
  }
}
.cid-uP1a9e6d9x .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uP1a9e6d9x .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-uP1a9e6d9x .nav-item .nav-link:hover:before,
.cid-uP1a9e6d9x .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-uP1a9e6d9x .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uP1a9e6d9x .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uP1a9e6d9x .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uP1a9e6d9x .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uP1a9e6d9x .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uP1a9e6d9x .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
}
.cid-uP1a9e6d9x .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uP1a9e6d9x .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uP1a9e6d9x .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uP1a9e6d9x .container {
  display: flex;
  margin: auto;
}
.cid-uP1a9e6d9x .iconfont-wrapper {
  color: #01004c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uP1a9e6d9x .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uP1a9e6d9x .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uP1a9e6d9x .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uP1a9e6d9x .navbar-nav {
    margin: 0;
  }
}
.cid-uP1a9e6d9x .dropdown-menu,
.cid-uP1a9e6d9x .navbar.opened {
  background-color: false !important;
}
.cid-uP1a9e6d9x .nav-item:focus,
.cid-uP1a9e6d9x .nav-link:focus {
  outline: none;
}
.cid-uP1a9e6d9x .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uP1a9e6d9x .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uP1a9e6d9x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uP1a9e6d9x .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP1a9e6d9x .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uP1a9e6d9x .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uP1a9e6d9x .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uP1a9e6d9x .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uP1a9e6d9x .navbar.opened {
  transition: all 0.3s;
}
.cid-uP1a9e6d9x .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uP1a9e6d9x .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uP1a9e6d9x .navbar .navbar-collapse {
  justify-content: space-between;
  justify-content: center;
  z-index: 1;
}
.cid-uP1a9e6d9x .navbar.collapsed {
  justify-content: center;
}
.cid-uP1a9e6d9x .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uP1a9e6d9x .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uP1a9e6d9x .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uP1a9e6d9x .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uP1a9e6d9x .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uP1a9e6d9x .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uP1a9e6d9x .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uP1a9e6d9x .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uP1a9e6d9x .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uP1a9e6d9x .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uP1a9e6d9x .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uP1a9e6d9x .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uP1a9e6d9x .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uP1a9e6d9x .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uP1a9e6d9x .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uP1a9e6d9x .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uP1a9e6d9x .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uP1a9e6d9x .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uP1a9e6d9x .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uP1a9e6d9x .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uP1a9e6d9x .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uP1a9e6d9x .navbar.navbar-short {
  min-height: 60px;
}
.cid-uP1a9e6d9x .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uP1a9e6d9x .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uP1a9e6d9x .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-uP1a9e6d9x .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uP1a9e6d9x .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uP1a9e6d9x .dropdown-item.active,
.cid-uP1a9e6d9x .dropdown-item:active {
  background-color: transparent;
}
.cid-uP1a9e6d9x .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-uP1a9e6d9x .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uP1a9e6d9x .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uP1a9e6d9x .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uP1a9e6d9x ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uP1a9e6d9x .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uP1a9e6d9x button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #000000;
}
.cid-uP1a9e6d9x button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #01004c;
}
.cid-uP1a9e6d9x button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uP1a9e6d9x button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP1a9e6d9x button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP1a9e6d9x button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uP1a9e6d9x nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP1a9e6d9x nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uP1a9e6d9x nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uP1a9e6d9x nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP1a9e6d9x a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uP1a9e6d9x .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uP1a9e6d9x .navbar {
    height: 70px;
  }
  .cid-uP1a9e6d9x .navbar.opened {
    height: auto;
  }
  .cid-uP1a9e6d9x .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uP1a9e6d9x .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uP1a9e6d9x .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uP1a9e6d9x .navbar-caption:hover {
  color: #ec1722;
}
@media (min-width: 992px) {
  .cid-uP1a9e6d9x .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uP1a9e6d9x .text_widget {
  margin-bottom: 32px;
}
.cid-uP1a9e6d9x .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uP1a9e6d9x .text_widget a:hover,
.cid-uP1a9e6d9x .text_widget a:focus {
  opacity: .8;
}
.cid-uP1a9e6d9x .contacts-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uP1a9e6d9x .contacts-wrapper {
    display: none;
  }
}
.cid-uP1a9e6d9x .contacts-wrapper a .mbr-contact {
  margin: 8px 20px;
  position: relative;
}
.cid-uP1a9e6d9x .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-uP1a9e6d9x .contacts-wrapper a .mbr-contact:hover:before,
.cid-uP1a9e6d9x .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-uP1a9e6d9x .mbr-section-subtitle {
  color: #01004c;
  text-align: center;
}
.cid-uP1a9e6d9x .navbar-caption {
  color: #01004c;
}
.cid-uP1a9e6d9x .mbr-text {
  color: #01004c;
  text-align: center;
}
.cid-uP1a9e6d9x .mbr-section-subtitle,
.cid-uP1a9e6d9x .text_widget,
.cid-uP1a9e6d9x .mbr-section-btn {
  text-align: center;
}
.cid-uP1a9e6d9x a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uP1a9eF3jH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uP1a9eF3jH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9eF3jH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9eF3jH .row {
  flex-direction: row-reverse;
}
.cid-uP1a9eF3jH .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uP1a9eF3jH .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.cid-uP1a9eF3jH .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uP1a9eF3jH .col-img {
  padding: 10px;
}
@media (min-width: 992px) {
  .cid-uP1a9eF3jH .col-img {
    padding-right: 30px !important;
  }
}
@media (max-width: 991px) and (min-width: 767px) {
  .cid-uP1a9eF3jH .col-img {
    padding: 30px !important;
  }
}
.cid-uP1a9eF3jH .col-text {
  display: flex;
  align-items: center;
  padding: 10px;
}
.cid-uP1a9eF3jH .text-wrapper {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uP1a9eF3jH .text-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uP1a9eF3jH .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-uP1a9eF3jH .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 22px;
}
.cid-uP1a9eF3jH .mbr-section-subtitle a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-uP1a9eF3jH .mbr-text {
  color: #C4CFDE;
  margin-bottom: 20px;
  padding-right: 16%;
}
@media (max-width: 991px) {
  .cid-uP1a9eF3jH .mbr-text {
    padding-right: 0;
  }
}
.cid-uP1a9eF3jH .mbr-section-btn {
  margin-top: 20px;
}
.cid-uP1a9eF3jH .social-container {
  width: 100%;
  padding-top: 100px;
}
@media (max-width: 991px) {
  .cid-uP1a9eF3jH .social-container {
    padding-top: 40px;
  }
}
.cid-uP1a9eF3jH .social-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-uP1a9eF3jH .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -10px -12px;
}
.cid-uP1a9eF3jH .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 10px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uP1a9eF3jH .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uP1a9eF3jH .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uP1a9eF3jH .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uP1a9eF3jH .soc-item:hover:before {
  opacity: 1;
}
.cid-uP1a9eF3jH .soc-item a {
  animation: none;
}
.cid-uP1a9eF3jH .img-wrapper {
  padding: 15px;
  border-radius: 6px;
  position: relative;
  width: 100%;
  background: linear-gradient(to right, #6b67ce, #ff014e);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-uP1a9eF3jH .img-box {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.cid-uP1a9eF3jH .img-box img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 0.75026795;
}
.cid-uP1a9eF3jH .mbr-text,
.cid-uP1a9eF3jH .mbr-section-btn {
  color: #000000;
}
.cid-uP1a9faVGv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-uP1a9faVGv .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uP1a9faVGv .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uP1a9faVGv .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uP1a9faVGv .mbr-section-title {
  text-align: center;
  color: #212428;
}
.cid-uP1a9faVGv .mbr-text {
  color: #3d5943;
}
.cid-uP1a9fEdjX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a9fEdjX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9fEdjX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9fEdjX .content-wrapper .mbr-name {
  margin-bottom: 32px;
}
.cid-uP1a9fEdjX .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uP1a9fEdjX .mbr-name {
  color: #858585;
}
.cid-uP1a9fEdjX .mbr-text {
  color: #191c25;
}
.cid-uP1a9fEdjX .mbr-section-btn {
  text-align: center;
}
.cid-uP1a9g5UFr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a9g5UFr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9g5UFr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9g5UFr .row {
  justify-content: space-between;
}
.cid-uP1a9g5UFr .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 75px 64px;
  background-color: #c4cfde;
}
@media (max-width: 1440px) {
  .cid-uP1a9g5UFr .card-wrapper {
    padding: 75px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9g5UFr .card-wrapper {
    padding: 24px 12px;
    display: block;
  }
}
.cid-uP1a9g5UFr .card-wrapper .card-wrap {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uP1a9g5UFr .card-wrapper .card-wrap {
    width: 100%;
    margin-bottom: 24px;
    padding: 0 14px;
  }
}
.cid-uP1a9g5UFr .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP1a9g5UFr .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uP1a9g5UFr .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uP1a9g5UFr .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uP1a9g5UFr .card-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uP1a9g5UFr .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uP1a9g5UFr .card-wrapper .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uP1a9g5UFr .card-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-uP1a9g5UFr .mbr-section-title {
  color: #ffffff;
}
.cid-uP1a9g5UFr .mbr-text,
.cid-uP1a9g5UFr .text-wrapper {
  color: #000000;
}
.cid-uP1a9g5UFr .mbr-section-title,
.cid-uP1a9g5UFr .mbr-section-btn {
  color: #000000;
}
.cid-uP1a9gvH2q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a9gvH2q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9gvH2q .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-uP1a9gvH2q .container {
    padding: 0 16px;
  }
}
.cid-uP1a9gvH2q .card {
  justify-content: center;
}
.cid-uP1a9gvH2q .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #c4cfde;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uP1a9gvH2q .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uP1a9gvH2q .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uP1a9gvH2q .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uP1a9gvH2q .mbr-section-title {
  color: #000000;
}
.cid-uP1a9gvH2q .mbr-text {
  color: #000000;
}
.cid-uP1a9gvH2q .mbr-desc {
  color: #000000;
}
.cid-uP1a9gvH2q .mbr-section-title,
.cid-uP1a9gvH2q .title-wrapper {
  text-align: center;
}
.cid-uP1a9gWjkY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-uP1a9gWjkY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9gWjkY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9gWjkY .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-uP1a9gWjkY .mbr-section-title {
  color: #212428;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-uP1a9gWjkY .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-uP1a9gWjkY .mbr-section-subtitle {
  color: #212428;
}
.cid-uP1a9gWjkY .card-row {
  align-items: stretch;
}
.cid-uP1a9gWjkY .card {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uP1a9gWjkY .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 20px;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-uP1a9gWjkY .card-box {
  height: 100%;
}
.cid-uP1a9gWjkY .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 25px;
}
.cid-uP1a9gWjkY .iconfont-wrapper .mbr-iconfont {
  font-size: 45px;
  color: #312ca8;
}
.cid-uP1a9gWjkY .card-title {
  color: #000000;
  margin-bottom: 20px;
}
.cid-uP1a9gWjkY .card-text {
  color: #212428;
  margin-bottom: 0;
}
.cid-uP1a9hEqAT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a9hEqAT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9hEqAT .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-uP1a9hEqAT .container {
    padding: 0 16px;
  }
}
.cid-uP1a9hEqAT .row {
  position: relative;
  z-index: 1;
}
.cid-uP1a9hEqAT .card {
  justify-content: flex-end;
}
.cid-uP1a9hEqAT .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-uP1a9hEqAT .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9hEqAT .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uP1a9hEqAT .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-uP1a9hEqAT .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-uP1a9hEqAT .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-uP1a9hEqAT .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uP1a9hEqAT .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uP1a9hEqAT .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-uP1a9hEqAT .card-wrapper .card-wrap {
  background-color: #c4cfde;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-uP1a9hEqAT .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-uP1a9hEqAT .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-uP1a9hEqAT .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-uP1a9hEqAT .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-uP1a9hEqAT .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uP1a9hEqAT .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uP1a9hEqAT .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-uP1a9hEqAT .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uP1a9hEqAT .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-uP1a9hEqAT .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9hEqAT .text-wrapper {
    margin-left: 0;
  }
}
.cid-uP1a9hEqAT .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uP1a9hEqAT .mbr-section-title {
  color: #000000;
  text-align: right;
}
.cid-uP1a9hEqAT .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-uP1a9hEqAT .mbr-text {
  color: #000000;
}
.cid-uP1a9hEqAT .card-desc {
  color: #000000;
}
.cid-uP1a9hEqAT .card-text {
  color: #ffffff;
}
.cid-uP1a9hEqAT .card-name {
  color: #ffffff;
}
.cid-uP1a9hEqAT .card-role {
  color: #13171f;
}
.cid-uP1a9i6yV8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-uP1a9i6yV8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9i6yV8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1600px) {
  .cid-uP1a9i6yV8 .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uP1a9i6yV8 .row {
  margin-left: -30px;
  margin-right: -30px;
  justify-content: flex-start;
}
.cid-uP1a9i6yV8 .row > [class*="col"] {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 1599px) {
  .cid-uP1a9i6yV8 .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-uP1a9i6yV8 .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-uP1a9i6yV8 .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-uP1a9i6yV8 .mbr-section-title {
  color: #212428;
}
.cid-uP1a9i6yV8 .mbr-section-subtitle {
  color: #212428;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-uP1a9i6yV8 .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uP1a9i6yV8 .card-row {
  align-items: stretch;
}
.cid-uP1a9i6yV8 .item {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .cid-uP1a9i6yV8 .item {
    margin-top: 50px;
  }
}
.cid-uP1a9i6yV8 .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: visible;
}
.cid-uP1a9i6yV8 .item-wrapper:hover .card-bg {
  opacity: 0.5;
}
.cid-uP1a9i6yV8 .item-wrapper:hover .mbr-section-btn {
  margin-top: 0;
  opacity: 1;
}
.cid-uP1a9i6yV8 .item-wrapper:hover .card-title {
  color: #c4cfde !important;
}
.cid-uP1a9i6yV8 .item-wrapper:hover .card-text {
  color: #c4cfde !important;
}
.cid-uP1a9i6yV8 .item-img-shadow {
  width: 100%;
  border-radius: 7px;
}
.cid-uP1a9i6yV8 .item-img {
  position: relative;
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 1.02702703;
}
.cid-uP1a9i6yV8 .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uP1a9i6yV8 .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 6px;
  opacity: 0;
  transition: .5s all;
  pointer-events: none;
}
.cid-uP1a9i6yV8 .mbr-section-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: translate(-50%, -50%);
  max-width: 100%;
  margin-top: 10px;
  transition: 0.4s all;
  opacity: 0;
}
.cid-uP1a9i6yV8 .mbr-section-btn .btn {
  padding: 10px 18px;
  min-height: 44px;
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .cid-uP1a9i6yV8 .mbr-section-btn {
    width: auto;
  }
  .cid-uP1a9i6yV8 .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-uP1a9i6yV8 .card-box {
  position: relative;
  z-index: 5;
  padding: 39px 30px 0;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uP1a9i6yV8 .card-box {
    padding: 20px 10px 0;
  }
}
.cid-uP1a9i6yV8 .card-title {
  color: #ffffff;
  margin-bottom: 20px;
  transition: .4s all;
}
.cid-uP1a9i6yV8 .card-text {
  color: #212428;
  margin-bottom: 22px;
  transition: .4s all;
}
.cid-uP1a9iJ62Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-uP1a9iJ62Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9iJ62Y .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-uP1a9iJ62Y .container {
    padding: 0 15px;
  }
}
.cid-uP1a9iJ62Y .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uP1a9iJ62Y .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uP1a9iJ62Y .content-wrapper {
    padding-right: 0;
  }
}
.cid-uP1a9iJ62Y .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uP1a9iJ62Y .content-wrap {
    display: block;
  }
}
.cid-uP1a9iJ62Y .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uP1a9iJ62Y .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uP1a9iJ62Y .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uP1a9iJ62Y .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uP1a9iJ62Y .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #1e2024;
}
.cid-uP1a9iJ62Y .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #1e2024;
  transform: rotate(20deg);
}
.cid-uP1a9iJ62Y .mbr-section-title {
  color: #212428;
  text-align: center;
}
.cid-uP1a9iJ62Y .mbr-desc,
.cid-uP1a9iJ62Y .desc-wrapper {
  color: #3f1819;
}
.cid-uP1a9jaKS6 {
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a9jaKS6 .section-head {
  margin-bottom: 80px;
}
.cid-uP1a9jaKS6 .card .card-header {
  background-color: transparent;
  border: 3px solid;
  border-color: #000000;
  padding: 1rem;
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-uP1a9jaKS6 .card .card-header {
    padding: 19px;
  }
}
.cid-uP1a9jaKS6 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uP1a9jaKS6 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uP1a9jaKS6 .panel-body,
.cid-uP1a9jaKS6 .card-header {
  padding: 1rem 19px 0;
}
.cid-uP1a9jaKS6 .card {
  padding: 1rem;
  background-color: #c4cfde;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .cid-uP1a9jaKS6 .card {
    padding: 40px;
  }
}
.cid-uP1a9jaKS6 .panel-title-edit {
  color: #000000;
}
.cid-uP1a9jaKS6 .image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-uP1a9jaKS6 .image-wrapper {
    padding: .5rem;
  }
}
.cid-uP1a9jaKS6 .image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  vertical-align: middle;
  display: inline-block;
}
.cid-uP1a9jTrMR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a9jTrMR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9jTrMR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9jTrMR .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uP1a9jTrMR .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9jTrMR .container {
    padding: 0 26px;
  }
}
.cid-uP1a9jTrMR .row {
  justify-content: center;
}
.cid-uP1a9jTrMR .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #c4cfde;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-uP1a9jTrMR .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9jTrMR .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uP1a9jTrMR .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uP1a9jTrMR .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uP1a9jTrMR .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uP1a9jTrMR .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uP1a9jTrMR .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uP1a9jTrMR .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uP1a9jTrMR .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uP1a9jTrMR .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uP1a9jTrMR .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-uP1a9jTrMR .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-uP1a9jTrMR .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uP1a9jTrMR .mbr-section-title {
  color: #16181c;
}
.cid-uP1a9jTrMR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uP1a9jTrMR .mbr-desc {
  color: #ffffff;
}
.cid-uP1a9jTrMR .mbr-text {
  color: #13171f;
}
.cid-uP1a9jTrMR .mbr-link {
  color: #ffffff;
}
.cid-uP1a9knZ3d {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a9knZ3d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9knZ3d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9knZ3d .row {
  margin: 0 -8px;
}
.cid-uP1a9knZ3d .row .card {
  padding: 0 8px;
}
.cid-uP1a9knZ3d .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #c4cfde;
}
@media (max-width: 1440px) {
  .cid-uP1a9knZ3d .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9knZ3d .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uP1a9knZ3d .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uP1a9knZ3d .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uP1a9knZ3d .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uP1a9knZ3d .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uP1a9knZ3d .image-wrapper {
  height: 100%;
}
.cid-uP1a9knZ3d .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uP1a9knZ3d .image-wrapper img {
    height: 300px;
  }
}
.cid-uP1a9knZ3d .mbr-section-title {
  color: #2c2c26;
}
.cid-uP1a9knZ3d .mbr-text,
.cid-uP1a9knZ3d .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uP1a9knZ3d .mbr-section-title,
.cid-uP1a9knZ3d .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uP1a9kSY4I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-uP1a9kSY4I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9kSY4I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9kSY4I .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uP1a9kSY4I .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uP1a9kSY4I .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uP1a9kSY4I .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uP1a9kSY4I .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uP1a9kSY4I .mbr-section-title {
  color: #000000;
}
.cid-uP1a9kSY4I .mbr-desc {
  color: #000000;
}
.cid-uP1a9kSY4I .mbr-text {
  color: #000000;
}
.cid-uP2hL0ia7z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP2hL0ia7z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP2hL0ia7z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP2hL0ia7z .container-fluid {
  padding: 0 50px;
}
@media (max-width: 1440px) {
  .cid-uP2hL0ia7z .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uP2hL0ia7z .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uP2hL0ia7z .container {
    padding: 0 20px;
  }
}
.cid-uP2hL0ia7z .row {
  justify-content: center;
}
.cid-uP2hL0ia7z .desc-wrapper .mbr-desc {
  display: inline-flex;
  border-radius: 100vw;
  padding: 14px 15px;
  margin-bottom: 80px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uP2hL0ia7z .desc-wrapper .mbr-desc {
    margin-bottom: 40px;
  }
}
.cid-uP2hL0ia7z .panel-group .card {
  border-radius: 20px !important;
  background-color: #c4cfde;
  margin-top: 40px;
  padding: 50px;
}
.cid-uP2hL0ia7z .panel-group .card:first-child {
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-uP2hL0ia7z .panel-group .card {
    padding: 20px;
  }
}
.cid-uP2hL0ia7z .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uP2hL0ia7z .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uP2hL0ia7z .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uP2hL0ia7z .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  transition: all 0.3s ease-in-out;
  color: #0f1d07;
  margin-left: 20px;
}
.cid-uP2hL0ia7z .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uP2hL0ia7z .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uP2hL0ia7z .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uP2hL0ia7z .mbr-desc {
  color: #ffffff;
}
.cid-uP2hL0ia7z .panel-title-edit {
  color: #16181c;
}
.cid-uP2hL0ia7z .panel-text {
  color: #16181c;
}
.cid-uP2hL0ia7z .mbr-desc,
.cid-uP2hL0ia7z .desc-wrapper {
  color: #232323;
}
.cid-uP1a9lmCqH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f1f3;
}
.cid-uP1a9lmCqH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9lmCqH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9lmCqH .card-wrapper {
  padding: 80px;
  background-color: #c4cfde;
}
@media (max-width: 1440px) {
  .cid-uP1a9lmCqH .card-wrapper {
    padding: 80px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9lmCqH .card-wrapper {
    padding: 0;
  }
}
.cid-uP1a9lmCqH .card-wrapper .google-map iframe {
  height: 550px;
  box-shadow: 5px 30px 50px 0 #191b1f;
}
@media (max-width: 992px) {
  .cid-uP1a9lmCqH .card-wrapper .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9lmCqH .card-wrapper .google-map iframe {
    box-shadow: none;
  }
}
.cid-uP1a9lYS5R {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uP1a9lYS5R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9lYS5R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9lYS5R .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uP1a9lYS5R .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uP1a9lYS5R .row {
    text-align: center;
  }
  .cid-uP1a9lYS5R .social-row {
    justify-content: center;
  }
}
.cid-uP1a9lYS5R .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uP1a9lYS5R .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uP1a9lYS5R .list {
    margin-bottom: 0rem;
  }
}
.cid-uP1a9lYS5R .mbr-text {
  color: #bbbbbb;
}
.cid-uP1a9lYS5R .mbr-iconfont {
  color: black;
}
.cid-uP1a9lYS5R .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uP1a9FOmBR {
  background-color: transparent;
}
.cid-uP1a9FOmBR .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-uP1a9FOmBR .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-uP1a9FOmBR .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uP1a9FOmBR .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uP1a9FOmBR .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uP1a9FOmBR .menu_box .navbar.opened,
  .cid-uP1a9FOmBR .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uP1a9FOmBR .navbar-dropdown {
  position: relative !important;
}
.cid-uP1a9FOmBR .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-uP1a9FOmBR .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
.cid-uP1a9FOmBR .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-uP1a9FOmBR .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9FOmBR .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uP1a9FOmBR .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
}
.cid-uP1a9FOmBR .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uP1a9FOmBR .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uP1a9FOmBR ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uP1a9FOmBR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uP1a9FOmBR .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uP1a9FOmBR .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uP1a9FOmBR li.nav-item {
    position: relative;
    display: inline-block;
    padding: 0 !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uP1a9FOmBR .lg_brand {
    margin: 0 1rem;
  }
  .cid-uP1a9FOmBR .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uP1a9FOmBR .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uP1a9FOmBR .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uP1a9FOmBR .nav-item {
    margin: 0 !important;
  }
}
.cid-uP1a9FOmBR .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uP1a9FOmBR .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-uP1a9FOmBR .nav-item .nav-link:hover:before,
.cid-uP1a9FOmBR .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-uP1a9FOmBR .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uP1a9FOmBR .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uP1a9FOmBR .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uP1a9FOmBR .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uP1a9FOmBR .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uP1a9FOmBR .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
}
.cid-uP1a9FOmBR .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uP1a9FOmBR .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uP1a9FOmBR .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uP1a9FOmBR .container {
  display: flex;
  margin: auto;
}
.cid-uP1a9FOmBR .iconfont-wrapper {
  color: #01004c;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uP1a9FOmBR .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uP1a9FOmBR .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uP1a9FOmBR .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uP1a9FOmBR .navbar-nav {
    margin: 0;
  }
}
.cid-uP1a9FOmBR .dropdown-menu,
.cid-uP1a9FOmBR .navbar.opened {
  background-color: false !important;
}
.cid-uP1a9FOmBR .nav-item:focus,
.cid-uP1a9FOmBR .nav-link:focus {
  outline: none;
}
.cid-uP1a9FOmBR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uP1a9FOmBR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uP1a9FOmBR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uP1a9FOmBR .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uP1a9FOmBR .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uP1a9FOmBR .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uP1a9FOmBR .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uP1a9FOmBR .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uP1a9FOmBR .navbar.opened {
  transition: all 0.3s;
}
.cid-uP1a9FOmBR .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uP1a9FOmBR .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uP1a9FOmBR .navbar .navbar-collapse {
  justify-content: space-between;
  justify-content: center;
  z-index: 1;
}
.cid-uP1a9FOmBR .navbar.collapsed {
  justify-content: center;
}
.cid-uP1a9FOmBR .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uP1a9FOmBR .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uP1a9FOmBR .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uP1a9FOmBR .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uP1a9FOmBR .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uP1a9FOmBR .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uP1a9FOmBR .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uP1a9FOmBR .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uP1a9FOmBR .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uP1a9FOmBR .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uP1a9FOmBR .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uP1a9FOmBR .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uP1a9FOmBR .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uP1a9FOmBR .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uP1a9FOmBR .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uP1a9FOmBR .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uP1a9FOmBR .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uP1a9FOmBR .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uP1a9FOmBR .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uP1a9FOmBR .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uP1a9FOmBR .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uP1a9FOmBR .navbar.navbar-short {
  min-height: 60px;
}
.cid-uP1a9FOmBR .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uP1a9FOmBR .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uP1a9FOmBR .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-uP1a9FOmBR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uP1a9FOmBR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uP1a9FOmBR .dropdown-item.active,
.cid-uP1a9FOmBR .dropdown-item:active {
  background-color: transparent;
}
.cid-uP1a9FOmBR .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-uP1a9FOmBR .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uP1a9FOmBR .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uP1a9FOmBR .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uP1a9FOmBR ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uP1a9FOmBR .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uP1a9FOmBR button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #000000;
  background: #000000;
}
.cid-uP1a9FOmBR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #01004c;
}
.cid-uP1a9FOmBR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uP1a9FOmBR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP1a9FOmBR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP1a9FOmBR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uP1a9FOmBR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP1a9FOmBR nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uP1a9FOmBR nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uP1a9FOmBR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP1a9FOmBR a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uP1a9FOmBR .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uP1a9FOmBR .navbar {
    height: 70px;
  }
  .cid-uP1a9FOmBR .navbar.opened {
    height: auto;
  }
  .cid-uP1a9FOmBR .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uP1a9FOmBR .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uP1a9FOmBR .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uP1a9FOmBR .navbar-caption:hover {
  color: #ec1722;
}
@media (min-width: 992px) {
  .cid-uP1a9FOmBR .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uP1a9FOmBR .text_widget {
  margin-bottom: 32px;
}
.cid-uP1a9FOmBR .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uP1a9FOmBR .text_widget a:hover,
.cid-uP1a9FOmBR .text_widget a:focus {
  opacity: .8;
}
.cid-uP1a9FOmBR .contacts-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uP1a9FOmBR .contacts-wrapper {
    display: none;
  }
}
.cid-uP1a9FOmBR .contacts-wrapper a .mbr-contact {
  margin: 8px 20px;
  position: relative;
}
.cid-uP1a9FOmBR .contacts-wrapper a .mbr-contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #01004c;
  transition: all 0.3s ease-in-out;
}
.cid-uP1a9FOmBR .contacts-wrapper a .mbr-contact:hover:before,
.cid-uP1a9FOmBR .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-uP1a9FOmBR .mbr-section-subtitle {
  color: #01004c;
  text-align: center;
}
.cid-uP1a9FOmBR .navbar-caption {
  color: #01004c;
}
.cid-uP1a9FOmBR .mbr-text {
  color: #01004c;
  text-align: center;
}
.cid-uP1a9FOmBR .mbr-section-subtitle,
.cid-uP1a9FOmBR .text_widget,
.cid-uP1a9FOmBR .mbr-section-btn {
  text-align: center;
}
.cid-uP1a9FOmBR a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uP1a9GnXEX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uP1a9GnXEX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9GnXEX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9GnXEX .row {
  flex-direction: row-reverse;
}
.cid-uP1a9GnXEX .container {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uP1a9GnXEX .row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.cid-uP1a9GnXEX .row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.cid-uP1a9GnXEX .col-img {
  padding: 10px;
}
@media (min-width: 992px) {
  .cid-uP1a9GnXEX .col-img {
    padding-right: 30px !important;
  }
}
@media (max-width: 991px) and (min-width: 767px) {
  .cid-uP1a9GnXEX .col-img {
    padding: 30px !important;
  }
}
.cid-uP1a9GnXEX .col-text {
  display: flex;
  align-items: center;
  padding: 10px;
}
.cid-uP1a9GnXEX .text-wrapper {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uP1a9GnXEX .text-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uP1a9GnXEX .mbr-section-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-uP1a9GnXEX .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 22px;
}
.cid-uP1a9GnXEX .mbr-section-subtitle a {
  font-weight: inherit;
  pointer-events: none;
}
.cid-uP1a9GnXEX .mbr-text {
  color: #C4CFDE;
  margin-bottom: 20px;
  padding-right: 16%;
}
@media (max-width: 991px) {
  .cid-uP1a9GnXEX .mbr-text {
    padding-right: 0;
  }
}
.cid-uP1a9GnXEX .mbr-section-btn {
  margin-top: 20px;
}
.cid-uP1a9GnXEX .social-container {
  width: 100%;
  padding-top: 100px;
}
@media (max-width: 991px) {
  .cid-uP1a9GnXEX .social-container {
    padding-top: 40px;
  }
}
.cid-uP1a9GnXEX .social-title {
  color: #C4CFDE;
  margin-bottom: 20px;
}
.cid-uP1a9GnXEX .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -10px -12px;
}
.cid-uP1a9GnXEX .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 10px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
  transition: 0.4s all;
}
.cid-uP1a9GnXEX .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uP1a9GnXEX .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uP1a9GnXEX .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uP1a9GnXEX .soc-item:hover:before {
  opacity: 1;
}
.cid-uP1a9GnXEX .soc-item a {
  animation: none;
}
.cid-uP1a9GnXEX .img-wrapper {
  padding: 15px;
  border-radius: 6px;
  position: relative;
  width: 100%;
  background: linear-gradient(to right, #6b67ce, #ff014e);
  box-shadow: 10px 10px 19px #191b1f, -10px -10px 19px #23272b;
}
.cid-uP1a9GnXEX .img-box {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.cid-uP1a9GnXEX .img-box img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 0.75026795;
}
.cid-uP1a9GnXEX .mbr-text,
.cid-uP1a9GnXEX .mbr-section-btn {
  color: #000000;
}
.cid-uP1a9GRJBu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-uP1a9GRJBu .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uP1a9GRJBu .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uP1a9GRJBu .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uP1a9GRJBu .mbr-section-title {
  text-align: center;
  color: #212428;
}
.cid-uP1a9GRJBu .mbr-text {
  color: #3d5943;
}
.cid-uP1a9Hg1ZM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a9Hg1ZM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9Hg1ZM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9Hg1ZM .content-wrapper .mbr-name {
  margin-bottom: 32px;
}
.cid-uP1a9Hg1ZM .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uP1a9Hg1ZM .mbr-name {
  color: #858585;
}
.cid-uP1a9Hg1ZM .mbr-text {
  color: #191c25;
}
.cid-uP1a9Hg1ZM .mbr-section-btn {
  text-align: center;
}
.cid-uP1a9HEskH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a9HEskH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9HEskH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9HEskH .row {
  justify-content: space-between;
}
.cid-uP1a9HEskH .card-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 75px 64px;
  background-color: #c4cfde;
}
@media (max-width: 1440px) {
  .cid-uP1a9HEskH .card-wrapper {
    padding: 75px 32px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9HEskH .card-wrapper {
    padding: 24px 12px;
    display: block;
  }
}
.cid-uP1a9HEskH .card-wrapper .card-wrap {
  width: 40%;
}
@media (max-width: 992px) {
  .cid-uP1a9HEskH .card-wrapper .card-wrap {
    width: 100%;
    margin-bottom: 24px;
    padding: 0 14px;
  }
}
.cid-uP1a9HEskH .card-wrapper .card-wrap .mbr-section-title {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP1a9HEskH .card-wrapper .card-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uP1a9HEskH .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uP1a9HEskH .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uP1a9HEskH .card-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uP1a9HEskH .card-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-uP1a9HEskH .card-wrapper .image-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uP1a9HEskH .card-wrapper .image-wrapper img {
    height: 300px;
  }
}
.cid-uP1a9HEskH .mbr-section-title {
  color: #ffffff;
}
.cid-uP1a9HEskH .mbr-text,
.cid-uP1a9HEskH .text-wrapper {
  color: #000000;
}
.cid-uP1a9HEskH .mbr-section-title,
.cid-uP1a9HEskH .mbr-section-btn {
  color: #000000;
}
.cid-uP1a9IgDgl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a9IgDgl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9IgDgl .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-uP1a9IgDgl .container {
    padding: 0 16px;
  }
}
.cid-uP1a9IgDgl .card {
  justify-content: center;
}
.cid-uP1a9IgDgl .title-wrapper .mbr-section-title {
  display: inline-flex;
  margin-bottom: 0;
  padding: 18px 24px;
  border-radius: 16px !important;
  box-shadow: 6px 8px 0 0 #000000;
  background-color: #c4cfde;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uP1a9IgDgl .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uP1a9IgDgl .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uP1a9IgDgl .text-wrapper .mbr-desc {
  margin-top: 24px;
  margin-bottom: 0;
}
.cid-uP1a9IgDgl .mbr-section-title {
  color: #000000;
}
.cid-uP1a9IgDgl .mbr-text {
  color: #000000;
}
.cid-uP1a9IgDgl .mbr-desc {
  color: #000000;
}
.cid-uP1a9IgDgl .mbr-section-title,
.cid-uP1a9IgDgl .title-wrapper {
  text-align: center;
}
.cid-uP1a9IJqC1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-uP1a9IJqC1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9IJqC1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9IJqC1 .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-uP1a9IJqC1 .mbr-section-title {
  color: #212428;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cid-uP1a9IJqC1 .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-uP1a9IJqC1 .mbr-section-subtitle {
  color: #212428;
}
.cid-uP1a9IJqC1 .card-row {
  align-items: stretch;
}
.cid-uP1a9IJqC1 .card {
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uP1a9IJqC1 .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 20px;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}
.cid-uP1a9IJqC1 .card-box {
  height: 100%;
}
.cid-uP1a9IJqC1 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 25px;
}
.cid-uP1a9IJqC1 .iconfont-wrapper .mbr-iconfont {
  font-size: 45px;
  color: #312ca8;
}
.cid-uP1a9IJqC1 .card-title {
  color: #000000;
  margin-bottom: 20px;
}
.cid-uP1a9IJqC1 .card-text {
  color: #212428;
  margin-bottom: 0;
}
.cid-uP1a9Jpw6K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a9Jpw6K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9Jpw6K .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-uP1a9Jpw6K .container {
    padding: 0 16px;
  }
}
.cid-uP1a9Jpw6K .row {
  position: relative;
  z-index: 1;
}
.cid-uP1a9Jpw6K .card {
  justify-content: flex-end;
}
.cid-uP1a9Jpw6K .card-wrapper {
  margin-right: 64px;
}
@media (max-width: 1440px) {
  .cid-uP1a9Jpw6K .card-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9Jpw6K .card-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uP1a9Jpw6K .card-wrapper .image-wrapper {
  position: relative;
  margin-bottom: -8rem;
}
.cid-uP1a9Jpw6K .card-wrapper .image-wrapper img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 1200px) {
  .cid-uP1a9Jpw6K .card-wrapper .image-wrapper img {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 768px) {
  .cid-uP1a9Jpw6K .card-wrapper .image-wrapper img {
    width: 260px;
    height: 260px;
  }
}
.cid-uP1a9Jpw6K .card-wrapper .image-wrapper .card-desc {
  position: absolute;
  top: 55%;
  left: -1rem;
  display: inline-flex;
  margin-bottom: 0;
  padding: 6px 16px;
  border-radius: 4rem !important;
  box-shadow: 4px 6px 0 0 #000000;
  background-color: #c6f15c;
  transform: rotate(-4deg);
}
@media (max-width: 992px) {
  .cid-uP1a9Jpw6K .card-wrapper .image-wrapper .card-desc {
    left: .5rem;
  }
}
.cid-uP1a9Jpw6K .card-wrapper .card-wrap {
  background-color: #c4cfde;
  box-shadow: 4px 6px 0 0 #000000;
  border-radius: 16px;
  padding: 175px 48px 36px;
  margin: 0 50px;
}
@media (max-width: 992px) {
  .cid-uP1a9Jpw6K .card-wrapper .card-wrap {
    margin: 0;
    padding: 150px 24px 24px;
  }
}
.cid-uP1a9Jpw6K .card-wrapper .card-wrap .card-text {
  margin-bottom: 16px;
}
.cid-uP1a9Jpw6K .card-wrapper .card-wrap .person-wrap .card-name {
  margin-bottom: 0;
}
.cid-uP1a9Jpw6K .card-wrapper .card-wrap .person-wrap .card-role {
  margin-bottom: 0;
}
.cid-uP1a9Jpw6K .title-wrapper {
  margin-bottom: 96px;
}
@media (max-width: 992px) {
  .cid-uP1a9Jpw6K .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uP1a9Jpw6K .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-uP1a9Jpw6K .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uP1a9Jpw6K .text-wrapper {
  margin-left: 104px;
}
@media (max-width: 1440px) {
  .cid-uP1a9Jpw6K .text-wrapper {
    margin-left: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9Jpw6K .text-wrapper {
    margin-left: 0;
  }
}
.cid-uP1a9Jpw6K .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uP1a9Jpw6K .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uP1a9Jpw6K .mbr-section-subtitle {
  color: #000000;
  text-align: right;
}
.cid-uP1a9Jpw6K .mbr-text {
  color: #000000;
}
.cid-uP1a9Jpw6K .card-desc {
  color: #000000;
}
.cid-uP1a9Jpw6K .card-text {
  color: #ffffff;
}
.cid-uP1a9Jpw6K .card-name {
  color: #ffffff;
}
.cid-uP1a9Jpw6K .card-role {
  color: #13171f;
}
.cid-uP1a9JRIQ9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #212428;
}
.cid-uP1a9JRIQ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9JRIQ9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1600px) {
  .cid-uP1a9JRIQ9 .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cid-uP1a9JRIQ9 .row {
  margin-left: -30px;
  margin-right: -30px;
  justify-content: flex-start;
}
.cid-uP1a9JRIQ9 .row > [class*="col"] {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 1599px) {
  .cid-uP1a9JRIQ9 .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .cid-uP1a9JRIQ9 .row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-uP1a9JRIQ9 .mbr-section-head {
  margin-bottom: 30px;
  width: 100%;
}
.cid-uP1a9JRIQ9 .mbr-section-title {
  color: #212428;
}
.cid-uP1a9JRIQ9 .mbr-section-subtitle {
  color: #212428;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .cid-uP1a9JRIQ9 .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-uP1a9JRIQ9 .card-row {
  align-items: stretch;
}
.cid-uP1a9JRIQ9 .item {
  margin-top: 80px;
}
@media (max-width: 991px) {
  .cid-uP1a9JRIQ9 .item {
    margin-top: 50px;
  }
}
.cid-uP1a9JRIQ9 .item-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: visible;
}
.cid-uP1a9JRIQ9 .item-wrapper:hover .card-bg {
  opacity: 0.5;
}
.cid-uP1a9JRIQ9 .item-wrapper:hover .mbr-section-btn {
  margin-top: 0;
  opacity: 1;
}
.cid-uP1a9JRIQ9 .item-wrapper:hover .card-title {
  color: #c4cfde !important;
}
.cid-uP1a9JRIQ9 .item-wrapper:hover .card-text {
  color: #c4cfde !important;
}
.cid-uP1a9JRIQ9 .item-img-shadow {
  width: 100%;
  border-radius: 7px;
}
.cid-uP1a9JRIQ9 .item-img {
  position: relative;
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 1.02702703;
}
.cid-uP1a9JRIQ9 .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uP1a9JRIQ9 .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 6px;
  opacity: 0;
  transition: .5s all;
  pointer-events: none;
}
.cid-uP1a9JRIQ9 .mbr-section-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  margin-left: 0 !important;
  margin-right: 0 !important;
  transform: translate(-50%, -50%);
  max-width: 100%;
  margin-top: 10px;
  transition: 0.4s all;
  opacity: 0;
}
.cid-uP1a9JRIQ9 .mbr-section-btn .btn {
  padding: 10px 18px;
  min-height: 44px;
  box-shadow: none !important;
}
@media (max-width: 575px) {
  .cid-uP1a9JRIQ9 .mbr-section-btn {
    width: auto;
  }
  .cid-uP1a9JRIQ9 .mbr-section-btn .btn {
    width: auto;
    min-width: auto !important;
  }
}
.cid-uP1a9JRIQ9 .card-box {
  position: relative;
  z-index: 5;
  padding: 39px 30px 0;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uP1a9JRIQ9 .card-box {
    padding: 20px 10px 0;
  }
}
.cid-uP1a9JRIQ9 .card-title {
  color: #ffffff;
  margin-bottom: 20px;
  transition: .4s all;
}
.cid-uP1a9JRIQ9 .card-text {
  color: #212428;
  margin-bottom: 22px;
  transition: .4s all;
}
.cid-uP1a9Kuo8N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-uP1a9Kuo8N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9Kuo8N .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-uP1a9Kuo8N .container {
    padding: 0 15px;
  }
}
.cid-uP1a9Kuo8N .content-wrapper {
  padding-right: 130px;
}
@media (max-width: 1440px) {
  .cid-uP1a9Kuo8N .content-wrapper {
    padding-right: 60px;
  }
}
@media (max-width: 1200px) {
  .cid-uP1a9Kuo8N .content-wrapper {
    padding-right: 0;
  }
}
.cid-uP1a9Kuo8N .content-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uP1a9Kuo8N .content-wrap {
    display: block;
  }
}
.cid-uP1a9Kuo8N .content-wrap .mbr-section-title {
  width: 50%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uP1a9Kuo8N .content-wrap .mbr-section-title {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uP1a9Kuo8N .content-wrap .mbr-text {
  width: 38%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uP1a9Kuo8N .content-wrap .mbr-text {
    margin-bottom: 40px;
    width: 100%;
  }
}
.cid-uP1a9Kuo8N .border-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background-color: #1e2024;
}
.cid-uP1a9Kuo8N .border-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background-color: #1e2024;
  transform: rotate(20deg);
}
.cid-uP1a9Kuo8N .mbr-section-title {
  color: #212428;
  text-align: center;
}
.cid-uP1a9Kuo8N .mbr-desc,
.cid-uP1a9Kuo8N .desc-wrapper {
  color: #3f1819;
}
.cid-uP1a9KWFg6 {
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: -3px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a9KWFg6 .section-head {
  margin-bottom: 80px;
}
.cid-uP1a9KWFg6 .card .card-header {
  background-color: transparent;
  border: 3px solid;
  border-color: #000000;
  padding: 1rem;
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-uP1a9KWFg6 .card .card-header {
    padding: 19px;
  }
}
.cid-uP1a9KWFg6 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uP1a9KWFg6 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #000000;
}
.cid-uP1a9KWFg6 .panel-body,
.cid-uP1a9KWFg6 .card-header {
  padding: 1rem 19px 0;
}
.cid-uP1a9KWFg6 .card {
  padding: 1rem;
  background-color: #c4cfde;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .cid-uP1a9KWFg6 .card {
    padding: 40px;
  }
}
.cid-uP1a9KWFg6 .panel-title-edit {
  color: #000000;
}
.cid-uP1a9KWFg6 .image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .cid-uP1a9KWFg6 .image-wrapper {
    padding: .5rem;
  }
}
.cid-uP1a9KWFg6 .image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  vertical-align: middle;
  display: inline-block;
}
.cid-uP1a9LBaIV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a9LBaIV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9LBaIV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9LBaIV .container-fluid {
  padding: 0 56px;
}
@media (max-width: 992px) {
  .cid-uP1a9LBaIV .container-fluid {
    padding: 0 26px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9LBaIV .container {
    padding: 0 26px;
  }
}
.cid-uP1a9LBaIV .row {
  justify-content: center;
}
.cid-uP1a9LBaIV .content-wrapper {
  display: flex;
  align-items: center;
  padding: 200px 100px 200px 60px;
  background-color: #c4cfde;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .cid-uP1a9LBaIV .content-wrapper {
    padding: 100px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9LBaIV .content-wrapper {
    padding: 100px 20px;
    display: block;
  }
}
.cid-uP1a9LBaIV .content-wrapper .title-wrapper {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .cid-uP1a9LBaIV .content-wrapper .title-wrapper {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uP1a9LBaIV .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-uP1a9LBaIV .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uP1a9LBaIV .content-wrapper .text-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uP1a9LBaIV .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uP1a9LBaIV .content-wrapper .text-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uP1a9LBaIV .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uP1a9LBaIV .content-wrapper .text-wrapper .link-wrapper:hover .mbr-link,
.cid-uP1a9LBaIV .content-wrapper .text-wrapper .link-wrapper:focus .mbr-link {
  color: #000000;
}
.cid-uP1a9LBaIV .content-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uP1a9LBaIV .mbr-section-title {
  color: #16181c;
}
.cid-uP1a9LBaIV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uP1a9LBaIV .mbr-desc {
  color: #ffffff;
}
.cid-uP1a9LBaIV .mbr-text {
  color: #13171f;
}
.cid-uP1a9LBaIV .mbr-link {
  color: #ffffff;
}
.cid-uP1a9M5rQH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP1a9M5rQH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9M5rQH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9M5rQH .row {
  margin: 0 -8px;
}
.cid-uP1a9M5rQH .row .card {
  padding: 0 8px;
}
.cid-uP1a9M5rQH .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #c4cfde;
}
@media (max-width: 1440px) {
  .cid-uP1a9M5rQH .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9M5rQH .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uP1a9M5rQH .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uP1a9M5rQH .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uP1a9M5rQH .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uP1a9M5rQH .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uP1a9M5rQH .image-wrapper {
  height: 100%;
}
.cid-uP1a9M5rQH .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uP1a9M5rQH .image-wrapper img {
    height: 300px;
  }
}
.cid-uP1a9M5rQH .mbr-section-title {
  color: #2c2c26;
}
.cid-uP1a9M5rQH .mbr-text,
.cid-uP1a9M5rQH .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uP1a9M5rQH .mbr-section-title,
.cid-uP1a9M5rQH .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uP1a9MDGXy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #c4cfde;
}
.cid-uP1a9MDGXy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9MDGXy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9MDGXy .mbr-section-btn {
  margin-bottom: 22px;
}
.cid-uP1a9MDGXy .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uP1a9MDGXy .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uP1a9MDGXy .title-wrapper .mbr-desc {
    margin-bottom: 32px;
  }
}
.cid-uP1a9MDGXy .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uP1a9MDGXy .mbr-section-title {
  color: #000000;
}
.cid-uP1a9MDGXy .mbr-desc {
  color: #000000;
}
.cid-uP1a9MDGXy .mbr-text {
  color: #000000;
}
.cid-uP2ivtwZro {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uP2ivtwZro .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP2ivtwZro .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP2ivtwZro .container-fluid {
  padding: 0 50px;
}
@media (max-width: 1440px) {
  .cid-uP2ivtwZro .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .cid-uP2ivtwZro .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uP2ivtwZro .container {
    padding: 0 20px;
  }
}
.cid-uP2ivtwZro .row {
  justify-content: center;
}
.cid-uP2ivtwZro .desc-wrapper .mbr-desc {
  display: inline-flex;
  border-radius: 100vw;
  padding: 14px 15px;
  margin-bottom: 80px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uP2ivtwZro .desc-wrapper .mbr-desc {
    margin-bottom: 40px;
  }
}
.cid-uP2ivtwZro .panel-group .card {
  border-radius: 20px !important;
  background-color: #c4cfde;
  margin-top: 40px;
  padding: 50px;
}
.cid-uP2ivtwZro .panel-group .card:first-child {
  margin-top: 0;
}
@media (max-width: 992px) {
  .cid-uP2ivtwZro .panel-group .card {
    padding: 20px;
  }
}
.cid-uP2ivtwZro .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uP2ivtwZro .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uP2ivtwZro .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uP2ivtwZro .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  transition: all 0.3s ease-in-out;
  color: #0f1d07;
  margin-left: 20px;
}
.cid-uP2ivtwZro .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(45deg);
}
.cid-uP2ivtwZro .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uP2ivtwZro .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
  opacity: .5;
}
.cid-uP2ivtwZro .mbr-desc {
  color: #ffffff;
}
.cid-uP2ivtwZro .panel-title-edit {
  color: #16181c;
}
.cid-uP2ivtwZro .panel-text {
  color: #16181c;
}
.cid-uP2ivtwZro .mbr-desc,
.cid-uP2ivtwZro .desc-wrapper {
  color: #232323;
}
.cid-uP1a9N6uHy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f1f3;
}
.cid-uP1a9N6uHy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9N6uHy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9N6uHy .card-wrapper {
  padding: 80px;
  background-color: #c4cfde;
}
@media (max-width: 1440px) {
  .cid-uP1a9N6uHy .card-wrapper {
    padding: 80px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9N6uHy .card-wrapper {
    padding: 0;
  }
}
.cid-uP1a9N6uHy .card-wrapper .google-map iframe {
  height: 550px;
  box-shadow: 5px 30px 50px 0 #191b1f;
}
@media (max-width: 992px) {
  .cid-uP1a9N6uHy .card-wrapper .google-map iframe {
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uP1a9N6uHy .card-wrapper .google-map iframe {
    box-shadow: none;
  }
}
.cid-uP1a9NBbya {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uP1a9NBbya .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP1a9NBbya .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP1a9NBbya .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uP1a9NBbya .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uP1a9NBbya .row {
    text-align: center;
  }
  .cid-uP1a9NBbya .social-row {
    justify-content: center;
  }
}
.cid-uP1a9NBbya .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-uP1a9NBbya .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uP1a9NBbya .list {
    margin-bottom: 0rem;
  }
}
.cid-uP1a9NBbya .mbr-text {
  color: #bbbbbb;
}
.cid-uP1a9NBbya .mbr-iconfont {
  color: black;
}
.cid-uP1a9NBbya .mbr-section-subtitle {
  color: #ffffff;
}
