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: #dbc800 !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: #dbc800 !important;
  border-color: #dbc800 !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: #847900 !important;
  border-color: #847900 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #847900 !important;
  border-color: #847900 !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: #dbc800;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #847900 !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: #dbc800 !important;
  border-color: #dbc800 !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: #dbc800 !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: #756b00 !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: #dbc800;
}
.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: #dbc800;
  border-color: #dbc800;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #dbc800;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fff7a8;
}
.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: #dbc800 !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: #dbc800;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #dbc800;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #dbc800;
}
.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: #dbc800;
  border-bottom-color: #dbc800;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #dbc800 !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='%23dbc800' %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: #dbc800 !important;
  background: linear-gradient(145deg, #1e2024, #23272b) !important;
}
.custom-section-btn .btn-black:hover {
  color: #dbc800 !important;
  background: linear-gradient(to right bottom, #212428, #16181c) !important;
  transform: translateY(-5px);
}
.custom-section-btn .btn-white {
  color: #dbc800 !important;
  background: #FFFFFF !important;
  box-shadow: none !important;
}
.custom-section-btn .btn-white:hover {
  color: #dbc800 !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: #dbc800;
}
@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-uOmVKBRUES {
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-bottom: 2px solid #ffffff;
  background-color: #11bcae;
}
.cid-uOmVKBRUES .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOmVKBRUES .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOmVKBRUES .card {
  justify-content: center;
}
.cid-uOmVKBRUES .content-wrapper {
  padding: 0 108px;
}
@media (max-width: 1440px) {
  .cid-uOmVKBRUES .content-wrapper {
    padding: 0 64px;
  }
}
@media (max-width: 992px) {
  .cid-uOmVKBRUES .content-wrapper {
    padding: 0;
    margin-bottom: 32px;
  }
}
.cid-uOmVKBRUES .content-wrapper .mbr-section-btn {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-uOmVKBRUES .content-wrapper .mbr-section-btn {
    margin-bottom: 22px;
  }
}
.cid-uOmVKBRUES .content-wrapper .tag-wrapper {
  margin-bottom: 20px;
}
.cid-uOmVKBRUES .content-wrapper .tag-wrapper .mbr-tag {
  padding: 6px 16px;
  display: inline-block;
  margin-bottom: 0;
  border: 2px solid #ffffff;
}
.cid-uOmVKBRUES .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uOmVKBRUES .content-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uOmVKBRUES .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uOmVKBRUES .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-uOmVKBRUES .image-wrapper {
  padding-right: 108px;
}
@media (max-width: 1440px) {
  .cid-uOmVKBRUES .image-wrapper {
    padding-right: 64px;
  }
}
@media (max-width: 992px) {
  .cid-uOmVKBRUES .image-wrapper {
    padding-right: 0;
  }
}
.cid-uOmVKBRUES .image-wrapper img {
  height: 800px;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: -10px 10px 0 0 #ffffff;
}
@media (max-width: 992px) {
  .cid-uOmVKBRUES .image-wrapper img {
    box-shadow: -5px 5px 0 0 #ffffff;
    height: 350px;
  }
}
@media (max-width: 992px) {
  .cid-uOmVKBRUES .image-wrapper img {
    box-shadow: -5px 5px 0 0 #ffffff;
  }
}
.cid-uOmVKBRUES .mbr-section-title {
  color: #ffffff;
}
.cid-uOmVKBRUES .mbr-tag {
  color: #ffffff;
}
.cid-uOmVKBRUES .mbr-text {
  color: #ffffff;
}
.cid-uOmVKBRUES .mbr-section-title,
.cid-uOmVKBRUES .mbr-section-btn {
  color: #000000;
}
.cid-uOmVKBRUES .mbr-text,
.cid-uOmVKBRUES .text-wrapper {
  color: #000000;
}
.cid-uOmZUL2UgT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eeeef7;
}
.cid-uOmZUL2UgT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOmZUL2UgT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOmZUL2UgT .items-wrap {
  justify-content: space-between;
}
.cid-uOmZUL2UgT .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 96px;
  background-color: #11bcae;
}
@media (max-width: 1440px) {
  .cid-uOmZUL2UgT .content-wrapper {
    padding: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uOmZUL2UgT .content-wrapper {
    padding: 26px 22px 22px;
    margin-bottom: 12px;
  }
}
.cid-uOmZUL2UgT .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uOmZUL2UgT .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uOmZUL2UgT .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uOmZUL2UgT .content-wrapper .content-wrap .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uOmZUL2UgT .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uOmZUL2UgT .content-wrapper .number-wrapper_1 {
  margin-top: 250px;
}
@media (max-width: 1440px) {
  .cid-uOmZUL2UgT .content-wrapper .number-wrapper_1 {
    margin-top: 150px;
  }
}
@media (max-width: 992px) {
  .cid-uOmZUL2UgT .content-wrapper .number-wrapper_1 {
    margin-top: 60px;
  }
}
.cid-uOmZUL2UgT .content-wrapper .number-wrapper_1 .mbr-number_1 {
  margin-bottom: 0;
}
.cid-uOmZUL2UgT .image-wrapper {
  position: relative;
  border: 3px solid #11bcae;
  background-color: #11bcae;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uOmZUL2UgT .image-wrapper {
    height: 350px;
  }
}
.cid-uOmZUL2UgT .image-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uOmZUL2UgT .image-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uOmZUL2UgT .image-wrapper .number-wrapper_2 {
  position: relative;
  z-index: 1;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uOmZUL2UgT .image-wrapper .number-wrapper_2 {
    padding: 22px;
  }
}
.cid-uOmZUL2UgT .image-wrapper .number-wrapper_2 .mbr-number_2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 100%;
  background-color: #11bcae;
  margin-bottom: 0;
}
.cid-uOmZUL2UgT .mbr-section-title {
  color: #191c25;
}
.cid-uOmZUL2UgT .mbr-text {
  color: #000000;
}
.cid-uOmZUL2UgT .mbr-number_1 {
  color: #191c25;
}
.cid-uOmZUL2UgT .mbr-number_2,
.cid-uOmZUL2UgT .number-wrapper_2 {
  color: #191c25;
  text-align: right;
}
.cid-uOmZUL2UgT .mbr-section-title,
.cid-uOmZUL2UgT .mbr-section-btn {
  color: #000000;
}
.cid-uOhWFGp1UV {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uOhWFGp1UV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOhWFGp1UV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOhWFGp1UV .card-wrapper {
  background: #11bcae;
}
@media (max-width: 767px) {
  .cid-uOhWFGp1UV .card-wrapper {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uOhWFGp1UV .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-uOhWFGp1UV .card-wrapper {
    padding: 9rem 4rem;
  }
}
.cid-uOhWFGp1UV .mbr-text,
.cid-uOhWFGp1UV .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uOhWFGp1UV .card-title,
.cid-uOhWFGp1UV .card-box {
  text-align: center;
  color: #000000;
}
.cid-uOnymh9inl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #11bcae;
}
.cid-uOnymh9inl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOnymh9inl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOnymh9inl .items-wrap {
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uOnymh9inl .image-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uOnymh9inl .image-wrapper img {
  height: 660px;
  object-fit: cover;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uOnymh9inl .image-wrapper img {
    height: 350px;
  }
}
.cid-uOnymh9inl .content-wrapper {
  padding-top: 60px;
}
@media (max-width: 992px) {
  .cid-uOnymh9inl .content-wrapper {
    margin-bottom: 32px;
    padding-top: 0;
  }
}
.cid-uOnymh9inl .content-wrapper .title-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uOnymh9inl .content-wrapper .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uOnymh9inl .content-wrapper .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uOnymh9inl .content-wrapper .title-wrapper .title-wrap {
    display: block;
  }
}
.cid-uOnymh9inl .content-wrapper .title-wrapper .title-wrap .logo-wrap {
  margin-right: 48px;
}
.cid-uOnymh9inl .content-wrapper .title-wrapper .title-wrap .logo-wrap img {
  width: 86px;
  height: 86px;
  border-radius: 100% !important;
  object-fit: contain;
}
@media (max-width: 1440px) {
  .cid-uOnymh9inl .content-wrapper .title-wrapper .title-wrap .logo-wrap {
    margin-right: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uOnymh9inl .content-wrapper .title-wrapper .title-wrap .logo-wrap {
    margin-right: 0;
    margin-bottom: 22px;
  }
}
.cid-uOnymh9inl .content-wrapper .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uOnymh9inl .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 65%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uOnymh9inl .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 32px;
  }
}
.cid-uOnymh9inl .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  width: 75%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uOnymh9inl .content-wrapper .desc-wrapper .mbr-desc {
    width: 100%;
  }
}
.cid-uOnymh9inl .mbr-section-title {
  color: #191c25;
}
.cid-uOnymh9inl .mbr-text {
  color: #191c25;
}
.cid-uOnymh9inl .mbr-desc {
  color: #858585;
}
.cid-uOn1Tj4q18 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #11bcae;
  overflow: hidden;
}
.cid-uOn1Tj4q18 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOn1Tj4q18 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOn1Tj4q18 .item-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 40px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e2024, #23272b);
  box-shadow: 10px 10px 19px #ffffff, -10px -10px 19px #ffffff;
}
@media (max-width: 767px) {
  .cid-uOn1Tj4q18 .item-wrap {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .cid-uOn1Tj4q18 .item-wrap {
    padding: 35px 25px 35px 25px;
  }
}
.cid-uOn1Tj4q18 .card-title {
  color: #C4CFDE;
  margin-bottom: 15px;
}
.cid-uOn1Tj4q18 .card-subtitle {
  color: #C4CFDE;
  margin-bottom: 15px;
}
.cid-uOn1Tj4q18 .border-item {
  width: 100%;
  height: 1px;
  margin-bottom: 20px;
  background-color: #16181c;
}
.cid-uOn1Tj4q18 .card-text {
  color: #C4CFDE;
  margin-bottom: 0;
}
.cid-uOn1Tj4q18 H5 {
  text-align: left;
}
.cid-uOnBHbOf2g {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.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-uPV2A5ua0k {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPV2A5ua0k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPV2A5ua0k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPV2A5ua0k .row {
  margin: 0 -8px;
}
.cid-uPV2A5ua0k .row .card {
  padding: 0 8px;
}
.cid-uPV2A5ua0k .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #11bcae;
}
@media (max-width: 1440px) {
  .cid-uPV2A5ua0k .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uPV2A5ua0k .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uPV2A5ua0k .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uPV2A5ua0k .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uPV2A5ua0k .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uPV2A5ua0k .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uPV2A5ua0k .image-wrapper {
  height: 100%;
}
.cid-uPV2A5ua0k .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uPV2A5ua0k .image-wrapper img {
    height: 300px;
  }
}
.cid-uPV2A5ua0k .mbr-section-title {
  color: #2c2c26;
}
.cid-uPV2A5ua0k .mbr-text,
.cid-uPV2A5ua0k .text-wrapper {
  color: #000000;
}
.cid-uPV39HIMJL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPV39HIMJL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPV39HIMJL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPV39HIMJL .row {
  justify-content: center;
}
.cid-uPV39HIMJL .image-wrapper img {
  height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uPV39HIMJL .image-wrapper img {
    height: 300px;
  }
}
.cid-uPV39HIMJL .card-wrapper {
  position: relative;
  padding: 64px;
  overflow: hidden;
  margin-top: -25%;
}
@media (max-width: 1440px) {
  .cid-uPV39HIMJL .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uPV39HIMJL .card-wrapper {
    padding: 24px;
    margin-top: 12px;
  }
}
.cid-uPV39HIMJL .card-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  pointer-events: none;
}
.cid-uPV39HIMJL .card-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #11bcae;
  opacity: .5;
  pointer-events: none;
}
.cid-uPV39HIMJL .card-wrapper .mbr-section-title {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uPV39HIMJL .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uPV39HIMJL .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uPV39HIMJL .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-uPV39HIMJL .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uPV39HIMJL .card-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uPV39HIMJL .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uPV39HIMJL .mbr-section-title {
  color: #2c2c26;
}
.cid-uPV39HIMJL .mbr-text,
.cid-uPV39HIMJL .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uPV39HIMJL .mbr-section-title,
.cid-uPV39HIMJL .mbr-section-btn {
  text-align: center;
}
.cid-uPV84hXSZN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uPV84hXSZN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPV84hXSZN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPV84hXSZN .title-wrapper {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uPV84hXSZN .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uPV84hXSZN .title-wrapper .mbr-label {
  margin-bottom: 22px;
}
.cid-uPV84hXSZN .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uPV84hXSZN .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-uPV84hXSZN .items-wrapper {
  justify-content: center;
  margin: 0 -24px;
}
.cid-uPV84hXSZN .items-wrapper .item {
  padding: 0 24px;
  margin-bottom: 82px;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uPV84hXSZN .items-wrapper .item {
    margin-bottom: 32px;
  }
}
.cid-uPV84hXSZN .items-wrapper .item .item-wrapper {
  border-radius: 0 !important;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uPV84hXSZN .items-wrapper .item .item-wrapper {
    padding-right: 0;
    display: block;
  }
}
.cid-uPV84hXSZN .items-wrapper .item .item-wrapper .iconfont-wrapper {
  padding-right: 22px;
}
@media (max-width: 992px) {
  .cid-uPV84hXSZN .items-wrapper .item .item-wrapper .iconfont-wrapper {
    padding-right: 0;
    margin-bottom: 16px;
  }
}
.cid-uPV84hXSZN .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  display: inline-block;
  font-size: 104px;
  color: #c10b02;
}
@media (max-width: 1640px) {
  .cid-uPV84hXSZN .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
    font-size: 64px;
  }
}
@media (max-width: 1200px) {
  .cid-uPV84hXSZN .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
    font-size: 48px;
  }
}
.cid-uPV84hXSZN .items-wrapper .item .item-wrapper .item-content {
  width: 80%;
}
@media (max-width: 992px) {
  .cid-uPV84hXSZN .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
  }
}
.cid-uPV84hXSZN .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-uPV84hXSZN .mbr-label {
  color: #c10b02;
}
.cid-uPV84hXSZN .mbr-section-title {
  color: #c10b02;
}
.cid-uPV84hXSZN .item-title {
  color: #ffffff;
}
.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: #11bcae;
}
@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 #11bcae;
}
@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-uPV2h8dJ1R {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uPV2h8dJ1R .media-container-row .mbr-text {
  color: #fdfde1;
  text-align: center;
}
.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: #dbc800;
}
@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-uOmgatJnuD {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOmgatJnuD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOmgatJnuD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOmgatJnuD .row {
  margin: 0 -8px;
}
.cid-uOmgatJnuD .row .card {
  padding: 0 8px;
}
.cid-uOmgatJnuD .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #11bcae;
}
@media (max-width: 1440px) {
  .cid-uOmgatJnuD .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uOmgatJnuD .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uOmgatJnuD .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uOmgatJnuD .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uOmgatJnuD .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uOmgatJnuD .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uOmgatJnuD .image-wrapper {
  height: 100%;
}
.cid-uOmgatJnuD .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uOmgatJnuD .image-wrapper img {
    height: 300px;
  }
}
.cid-uOmgatJnuD .mbr-section-title {
  color: #2c2c26;
}
.cid-uOmgatJnuD .mbr-text,
.cid-uOmgatJnuD .text-wrapper {
  color: #63635d;
}
.cid-uOmgatJnuD .mbr-section-title,
.cid-uOmgatJnuD .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uOnM05e6tu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #11bcae;
}
.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;
  border: 2px solid #87ceeb;
}
@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-uPV2h8dJ1R {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uPV2h8dJ1R .media-container-row .mbr-text {
  color: #fdfde1;
  text-align: center;
}
.cid-uPW4a4bgBf {
  background-color: transparent;
}
.cid-uPW4a4bgBf .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-uPW4a4bgBf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-uPW4a4bgBf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPW4a4bgBf .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uPW4a4bgBf .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uPW4a4bgBf .menu_box .navbar.opened,
  .cid-uPW4a4bgBf .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uPW4a4bgBf .navbar-dropdown {
  position: relative !important;
}
.cid-uPW4a4bgBf .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-uPW4a4bgBf .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
.cid-uPW4a4bgBf .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-uPW4a4bgBf .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uPW4a4bgBf .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uPW4a4bgBf .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
}
.cid-uPW4a4bgBf .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uPW4a4bgBf .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uPW4a4bgBf ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uPW4a4bgBf .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uPW4a4bgBf .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-uPW4a4bgBf .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uPW4a4bgBf 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-uPW4a4bgBf .lg_brand {
    margin: 0 1rem;
  }
  .cid-uPW4a4bgBf .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uPW4a4bgBf .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uPW4a4bgBf .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uPW4a4bgBf .nav-item {
    margin: 0 !important;
  }
}
.cid-uPW4a4bgBf .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uPW4a4bgBf .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-uPW4a4bgBf .nav-item .nav-link:hover:before,
.cid-uPW4a4bgBf .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-uPW4a4bgBf .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uPW4a4bgBf .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uPW4a4bgBf .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uPW4a4bgBf .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uPW4a4bgBf .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-uPW4a4bgBf .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
}
.cid-uPW4a4bgBf .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uPW4a4bgBf .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uPW4a4bgBf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uPW4a4bgBf .container {
  display: flex;
  margin: auto;
}
.cid-uPW4a4bgBf .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-uPW4a4bgBf .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uPW4a4bgBf .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uPW4a4bgBf .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uPW4a4bgBf .navbar-nav {
    margin: 0;
  }
}
.cid-uPW4a4bgBf .dropdown-menu,
.cid-uPW4a4bgBf .navbar.opened {
  background-color: false !important;
}
.cid-uPW4a4bgBf .nav-item:focus,
.cid-uPW4a4bgBf .nav-link:focus {
  outline: none;
}
.cid-uPW4a4bgBf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPW4a4bgBf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPW4a4bgBf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPW4a4bgBf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPW4a4bgBf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPW4a4bgBf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPW4a4bgBf .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uPW4a4bgBf .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uPW4a4bgBf .navbar.opened {
  transition: all 0.3s;
}
.cid-uPW4a4bgBf .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uPW4a4bgBf .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uPW4a4bgBf .navbar .navbar-collapse {
  justify-content: space-between;
  justify-content: center;
  z-index: 1;
}
.cid-uPW4a4bgBf .navbar.collapsed {
  justify-content: center;
}
.cid-uPW4a4bgBf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPW4a4bgBf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uPW4a4bgBf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPW4a4bgBf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPW4a4bgBf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPW4a4bgBf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uPW4a4bgBf .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPW4a4bgBf .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uPW4a4bgBf .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uPW4a4bgBf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPW4a4bgBf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPW4a4bgBf .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uPW4a4bgBf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPW4a4bgBf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uPW4a4bgBf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPW4a4bgBf .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uPW4a4bgBf .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uPW4a4bgBf .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uPW4a4bgBf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uPW4a4bgBf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPW4a4bgBf .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uPW4a4bgBf .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPW4a4bgBf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPW4a4bgBf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPW4a4bgBf .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-uPW4a4bgBf .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uPW4a4bgBf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPW4a4bgBf .dropdown-item.active,
.cid-uPW4a4bgBf .dropdown-item:active {
  background-color: transparent;
}
.cid-uPW4a4bgBf .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-uPW4a4bgBf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPW4a4bgBf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPW4a4bgBf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPW4a4bgBf ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uPW4a4bgBf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPW4a4bgBf 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-uPW4a4bgBf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #01004c;
}
.cid-uPW4a4bgBf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPW4a4bgBf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPW4a4bgBf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPW4a4bgBf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPW4a4bgBf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPW4a4bgBf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPW4a4bgBf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPW4a4bgBf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPW4a4bgBf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uPW4a4bgBf .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-uPW4a4bgBf .navbar {
    height: 70px;
  }
  .cid-uPW4a4bgBf .navbar.opened {
    height: auto;
  }
  .cid-uPW4a4bgBf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPW4a4bgBf .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uPW4a4bgBf .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uPW4a4bgBf .navbar-caption:hover {
  color: #dbc800;
}
@media (min-width: 992px) {
  .cid-uPW4a4bgBf .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uPW4a4bgBf .text_widget {
  margin-bottom: 32px;
}
.cid-uPW4a4bgBf .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uPW4a4bgBf .text_widget a:hover,
.cid-uPW4a4bgBf .text_widget a:focus {
  opacity: .8;
}
.cid-uPW4a4bgBf .contacts-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uPW4a4bgBf .contacts-wrapper {
    display: none;
  }
}
.cid-uPW4a4bgBf .contacts-wrapper a .mbr-contact {
  margin: 8px 20px;
  position: relative;
}
.cid-uPW4a4bgBf .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-uPW4a4bgBf .contacts-wrapper a .mbr-contact:hover:before,
.cid-uPW4a4bgBf .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-uPW4a4bgBf .mbr-section-subtitle {
  color: #01004c;
  text-align: center;
}
.cid-uPW4a4bgBf .navbar-caption {
  color: #01004c;
}
.cid-uPW4a4bgBf .mbr-text {
  color: #01004c;
  text-align: center;
}
.cid-uPW4a4bgBf .mbr-section-subtitle,
.cid-uPW4a4bgBf .text_widget,
.cid-uPW4a4bgBf .mbr-section-btn {
  text-align: center;
}
.cid-uPW4a4bgBf a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uPW4a54FFP {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPW4a54FFP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPW4a54FFP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPW4a54FFP .row {
  margin: 0 -8px;
}
.cid-uPW4a54FFP .row .card {
  padding: 0 8px;
}
.cid-uPW4a54FFP .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #11bcae;
}
@media (max-width: 1440px) {
  .cid-uPW4a54FFP .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uPW4a54FFP .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uPW4a54FFP .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uPW4a54FFP .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uPW4a54FFP .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uPW4a54FFP .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uPW4a54FFP .image-wrapper {
  height: 100%;
}
.cid-uPW4a54FFP .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uPW4a54FFP .image-wrapper img {
    height: 300px;
  }
}
.cid-uPW4a54FFP .mbr-section-title {
  color: #2c2c26;
}
.cid-uPW4a54FFP .mbr-text,
.cid-uPW4a54FFP .text-wrapper {
  color: #63635d;
}
.cid-uPW4a54FFP .mbr-section-title,
.cid-uPW4a54FFP .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uPW4a5xnba {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #11bcae;
}
.cid-uPW4a5xnba .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPW4a5xnba .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPW4a5xnba .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uPW4a5xnba .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uPW4a5xnba .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPW4a5xnba .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uPW4a5xnba .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-uPW4a5xnba .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uPW4a5xnba .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uPW4a5xnba .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uPW4a5xnba .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uPW4a5xnba .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uPW4a5xnba .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uPW4a6db84 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPW4a6db84 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPW4a6db84 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPW4a6db84 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPW4a6db84 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPW4a6db84 .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-uPW4a6db84 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPW4a6db84 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPW4a6J9Ph {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uPW4a6J9Ph .media-container-row .mbr-text {
  color: #fdfde1;
  text-align: center;
}
.cid-uPW4b5dRMM {
  background-color: transparent;
}
.cid-uPW4b5dRMM .navbar-dropdown {
  background-color: #000000 !important;
  padding: 0;
}
.cid-uPW4b5dRMM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #000000 !important;
  background: #000000;
}
.cid-uPW4b5dRMM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPW4b5dRMM .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uPW4b5dRMM .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uPW4b5dRMM .menu_box .navbar.opened,
  .cid-uPW4b5dRMM .menu_box .navbar-collapse {
    background-color: #000000 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uPW4b5dRMM .navbar-dropdown {
  position: relative !important;
}
.cid-uPW4b5dRMM .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  min-width: 150px;
}
@media (max-width: 991px) {
  .cid-uPW4b5dRMM .icons-menu-main {
    min-width: auto;
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
.cid-uPW4b5dRMM .mbr-section-btn-main {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-uPW4b5dRMM .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uPW4b5dRMM .mbr-section-btn-main {
    display: block;
    padding: 0;
  }
}
.cid-uPW4b5dRMM .mbr-section-btn-main .btn {
  border-width: 1px;
  margin: 8px;
  min-width: 200px;
}
.cid-uPW4b5dRMM .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uPW4b5dRMM .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uPW4b5dRMM ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uPW4b5dRMM .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uPW4b5dRMM .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-uPW4b5dRMM .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uPW4b5dRMM 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-uPW4b5dRMM .lg_brand {
    margin: 0 1rem;
  }
  .cid-uPW4b5dRMM .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
    min-width: 200px;
  }
}
.cid-uPW4b5dRMM .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uPW4b5dRMM .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uPW4b5dRMM .nav-item {
    margin: 0 !important;
  }
}
.cid-uPW4b5dRMM .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uPW4b5dRMM .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-uPW4b5dRMM .nav-item .nav-link:hover:before,
.cid-uPW4b5dRMM .nav-item .nav-link:focus:before {
  width: 100%;
}
.cid-uPW4b5dRMM .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uPW4b5dRMM .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uPW4b5dRMM .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uPW4b5dRMM .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uPW4b5dRMM .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-uPW4b5dRMM .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
}
.cid-uPW4b5dRMM .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uPW4b5dRMM .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uPW4b5dRMM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uPW4b5dRMM .container {
  display: flex;
  margin: auto;
}
.cid-uPW4b5dRMM .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-uPW4b5dRMM .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uPW4b5dRMM .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uPW4b5dRMM .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uPW4b5dRMM .navbar-nav {
    margin: 0;
  }
}
.cid-uPW4b5dRMM .dropdown-menu,
.cid-uPW4b5dRMM .navbar.opened {
  background-color: false !important;
}
.cid-uPW4b5dRMM .nav-item:focus,
.cid-uPW4b5dRMM .nav-link:focus {
  outline: none;
}
.cid-uPW4b5dRMM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPW4b5dRMM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPW4b5dRMM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPW4b5dRMM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPW4b5dRMM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPW4b5dRMM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPW4b5dRMM .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uPW4b5dRMM .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uPW4b5dRMM .navbar.opened {
  transition: all 0.3s;
}
.cid-uPW4b5dRMM .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uPW4b5dRMM .navbar .navbar-logo img {
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uPW4b5dRMM .navbar .navbar-collapse {
  justify-content: space-between;
  justify-content: center;
  z-index: 1;
}
.cid-uPW4b5dRMM .navbar.collapsed {
  justify-content: center;
}
.cid-uPW4b5dRMM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPW4b5dRMM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uPW4b5dRMM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPW4b5dRMM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPW4b5dRMM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uPW4b5dRMM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uPW4b5dRMM .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPW4b5dRMM .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uPW4b5dRMM .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uPW4b5dRMM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPW4b5dRMM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPW4b5dRMM .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uPW4b5dRMM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPW4b5dRMM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uPW4b5dRMM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPW4b5dRMM .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uPW4b5dRMM .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uPW4b5dRMM .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uPW4b5dRMM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uPW4b5dRMM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPW4b5dRMM .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uPW4b5dRMM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPW4b5dRMM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPW4b5dRMM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uPW4b5dRMM .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-uPW4b5dRMM .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uPW4b5dRMM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPW4b5dRMM .dropdown-item.active,
.cid-uPW4b5dRMM .dropdown-item:active {
  background-color: transparent;
}
.cid-uPW4b5dRMM .navbar-expand-lg .navbar-nav .nav-link {
  margin: 4px 12px !important;
}
.cid-uPW4b5dRMM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPW4b5dRMM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPW4b5dRMM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPW4b5dRMM ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uPW4b5dRMM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uPW4b5dRMM 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-uPW4b5dRMM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #01004c;
}
.cid-uPW4b5dRMM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPW4b5dRMM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPW4b5dRMM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uPW4b5dRMM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uPW4b5dRMM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPW4b5dRMM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uPW4b5dRMM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uPW4b5dRMM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPW4b5dRMM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uPW4b5dRMM .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-uPW4b5dRMM .navbar {
    height: 70px;
  }
  .cid-uPW4b5dRMM .navbar.opened {
    height: auto;
  }
  .cid-uPW4b5dRMM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPW4b5dRMM .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uPW4b5dRMM .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uPW4b5dRMM .navbar-caption:hover {
  color: #dbc800;
}
@media (min-width: 992px) {
  .cid-uPW4b5dRMM .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uPW4b5dRMM .text_widget {
  margin-bottom: 32px;
}
.cid-uPW4b5dRMM .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uPW4b5dRMM .text_widget a:hover,
.cid-uPW4b5dRMM .text_widget a:focus {
  opacity: .8;
}
.cid-uPW4b5dRMM .contacts-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  min-width: 32%;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uPW4b5dRMM .contacts-wrapper {
    display: none;
  }
}
.cid-uPW4b5dRMM .contacts-wrapper a .mbr-contact {
  margin: 8px 20px;
  position: relative;
}
.cid-uPW4b5dRMM .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-uPW4b5dRMM .contacts-wrapper a .mbr-contact:hover:before,
.cid-uPW4b5dRMM .contacts-wrapper a .mbr-contact:focus:before {
  width: 100%;
}
.cid-uPW4b5dRMM .mbr-section-subtitle {
  color: #01004c;
  text-align: center;
}
.cid-uPW4b5dRMM .navbar-caption {
  color: #01004c;
}
.cid-uPW4b5dRMM .mbr-text {
  color: #01004c;
  text-align: center;
}
.cid-uPW4b5dRMM .mbr-section-subtitle,
.cid-uPW4b5dRMM .text_widget,
.cid-uPW4b5dRMM .mbr-section-btn {
  text-align: center;
}
.cid-uPW4b5dRMM a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uPW4b5K9lB {
  padding-top: 12rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPW4b5K9lB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPW4b5K9lB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPW4b5K9lB .row {
  margin: 0 -8px;
}
.cid-uPW4b5K9lB .row .card {
  padding: 0 8px;
}
.cid-uPW4b5K9lB .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px;
  background-color: #11bcae;
}
@media (max-width: 1440px) {
  .cid-uPW4b5K9lB .card-wrapper {
    padding: 32px;
  }
}
@media (max-width: 992px) {
  .cid-uPW4b5K9lB .card-wrapper {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.cid-uPW4b5K9lB .card-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uPW4b5K9lB .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uPW4b5K9lB .card-wrapper .card-wrap .text-wrapper .mbr-text {
  margin-bottom: 24px;
}
.cid-uPW4b5K9lB .card-wrapper .card-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uPW4b5K9lB .image-wrapper {
  height: 100%;
}
.cid-uPW4b5K9lB .image-wrapper img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uPW4b5K9lB .image-wrapper img {
    height: 300px;
  }
}
.cid-uPW4b5K9lB .mbr-section-title {
  color: #2c2c26;
}
.cid-uPW4b5K9lB .mbr-text,
.cid-uPW4b5K9lB .text-wrapper {
  color: #63635d;
}
.cid-uPW4b5K9lB .mbr-section-title,
.cid-uPW4b5K9lB .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uPW4b68Sih {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #11bcae;
}
.cid-uPW4b68Sih .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPW4b68Sih .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPW4b68Sih .content-wrapper {
  position: relative;
  padding: 80px 60px;
  display: flex;
  justify-content: center;
  border: 2px solid #87ceeb;
}
@media (max-width: 992px) {
  .cid-uPW4b68Sih .content-wrapper {
    display: block;
    padding: 32px 16px;
  }
}
.cid-uPW4b68Sih .content-wrapper .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uPW4b68Sih .content-wrapper .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}
.cid-uPW4b68Sih .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-uPW4b68Sih .content-wrapper .card-wrapper {
    width: 100%;
    padding: 32px 16px;
  }
}
.cid-uPW4b68Sih .content-wrapper .card-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uPW4b68Sih .content-wrapper .card-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uPW4b68Sih .content-wrapper .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uPW4b68Sih .mbr-section-title {
  color: #ff9063;
  text-align: center;
}
.cid-uPW4b68Sih .mbr-text {
  color: #050f0f;
  text-align: center;
}
.cid-uPW4b6MIlI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uPW4b6MIlI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPW4b6MIlI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPW4b6MIlI .google-map {
  height: 30rem;
  position: relative;
}
.cid-uPW4b6MIlI .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uPW4b6MIlI .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-uPW4b6MIlI .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uPW4b6MIlI .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uPW4b7jBpW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000000;
}
.cid-uPW4b7jBpW .media-container-row .mbr-text {
  color: #fdfde1;
  text-align: center;
}
