body {
  font-family: Outfit;
}
.display-1 {
  font-family: 'Exo', sans-serif;
  font-size: 3.9rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
.display-1 > .mbr-iconfont {
  font-size: 4.875rem;
}
.display-2 {
  font-family: 'Exo', sans-serif;
  font-size: 2.7rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.display-2 > .mbr-iconfont {
  font-size: 3.375rem;
}
.display-4 {
  font-family: 'Exo', sans-serif;
  font-size: 1.3rem;
  line-height: 1;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Exo', sans-serif;
  font-size: 1.9rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.375rem;
}
.display-7 {
  font-family: 'Exo', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.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.12rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.73rem;
    font-size: calc( 2.0149999999999997rem + (3.9 - 2.0149999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.0149999999999997rem + (3.9 - 2.0149999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.16rem;
    font-size: calc( 1.595rem + (2.7 - 1.595) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.595rem + (2.7 - 1.595) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((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: 33px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 33px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 33px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 33px;
}
.bg-primary {
  background-color: #87e4db !important;
}
.bg-success {
  background-color: #87e4da !important;
}
.bg-info {
  background-color: #16324f !important;
}
.bg-warning {
  background-color: #f4f7f8 !important;
}
.bg-danger {
  background-color: #73c4bd !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #87e4db !important;
  border-color: #87e4db !important;
  color: #145852 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #145852 !important;
  background-color: #40d4c6 !important;
  border-color: #40d4c6 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #73c4bd !important;
  border-color: #73c4bd !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #439e96 !important;
  border-color: #439e96 !important;
}
.btn-info,
.btn-info:active {
  background-color: #16324f !important;
  border-color: #16324f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #03070b !important;
  border-color: #03070b !important;
}
.btn-success,
.btn-success:active {
  background-color: #87e4da !important;
  border-color: #87e4da !important;
  color: #145851 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #145851 !important;
  background-color: #40d4c4 !important;
  border-color: #40d4c4 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f4f7f8 !important;
  border-color: #f4f7f8 !important;
  color: #5c8491 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #5c8491 !important;
  background-color: #bfd0d6 !important;
  border-color: #bfd0d6 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #73c4bd !important;
  border-color: #73c4bd !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #439e96 !important;
  border-color: #439e96 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.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: #87e4db;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #40d4c6 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #145852 !important;
  background-color: #87e4db !important;
  border-color: #87e4db !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #73c4bd;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #439e96 !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: #73c4bd !important;
  border-color: #73c4bd !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #16324f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #03070b !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: #16324f !important;
  border-color: #16324f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #87e4da;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #40d4c4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #145851 !important;
  background-color: #87e4da !important;
  border-color: #87e4da !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f4f7f8;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #bfd0d6 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #5c8491 !important;
  background-color: #f4f7f8 !important;
  border-color: #f4f7f8 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #73c4bd;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #439e96 !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: #73c4bd !important;
  border-color: #73c4bd !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #87e4db !important;
}
.text-secondary {
  color: #73c4bd !important;
}
.text-success {
  color: #87e4da !important;
}
.text-info {
  color: #16324f !important;
}
.text-warning {
  color: #f4f7f8 !important;
}
.text-danger {
  color: #73c4bd !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #34d1c2 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #3e938c !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #34d1c0 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #b6cad0 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #3e938c !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #87e4db;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #16324f;
}
.alert-warning {
  background-color: #f4f7f8;
}
.alert-danger {
  background-color: #73c4bd;
}
.mbr-gallery-filter li.active .btn {
  background-color: #87e4db;
  border-color: #87e4db;
  color: #196d65;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #87e4db;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #73a4d8;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #cdeae7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Exo', sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.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: #87e4db !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Exo', sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #87e4db;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #87e4db;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #87e4db;
}
.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: #87e4db;
  border-bottom-color: #87e4db;
}
.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: #87e4db !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #73c4bd !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='%2387e4db' %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;
}
html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.btn-primary,
.btn-secondary,
.btn-info,
.btn-success,
.btn-warning,
.btn-danger,
.btn-white,
.btn-black {
  padding: 15px !important;
  min-width: 100px !important;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tIfrcI6D4f {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tIfrcI6D4f .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tIfrcI6D4f nav.navbar {
  position: fixed;
}
.cid-tIfrcI6D4f .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIfrcI6D4f .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIfrcI6D4f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIfrcI6D4f .dropdown-item:hover,
.cid-tIfrcI6D4f .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tIfrcI6D4f .dropdown-item:hover span {
  color: white;
}
.cid-tIfrcI6D4f .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIfrcI6D4f .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIfrcI6D4f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIfrcI6D4f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIfrcI6D4f .nav-link {
  position: relative;
}
.cid-tIfrcI6D4f .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tIfrcI6D4f .container {
    flex-wrap: nowrap;
  }
}
.cid-tIfrcI6D4f .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIfrcI6D4f .dropdown-menu,
.cid-tIfrcI6D4f .navbar.opened {
  background: #ffffff !important;
}
.cid-tIfrcI6D4f .nav-item:focus,
.cid-tIfrcI6D4f .nav-link:focus {
  outline: none;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIfrcI6D4f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIfrcI6D4f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIfrcI6D4f .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tIfrcI6D4f .navbar.opened {
  transition: all 0.3s;
}
.cid-tIfrcI6D4f .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIfrcI6D4f .navbar .navbar-logo img {
  width: auto;
}
.cid-tIfrcI6D4f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIfrcI6D4f .navbar.collapsed {
  justify-content: center;
}
.cid-tIfrcI6D4f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIfrcI6D4f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tIfrcI6D4f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIfrcI6D4f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIfrcI6D4f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIfrcI6D4f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIfrcI6D4f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIfrcI6D4f .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIfrcI6D4f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIfrcI6D4f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIfrcI6D4f .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIfrcI6D4f .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tIfrcI6D4f .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tIfrcI6D4f .navbar.navbar-short {
  min-height: 80px;
}
.cid-tIfrcI6D4f .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIfrcI6D4f .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIfrcI6D4f .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIfrcI6D4f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIfrcI6D4f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIfrcI6D4f .dropdown-item.active,
.cid-tIfrcI6D4f .dropdown-item:active {
  background-color: transparent;
}
.cid-tIfrcI6D4f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIfrcI6D4f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIfrcI6D4f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIfrcI6D4f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tIfrcI6D4f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIfrcI6D4f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIfrcI6D4f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIfrcI6D4f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIfrcI6D4f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIfrcI6D4f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIfrcI6D4f .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIfrcI6D4f .navbar {
    height: 70px;
  }
  .cid-tIfrcI6D4f .navbar.opened {
    height: auto;
  }
  .cid-tIfrcI6D4f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vqQ4VOwNPI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #00acb1;
}
.cid-vqQ4VOwNPI .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-vqQ4VOwNPI .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-vqQ4VOwNPI .container {
    padding: 0 24px;
  }
}
.cid-vqQ4VOwNPI .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vqQ4VOwNPI .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vqQ4VOwNPI .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vqQ4VOwNPI .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vqQ4VOwNPI .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vqQ4VOwNPI .mbr-section-btn {
    text-align: left;
  }
}
.cid-vqQ4VOwNPI .mbr-section-title {
  color: #F9F6E0;
}
.cid-vqQ4VOwNPI .mbr-text {
  color: #ffffff;
}
.cid-vqQ4VOwNPI .mbr-section-title,
.cid-vqQ4VOwNPI .mbr-section-btn {
  color: #ffffff;
}
.cid-vrQ80ptXXa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #e87004;
}
.cid-vrQ80ptXXa .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-vrQ80ptXXa .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-vrQ80ptXXa .container {
    padding: 0 24px;
  }
}
.cid-vrQ80ptXXa .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vrQ80ptXXa .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vrQ80ptXXa .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vrQ80ptXXa .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vrQ80ptXXa .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vrQ80ptXXa .mbr-section-btn {
    text-align: left;
  }
}
.cid-vrQ80ptXXa .mbr-section-title {
  color: #F9F6E0;
}
.cid-vrQ80ptXXa .mbr-text {
  color: #212529;
}
.cid-vrQ80ptXXa .mbr-section-title,
.cid-vrQ80ptXXa .mbr-section-btn {
  color: #212529;
}
.cid-tHdGAQNLmR {
  background-image: url("../../../assets/images/portrait-of-female-mature-nurse-in-uniform-with-st-2022-03-07-18-14-30-utc-2000x1333.jpg");
}
.cid-tHdGAQNLmR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHdGAQNLmR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHdGAQNLmR .container-fluid {
  margin: 0;
  padding: 0 72px;
}
@media (max-width: 992px) {
  .cid-tHdGAQNLmR .container-fluid {
    padding: 0 20px;
  }
}
.cid-tHdGAQNLmR .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tHdGAQNLmR .container {
    padding: 0 20px;
  }
  .cid-tHdGAQNLmR .container .row {
    padding: 0;
  }
}
.cid-tHdGAQNLmR .title-wrapper .mbr-section-title {
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-tHdGAQNLmR .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tHdGAQNLmR .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tHdGAQNLmR .text-wrapper .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-tHdGAQNLmR .text-wrapper .mbr-section-btn .btn .mbr-iconfont {
  color: #c6a38f;
}
.cid-tHdGAQNLmR .mbr-section-title {
  color: #00acb1;
}
.cid-tHdGAQNLmR .mbr-text {
  color: #ffffff;
}
.cid-tHdGAQNLmR .mbr-text,
.cid-tHdGAQNLmR .mbr-section-btn {
  color: #051744;
}
.cid-vkkKQ6hvHn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vkkKQ6hvHn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkkKQ6hvHn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkkKQ6hvHn .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-vkkKQ6hvHn .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-vkkKQ6hvHn .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-vkkKQ6hvHn .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-vkkKQ6hvHn .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-vkkKQ6hvHn .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-vkkKQ6hvHn .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-vkkKQ6hvHn .text-wrapper {
    margin: 0 30px;
  }
}
.cid-vkkKQ6hvHn .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-vkkKQ6hvHn .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-vkkKQ6hvHn .mbr-section-title {
  color: #FFFFFF;
}
.cid-vkkKQ6hvHn .mbr-section-title,
.cid-vkkKQ6hvHn .mbr-section-btn {
  text-align: center;
  color: #00acb1;
}
.cid-vkkz7BnOgD {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-vkkz7BnOgD .mbr-section-title {
  margin-bottom: 32px;
  opacity: .5;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vkkz7BnOgD .mbr-section-title {
    margin-bottom: 16px;
  }
}
.cid-vkkz7BnOgD .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 200px;
  max-width: 200px;
}
@media (max-width: 767px) {
  .cid-vkkz7BnOgD .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vkkz7BnOgD .embla__slide .slide-content {
  width: 100%;
}
.cid-vkkz7BnOgD .embla__slide .slide-content .item-wrapper .item-img {
  background-color: #ffffff;
}
.cid-vkkz7BnOgD .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-vkkz7BnOgD .embla__button--next,
.cid-vkkz7BnOgD .embla__button--prev {
  display: flex;
}
.cid-vkkz7BnOgD .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  font-size: 32px;
  background-color: transparent !important;
  color: #bcfe1e !important;
  border: transparent !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-vkkz7BnOgD .embla__button:hover {
  opacity: .5 !important;
}
.cid-vkkz7BnOgD .embla__button.embla__button--prev {
  right: 48px;
}
.cid-vkkz7BnOgD .embla__button.embla__button--next {
  right: 0;
}
.cid-vkkz7BnOgD .embla {
  position: relative;
  width: 100%;
}
.cid-vkkz7BnOgD .embla__viewport {
  width: 100%;
  margin-right: 1rem;
}
.cid-vkkz7BnOgD .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vkkz7BnOgD .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vkkz7BnOgD .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vkkRZSaJTA {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #00acb1;
}
.cid-vkkRZSaJTA .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkkRZSaJTA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkkRZSaJTA .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-vkkRZSaJTA .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-vkkRZSaJTA .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-vkkRZSaJTA .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-vkkRZSaJTA .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-vkkRZSaJTA .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-vkkRZSaJTA .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-vkkRZSaJTA .text-wrapper {
    margin: 0 30px;
  }
}
.cid-vkkRZSaJTA .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-vkkRZSaJTA .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-vkkRZSaJTA .mbr-section-title {
  color: #FFFFFF;
}
.cid-vkkRZSaJTA .mbr-section-title,
.cid-vkkRZSaJTA .mbr-section-btn {
  text-align: center;
  color: #00acb1;
}
.cid-vjyU2UcBKS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vjyU2UcBKS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjyU2UcBKS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjyU2UcBKS .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vjyU2UcBKS .content-wrap {
    margin-bottom: 32px;
  }
}
.cid-vjyU2UcBKS .content-wrap .label-wrapper {
  margin-bottom: 16px;
}
.cid-vjyU2UcBKS .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #e0f782;
}
.cid-vjyU2UcBKS .content-wrap .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vjyU2UcBKS .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vjyU2UcBKS .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vjyU2UcBKS .content-wrap .mbr-section-btn {
  margin-top: 14px;
}
.cid-vjyU2UcBKS .image-wrapper .image-wrap {
  background-color: #ffffff;
  padding: 24px;
}
.cid-vjyU2UcBKS .image-wrapper .image-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vjyU2UcBKS .image-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-vjyU2UcBKS .mbr-label,
.cid-vjyU2UcBKS .label-wrapper {
  color: #000000;
}
.cid-vjyU2UcBKS .mbr-section-title {
  color: #000000;
}
.cid-vjyU2UcBKS .mbr-text,
.cid-vjyU2UcBKS .text-wrapper {
  color: #4f4f4f;
}
.cid-vjyU2UcBKS .mbr-section-title,
.cid-vjyU2UcBKS .mbr-section-btn {
  color: #00acb1;
}
.cid-vkscnkLo3o {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ff001f;
}
.cid-vkscnkLo3o .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-vkscnkLo3o .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-vkscnkLo3o .container {
    padding: 0 24px;
  }
}
.cid-vkscnkLo3o .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vkscnkLo3o .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vkscnkLo3o .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vkscnkLo3o .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vkscnkLo3o .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vkscnkLo3o .mbr-section-btn {
    text-align: left;
  }
}
.cid-vkscnkLo3o .mbr-section-title {
  color: #F9F6E0;
}
.cid-vkscnkLo3o .mbr-text {
  color: #f4f7f8;
}
.cid-vkscnkLo3o .mbr-section-title,
.cid-vkscnkLo3o .mbr-section-btn {
  color: #f4f7f8;
}
.cid-ukacBJlZk3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpeg");
}
.cid-ukacBJlZk3 .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-ukacBJlZk3 .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-ukacBJlZk3 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-ukacBJlZk3 .container {
    padding: 0 24px;
  }
}
.cid-ukacBJlZk3 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ukacBJlZk3 .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-ukacBJlZk3 .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ukacBJlZk3 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ukacBJlZk3 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-ukacBJlZk3 .mbr-section-btn {
    text-align: left;
  }
}
.cid-ukacBJlZk3 .mbr-section-title {
  color: #F9F6E0;
}
.cid-ukacBJlZk3 .mbr-text {
  color: #ffffff;
}
.cid-ukacBJlZk3 .mbr-section-title,
.cid-ukacBJlZk3 .mbr-section-btn {
  color: #ffffff;
}
.cid-v9K75xAinq {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #00acb1;
}
.cid-v9K75xAinq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9K75xAinq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9K75xAinq .row {
  margin: 0 -15px;
}
.cid-v9K75xAinq .row .card {
  padding: 0 15px;
}
.cid-v9K75xAinq .image-wrapper img {
  height: 525px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v9K75xAinq .image-wrapper img {
    height: 300px;
    margin-top: 40px;
  }
}
.cid-v9K75xAinq .content-wrapper .mbr-label {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v9K75xAinq .content-wrapper .mbr-label {
    margin-bottom: 30px;
  }
}
.cid-v9K75xAinq .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v9K75xAinq .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-v9K75xAinq .content-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v9K75xAinq .content-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-v9K75xAinq .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v9K75xAinq .mbr-section-title {
  color: #fefff5;
}
.cid-v9K75xAinq .mbr-desc {
  color: #fefff5;
}
.cid-v9K75xAinq .mbr-label {
  color: #fefff5;
}
.cid-v9K75xAinq .mbr-text {
  color: #fefff5;
}
.cid-v9K9x3g2vw {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-v9K9x3g2vw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9K9x3g2vw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9K9x3g2vw .row {
  margin: 0 -15px;
}
.cid-v9K9x3g2vw .row .card {
  padding: 0 15px;
}
.cid-v9K9x3g2vw .image-wrapper img {
  height: 525px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v9K9x3g2vw .image-wrapper img {
    height: 300px;
    margin-top: 40px;
  }
}
.cid-v9K9x3g2vw .content-wrapper .mbr-label {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v9K9x3g2vw .content-wrapper .mbr-label {
    margin-bottom: 30px;
  }
}
.cid-v9K9x3g2vw .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v9K9x3g2vw .content-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-v9K9x3g2vw .content-wrapper .text-wrap .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v9K9x3g2vw .content-wrapper .text-wrap .mbr-text {
    width: 100%;
    margin-bottom: 30px;
  }
}
.cid-v9K9x3g2vw .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v9K9x3g2vw .mbr-section-title {
  color: #fefff5;
}
.cid-v9K9x3g2vw .mbr-desc {
  color: #fefff5;
}
.cid-v9K9x3g2vw .mbr-label {
  color: #fefff5;
}
.cid-v9K9x3g2vw .mbr-text {
  color: #fefff5;
}
.cid-ujkMVeHJR8 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ujkMVeHJR8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujkMVeHJR8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujkMVeHJR8 .title-wrapper {
  margin: 0 160px;
  border-top: 2px solid #e5e5e5;
  position: relative;
}
@media (max-width: 992px) {
  .cid-ujkMVeHJR8 .title-wrapper {
    margin: 0 30px;
  }
}
.cid-ujkMVeHJR8 .title-wrapper .mbr-section-title {
  padding-top: 20px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ujkMVeHJR8 .title-wrapper .mbr-section-title {
    padding-top: 12px;
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .cid-ujkMVeHJR8 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ujkMVeHJR8 .cards {
  margin: 0 144px;
}
@media (max-width: 992px) {
  .cid-ujkMVeHJR8 .cards {
    margin: 0 18px;
  }
}
@media (max-width: 768px) {
  .cid-ujkMVeHJR8 .cards {
    margin: 0 30px;
  }
}
.cid-ujkMVeHJR8 .cards .card {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-ujkMVeHJR8 .cards .card {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-ujkMVeHJR8 .cards .card {
    padding: 0;
  }
}
.cid-ujkMVeHJR8 .cards .card .card-wrapper {
  position: relative;
  width: 100%;
  min-height: 510px;
}
.cid-ujkMVeHJR8 .cards .card .card-wrapper .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 510px;
  background: #87e4db;
  opacity: 0;
  transition: all .3s ease;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-ujkMVeHJR8 .cards .card .card-wrapper .card-overlay {
    z-index: 0;
  }
}
.cid-ujkMVeHJR8 .cards .card .card-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 510px;
  object-fit: cover;
  pointer-events: visible;
}
.cid-ujkMVeHJR8 .cards .card .card-wrap {
  margin-top: 40px;
  display: flex;
  transform: translate(-36px, 0);
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-ujkMVeHJR8 .cards .card .card-wrap {
    margin-top: 25px;
    transform: none;
  }
}
.cid-ujkMVeHJR8 .cards .card .card-wrap span {
  display: flex;
  align-items: center;
  font-size: 22px;
  margin-right: 12px;
  opacity: 0;
  transition: all .4s ease;
}
@media (max-width: 992px) {
  .cid-ujkMVeHJR8 .cards .card .card-wrap span {
    opacity: 1;
  }
}
.cid-ujkMVeHJR8 .cards .card .card-wrap .card-title {
  margin: 0;
}
.cid-ujkMVeHJR8 .card-link:hover .card-wrapper .card-overlay {
  opacity: .7;
}
.cid-ujkMVeHJR8 .card-link:hover .card-wrap {
  transform: translate(0, 0);
}
.cid-ujkMVeHJR8 .card-link:hover .card-wrap span {
  opacity: 1;
  color: #87e4db;
}
.cid-ujkMVeHJR8 .mbr-section-title {
  color: #00acb1;
}
.cid-ujkMVeHJR8 .card-title,
.cid-ujkMVeHJR8 .mbr-iconfont {
  color: #87e4db;
}
.cid-ujkMVeHJR8 .card-link:hover .card-wrap .card-title {
  color: #87e4db;
}
.cid-tHiyGWYP7Z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tHiyGWYP7Z .row {
    flex-direction: column-reverse;
  }
}
.cid-tHiyGWYP7Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHiyGWYP7Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHiyGWYP7Z .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tHiyGWYP7Z .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tHiyGWYP7Z .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tHiyGWYP7Z .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tHiyGWYP7Z .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tHiyGWYP7Z .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tHiyGWYP7Z .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tHiyGWYP7Z .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tHiyGWYP7Z .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tHiyGWYP7Z .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tHiyGWYP7Z .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tHiyGWYP7Z .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-tHiyGWYP7Z .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tHiyGWYP7Z .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tHiyGWYP7Z .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tHiyGWYP7Z .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tHiyGWYP7Z .mbr-section-title {
  color: #000000;
}
.cid-tHiyGWYP7Z .mbr-text {
  color: #000000;
}
.cid-tHiyGWYP7Z .mbr-section-title,
.cid-tHiyGWYP7Z .mbr-section-btn {
  color: #00acb1;
}
.cid-uiFIaZBGwo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #00acb1;
}
.cid-uiFIaZBGwo .mbr-media {
  position: relative;
}
.cid-uiFIaZBGwo .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-uiFIaZBGwo a:hover {
  background-image: none !important;
}
.cid-uiFIaZBGwo .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-uiFIaZBGwo .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-uiFIaZBGwo .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uiFIaZBGwo .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uiFIaZBGwo .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uiFIaZBGwo .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uiFIaZBGwo .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uiFIaZBGwo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiFIaZBGwo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiFIaZBGwo .content-head {
  max-width: 800px;
}
.cid-uiFIaZBGwo .mbr-section-title {
  color: #ffffff;
}
.cid-u2JlXJ7G7G {
  background-color: #ffffff;
}
.cid-u2JlXJ7G7G .container {
  max-width: 1500px;
}
.cid-u2JlXJ7G7G .row {
  background: #16324f;
}
.cid-u2JlXJ7G7G .img-col {
  padding: 0;
}
.cid-u2JlXJ7G7G .title-col {
  padding: 4rem 8rem;
}
.cid-u2JlXJ7G7G img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u2JlXJ7G7G h2 {
  padding: 0;
  margin: 0;
}
.cid-u2JlXJ7G7G .text-wrap {
  margin: auto;
}
.cid-u2JlXJ7G7G .mbr-text {
  color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-u2JlXJ7G7G .row {
    margin: 2rem;
  }
  .cid-u2JlXJ7G7G .title-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u2JlXJ7G7G .row {
    margin: 0rem;
  }
  .cid-u2JlXJ7G7G .title-col {
    padding: 2rem 1rem;
  }
}
.cid-u2JlXJ7G7G H2 {
  color: #ffffff;
}
.cid-u2Jg4PYaAt {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2Jg4PYaAt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2Jg4PYaAt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2Jg4PYaAt .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-u2Jg4PYaAt .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u2Jg4PYaAt .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-u2Jg4PYaAt .card-wrapper {
    padding: 4rem;
  }
}
.cid-u2Jg4PYaAt .mbr-text,
.cid-u2Jg4PYaAt .mbr-section-btn {
  color: #00acb1;
  text-align: left;
}
.cid-u2Jg4PYaAt .card-title,
.cid-u2Jg4PYaAt .card-box {
  text-align: left;
  color: #00acb1;
}
.cid-tIgf69ns48 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tIgf69ns48 .row {
    flex-direction: column-reverse;
  }
}
.cid-tIgf69ns48 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIgf69ns48 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIgf69ns48 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tIgf69ns48 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tIgf69ns48 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tIgf69ns48 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tIgf69ns48 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tIgf69ns48 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tIgf69ns48 .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tIgf69ns48 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tIgf69ns48 .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tIgf69ns48 .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tIgf69ns48 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tIgf69ns48 .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-tIgf69ns48 .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tIgf69ns48 .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tIgf69ns48 .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tIgf69ns48 .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tIgf69ns48 .mbr-section-title {
  color: #000000;
}
.cid-tIgf69ns48 .mbr-text {
  color: #000000;
}
.cid-tIgf69ns48 .mbr-section-title,
.cid-tIgf69ns48 .mbr-section-btn {
  color: #00acb1;
}
.cid-tbW5HXtAUT {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tbW5HXtAUT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbW5HXtAUT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbW5HXtAUT .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tbW5HXtAUT .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tbW5HXtAUT .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tbW5HXtAUT .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tbW5HXtAUT .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-tbW5HXtAUT .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tbW5HXtAUT .tab-content {
  margin: 0 160px;
}
@media (max-width: 992px) {
  .cid-tbW5HXtAUT .tab-content {
    margin: 0 30px;
  }
}
.cid-tbW5HXtAUT .tab-content .tab-pane .card {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tbW5HXtAUT .tab-content .tab-pane .card {
    display: block;
  }
}
.cid-tbW5HXtAUT .tab-content .tab-pane .card img {
  width: 45%;
  height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tbW5HXtAUT .tab-content .tab-pane .card img {
    width: 100%;
    height: 600px;
  }
}
@media (max-width: 768px) {
  .cid-tbW5HXtAUT .tab-content .tab-pane .card img {
    height: 500px;
  }
}
.cid-tbW5HXtAUT .tab-content .tab-pane .card .card-container {
  min-height: 50rem;
  margin-top: -1rem;
  padding: 60px;
  background: #051744;
}
@media (max-width: 992px) {
  .cid-tbW5HXtAUT .tab-content .tab-pane .card .card-container {
    margin-top: 0;
    height: auto;
    padding: 30px;
  }
}
.cid-tbW5HXtAUT .tab-content .tab-pane .card .card-container .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-tbW5HXtAUT .tab-content .tab-pane .card .card-container .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-tbW5HXtAUT .tab-content .tab-pane .card .card-container .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tbW5HXtAUT .tab-content .tab-pane .card .card-container .mbr-text {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tbW5HXtAUT .tab-content .tab-pane .card .card-container .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-tbW5HXtAUT .tab-content .tab-pane .card .card-container .mbr-amount {
  margin: 50px 0 20px;
}
@media (max-width: 992px) {
  .cid-tbW5HXtAUT .tab-content .tab-pane .card .card-container .mbr-amount {
    margin: 30px 0 12px;
  }
}
.cid-tbW5HXtAUT .tab-content .tab-pane .card .card-container .mbr-desc {
  padding-top: 20px;
  border-top: 2px solid #ffffff;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tbW5HXtAUT .tab-content .tab-pane .card .card-container .mbr-desc {
    padding-top: 12px;
  }
}
.cid-tbW5HXtAUT .nav {
  align-items: center;
}
.cid-tbW5HXtAUT .nav-tabs {
  margin-left: 160px;
  border: none;
}
@media (max-width: 992px) {
  .cid-tbW5HXtAUT .nav-tabs {
    margin-left: 30px;
  }
}
.cid-tbW5HXtAUT .nav-tabs .nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8px;
  height: 8px;
  margin: 6px;
  padding: 0;
  background: transparent;
  border: 1px solid #00acb1;
  border-radius: 50%;
  transition: all .3s ease;
}
.cid-tbW5HXtAUT .nav-tabs .nav-link p {
  margin: 0;
  display: none;
  transition: all .3s ease;
}
.cid-tbW5HXtAUT .nav-tabs .nav-link.active {
  border: 2px solid #00acb1;
  width: 50px;
  height: 50px;
  transition: all .3s ease;
}
.cid-tbW5HXtAUT .nav-tabs .nav-link.active p {
  display: block;
  color: #051744;
  transition: all .3s ease;
  font-size: 21px;
  pointer-events: none;
}
.cid-tbW5HXtAUT .mbr-section-title {
  color: #FFFFFF;
}
.cid-tbW5HXtAUT .mbr-section-subtitle {
  color: #FFFFFF;
}
.cid-tbW5HXtAUT .mbr-text {
  color: #FFFFFF;
}
.cid-tbW5HXtAUT .mbr-amount {
  color: #FFFFFF;
}
.cid-tbW5HXtAUT .mbr-desc {
  color: #FFFFFF;
}
.cid-ufVW7rBoz2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ufVW7rBoz2 .row {
    flex-direction: column-reverse;
  }
}
.cid-ufVW7rBoz2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufVW7rBoz2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufVW7rBoz2 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-ufVW7rBoz2 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-ufVW7rBoz2 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-ufVW7rBoz2 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-ufVW7rBoz2 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-ufVW7rBoz2 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-ufVW7rBoz2 .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-ufVW7rBoz2 .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ufVW7rBoz2 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-ufVW7rBoz2 .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-ufVW7rBoz2 .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-ufVW7rBoz2 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-ufVW7rBoz2 .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-ufVW7rBoz2 .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-ufVW7rBoz2 .image-wrapper {
    margin: 30px;
  }
}
.cid-ufVW7rBoz2 .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ufVW7rBoz2 .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-ufVW7rBoz2 .image-wrapper img {
    min-height: 100%;
  }
}
.cid-ufVW7rBoz2 .mbr-section-title {
  color: #000000;
}
.cid-ufVW7rBoz2 .mbr-text {
  color: #000000;
}
.cid-ufVW7rBoz2 .mbr-section-title,
.cid-ufVW7rBoz2 .mbr-section-btn {
  color: #00acb1;
}
.cid-tTcd8E6gXG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-tTcd8E6gXG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTcd8E6gXG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTcd8E6gXG .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tTcd8E6gXG .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tTcd8E6gXG .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tTcd8E6gXG .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tTcd8E6gXG .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tTcd8E6gXG .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tTcd8E6gXG .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tTcd8E6gXG .mbr-section-title {
  color: #FFFFFF;
}
.cid-tTcd8E6gXG .mbr-desc {
  color: #FFFFFF;
}
.cid-tTcd8E6gXG .mbr-text {
  color: #FFFFFF;
}
.cid-u30QulhCvW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u30QulhCvW .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #87e4db none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-u30QulhCvW .mbr-iconfont {
  align-items: center;
}
.cid-u30QulhCvW .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-u30QulhCvW .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-u30QulhCvW .icon-transition span:hover {
  background-color: #000000;
  color: #87e4db;
}
.cid-u30QulhCvW .social-media {
  padding: 0;
}
.cid-u30QulhCvW .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-u30QulhCvW .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-u30QulhCvW .mbr-list,
.cid-u30QulhCvW .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-u30QulhCvW .social-list {
    text-align: center !important;
  }
}
.cid-u30QulhCvW .mbr-section-title,
.cid-u30QulhCvW .social-list {
  color: #00acb1;
}
#custom-html-ra {
  /* Type valid CSS here 
Be sure to add this line before </form>

<input type="hidden" id="zc_gad" name="zc_gad" value="">

*/
  /* Zoho CRM form - Persona Health styling */
  /* Form container */
  /* Labels and field text */
  /* Keep Zoho row spacing sane */
  /* Remove any unwanted padding from Zoho internal divs */
  /* Label column */
  /* Field column */
  /* Input fields */
  /* Message box */
  /* Buttons */
}
#custom-html-ra #crmWebToEntityForm .zoho-form-title {
  font-family: 'Exo', Arial, sans-serif !important;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
  margin: 0 0 25px 0;
  padding: 0;
}
#custom-html-ra #crmWebToEntityForm {
  font-family: 'Exo', sans-serif !important;
  color: #ffffff;
  text-align: left !important;
}
#custom-html-ra #crmWebToEntityForm label,
#custom-html-ra #crmWebToEntityForm input,
#custom-html-ra #crmWebToEntityForm textarea,
#custom-html-ra #crmWebToEntityForm select,
#custom-html-ra #crmWebToEntityForm option,
#custom-html-ra #crmWebToEntityForm .zcwf_button,
#custom-html-ra #crmWebToEntityForm .formsubmit {
  font-family: 'Exo', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
#custom-html-ra #crmWebToEntityForm .zcwf_row {
  margin: 12px 0 !important;
}
#custom-html-ra #crmWebToEntityForm div {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  text-align: left !important;
}
#custom-html-ra #crmWebToEntityForm .zcwf_col_lab {
  line-height: 1.3 !important;
  margin-top: 5px !important;
}
#custom-html-ra #crmWebToEntityForm .zcwf_col_fld {
  margin-top: 5px !important;
}
#custom-html-ra #crmWebToEntityForm input,
#custom-html-ra #crmWebToEntityForm select,
#custom-html-ra #crmWebToEntityForm textarea {
  line-height: 1.3 !important;
  padding: 4px 6px !important;
  color: #313949;
}
#custom-html-ra #crmWebToEntityForm textarea {
  min-height: 90px;
}
#custom-html-ra #crmWebToEntityForm .zcwf_button {
  cursor: pointer;
}
.cid-vimezEakif {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vimezEakif .mbr-fallback-image.disabled {
  display: none;
}
.cid-vimezEakif .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vimezEakif .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-vimezEakif .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-vimezEakif .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-vimezEakif .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-vimezEakif .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-vimezEakif .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-vimezEakif .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-vimezEakif .text-wrapper {
    margin: 0 30px;
  }
}
.cid-vimezEakif .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-vimezEakif .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-vimezEakif .mbr-section-title {
  color: #FFFFFF;
}
.cid-vimezEakif .mbr-section-title,
.cid-vimezEakif .mbr-section-btn {
  text-align: center;
}
.cid-tHjFcuawBz .google-map {
  height: 25rem;
  position: relative;
}
.cid-tHjFcuawBz .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tHjFcuawBz .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-tHjFcuawBz .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tHjFcuawBz .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tHiCn2mQbp {
  background-color: #efefec;
}
.cid-tHiCn2mQbp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHiCn2mQbp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHiCn2mQbp .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tHiCn2mQbp .row {
  align-items: center;
}
.cid-tHiCn2mQbp .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tHiCn2mQbp .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tHiCn2mQbp .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHiCn2mQbp .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tHiCn2mQbp .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tHiCn2mQbp .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tHiCn2mQbp .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tHiCn2mQbp .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tHiCn2mQbp .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tHiCn2mQbp .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tHiCn2mQbp .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tHiCn2mQbp .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tHiCn2mQbp .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tHiCn2mQbp .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .contact-container {
    width: 100%;
  }
}
.cid-tHiCn2mQbp .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tHiCn2mQbp .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tHiCn2mQbp .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tHiCn2mQbp .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tHiCn2mQbp .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tHiCn2mQbp .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tHiCn2mQbp .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tHiCn2mQbp .copyright {
  color: #efefec;
}
.cid-tHiCn2mQbp .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tHiCn2mQbp .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tHiCn2mQbp .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tIlCQItYrA {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tIlCQItYrA .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tIlCQItYrA nav.navbar {
  position: fixed;
}
.cid-tIlCQItYrA .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIlCQItYrA .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIlCQItYrA .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIlCQItYrA .dropdown-item:hover,
.cid-tIlCQItYrA .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tIlCQItYrA .dropdown-item:hover span {
  color: white;
}
.cid-tIlCQItYrA .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIlCQItYrA .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIlCQItYrA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIlCQItYrA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIlCQItYrA .nav-link {
  position: relative;
}
.cid-tIlCQItYrA .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tIlCQItYrA .container {
    flex-wrap: nowrap;
  }
}
.cid-tIlCQItYrA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIlCQItYrA .dropdown-menu,
.cid-tIlCQItYrA .navbar.opened {
  background: #ffffff !important;
}
.cid-tIlCQItYrA .nav-item:focus,
.cid-tIlCQItYrA .nav-link:focus {
  outline: none;
}
.cid-tIlCQItYrA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIlCQItYrA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIlCQItYrA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIlCQItYrA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIlCQItYrA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIlCQItYrA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIlCQItYrA .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tIlCQItYrA .navbar.opened {
  transition: all 0.3s;
}
.cid-tIlCQItYrA .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIlCQItYrA .navbar .navbar-logo img {
  width: auto;
}
.cid-tIlCQItYrA .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIlCQItYrA .navbar.collapsed {
  justify-content: center;
}
.cid-tIlCQItYrA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIlCQItYrA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tIlCQItYrA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tIlCQItYrA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIlCQItYrA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIlCQItYrA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIlCQItYrA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIlCQItYrA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIlCQItYrA .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIlCQItYrA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIlCQItYrA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIlCQItYrA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIlCQItYrA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIlCQItYrA .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIlCQItYrA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIlCQItYrA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIlCQItYrA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIlCQItYrA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIlCQItYrA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIlCQItYrA .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tIlCQItYrA .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tIlCQItYrA .navbar.navbar-short {
  min-height: 80px;
}
.cid-tIlCQItYrA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIlCQItYrA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIlCQItYrA .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIlCQItYrA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIlCQItYrA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIlCQItYrA .dropdown-item.active,
.cid-tIlCQItYrA .dropdown-item:active {
  background-color: transparent;
}
.cid-tIlCQItYrA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIlCQItYrA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIlCQItYrA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIlCQItYrA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tIlCQItYrA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIlCQItYrA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIlCQItYrA ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIlCQItYrA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIlCQItYrA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIlCQItYrA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tIlCQItYrA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIlCQItYrA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIlCQItYrA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIlCQItYrA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIlCQItYrA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIlCQItYrA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIlCQItYrA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIlCQItYrA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIlCQItYrA .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIlCQItYrA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIlCQItYrA .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIlCQItYrA .navbar {
    height: 70px;
  }
  .cid-tIlCQItYrA .navbar.opened {
    height: auto;
  }
  .cid-tIlCQItYrA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uF1AjWEFWc {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #0936a7;
}
.cid-uF1AjWEFWc .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-uF1AjWEFWc .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uF1AjWEFWc .container {
    padding: 0 24px;
  }
}
.cid-uF1AjWEFWc .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uF1AjWEFWc .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uF1AjWEFWc .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uF1AjWEFWc .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uF1AjWEFWc .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uF1AjWEFWc .mbr-section-btn {
    text-align: left;
  }
}
.cid-uF1AjWEFWc .mbr-section-title {
  color: #F9F6E0;
}
.cid-uF1AjWEFWc .mbr-text {
  color: #ffffff;
}
.cid-uF1AjWEFWc .mbr-section-title,
.cid-uF1AjWEFWc .mbr-section-btn {
  color: #ffffff;
}
.cid-uUtMAtGR1C {
  background-image: url("../../../assets/images/injury-management-in-parramatta-and-sydney-1-1600x1080.jpg");
}
.cid-uUtMAtGR1C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUtMAtGR1C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUtMAtGR1C .items-wrap {
  justify-content: space-between;
}
.cid-uUtMAtGR1C .title-wrapper {
  margin-bottom: 32px;
}
.cid-uUtMAtGR1C .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uUtMAtGR1C .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uUtMAtGR1C .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uUtMAtGR1C .text-wrapper .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-uUtMAtGR1C .mbr-figure iframe {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uUtMAtGR1C .video-block {
    margin-bottom: 24px;
  }
}
.cid-uUtMAtGR1C .mbr-figure__img {
  object-fit: cover;
}
.cid-uUtMAtGR1C .app-video-wrapper::before {
  color: #ffffff;
  box-shadow: none;
}
.cid-uUtMAtGR1C .mbr-section-title {
  color: #000000;
}
.cid-uUtMAtGR1C .mbr-text {
  color: #000000;
}
.cid-uUtMAtGR1C .mbr-section-title,
.cid-uUtMAtGR1C .mbr-section-btn {
  color: #ffffff;
}
.cid-uUtMAtGR1C .mbr-text,
.cid-uUtMAtGR1C .text-wrapper {
  color: #ffffff;
}
.cid-u2kn5M2ZZL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff2fb;
}
.cid-u2kn5M2ZZL .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2kn5M2ZZL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2kn5M2ZZL .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u2kn5M2ZZL .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-u2kn5M2ZZL .container {
    padding: 0 24px;
  }
}
.cid-u2kn5M2ZZL .row {
  justify-content: center;
}
.cid-u2kn5M2ZZL .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u2kn5M2ZZL .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u2kn5M2ZZL .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u2kn5M2ZZL .box .mbr-media img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u2kn5M2ZZL .box .mbr-media img {
    height: 350px;
  }
}
.cid-u2kn5M2ZZL .box .mbr-media .mbr-iconfont {
  color: #00acb1;
}
.cid-u2kn5M2ZZL .mbr-media {
  position: relative;
}
.cid-u2kn5M2ZZL .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-u2kn5M2ZZL a:hover {
  background-image: none !important;
}
.cid-u2kn5M2ZZL .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-u2kn5M2ZZL .icon-wrap:hover {
  cursor: pointer;
}
.cid-u2kn5M2ZZL .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-u2kn5M2ZZL .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-u2kn5M2ZZL .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-u2kn5M2ZZL .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-u2kn5M2ZZL .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-u2kn5M2ZZL .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-u2kn5M2ZZL .mbr-section-title {
  color: #00acb1;
  text-align: left;
}
.cid-ulAVtxhnuT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-ulAVtxhnuT .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-ulAVtxhnuT .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-ulAVtxhnuT .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-ulAVtxhnuT .container {
    padding: 0 24px;
  }
}
.cid-ulAVtxhnuT .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ulAVtxhnuT .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-ulAVtxhnuT .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ulAVtxhnuT .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ulAVtxhnuT .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-ulAVtxhnuT .mbr-section-btn {
    text-align: left;
  }
}
.cid-ulAVtxhnuT .mbr-section-title {
  color: #F9F6E0;
}
.cid-ulAVtxhnuT .mbr-text {
  color: #ffffff;
}
.cid-ulAVtxhnuT .mbr-section-title,
.cid-ulAVtxhnuT .mbr-section-btn {
  color: #ffffff;
}
.cid-tIlCQJU3oj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-tIlCQJU3oj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIlCQJU3oj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIlCQJU3oj .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tIlCQJU3oj .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tIlCQJU3oj .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tIlCQJU3oj .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tIlCQJU3oj .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tIlCQJU3oj .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tIlCQJU3oj .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tIlCQJU3oj .mbr-section-title {
  color: #FFFFFF;
}
.cid-tIlCQJU3oj .mbr-desc {
  color: #FFFFFF;
}
.cid-tIlCQJU3oj .mbr-text {
  color: #FFFFFF;
}
.cid-ulAWkQady2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-ulAWkQady2 .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-ulAWkQady2 .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-ulAWkQady2 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-ulAWkQady2 .container {
    padding: 0 24px;
  }
}
.cid-ulAWkQady2 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ulAWkQady2 .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-ulAWkQady2 .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ulAWkQady2 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ulAWkQady2 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-ulAWkQady2 .mbr-section-btn {
    text-align: left;
  }
}
.cid-ulAWkQady2 .mbr-section-title {
  color: #F9F6E0;
}
.cid-ulAWkQady2 .mbr-text {
  color: #ffffff;
}
.cid-ulAWkQady2 .mbr-section-title,
.cid-ulAWkQady2 .mbr-section-btn {
  color: #ffffff;
}
.cid-u2fJrk8071 {
  padding-top: 15px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-u2fJrk8071 .container {
  max-width: 1500px;
}
.cid-u2fJrk8071 .row {
  background: #f5f7fa;
}
.cid-u2fJrk8071 .img-col {
  padding: 0;
}
.cid-u2fJrk8071 .title-col {
  padding: 4rem 8rem;
}
.cid-u2fJrk8071 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u2fJrk8071 h2 {
  padding: 0;
  margin: 0;
}
.cid-u2fJrk8071 .text-wrap {
  margin: auto;
}
.cid-u2fJrk8071 .mbr-text {
  color: #333333;
}
@media (max-width: 1200px) {
  .cid-u2fJrk8071 .row {
    margin: 2rem;
  }
  .cid-u2fJrk8071 .title-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u2fJrk8071 .row {
    margin: 0rem;
  }
  .cid-u2fJrk8071 .title-col {
    padding: 2rem 1rem;
  }
}
.cid-u2fJrk8071 H2 {
  color: #333333;
}
.cid-u2a1x5HvsH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u2a1x5HvsH .row {
    flex-direction: column-reverse;
  }
}
.cid-u2a1x5HvsH .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2a1x5HvsH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2a1x5HvsH .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-u2a1x5HvsH .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-u2a1x5HvsH .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-u2a1x5HvsH .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-u2a1x5HvsH .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-u2a1x5HvsH .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-u2a1x5HvsH .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-u2a1x5HvsH .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-u2a1x5HvsH .text-wrapper {
    margin: 0 30px;
  }
}
.cid-u2a1x5HvsH .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-u2a1x5HvsH .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-u2a1x5HvsH .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-u2a1x5HvsH .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-u2a1x5HvsH .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-u2a1x5HvsH .image-wrapper {
    margin: 30px;
  }
}
.cid-u2a1x5HvsH .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u2a1x5HvsH .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-u2a1x5HvsH .image-wrapper img {
    min-height: 100%;
  }
}
.cid-u2a1x5HvsH .mbr-section-title {
  color: #000000;
}
.cid-u2a1x5HvsH .mbr-text {
  color: #000000;
}
.cid-u2a7f5CDnn {
  padding-top: 15px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-u2a7f5CDnn .container {
  max-width: 1500px;
}
.cid-u2a7f5CDnn .row {
  background: #f5f7fa;
}
.cid-u2a7f5CDnn .img-col {
  padding: 0;
}
.cid-u2a7f5CDnn .title-col {
  padding: 4rem 8rem;
}
.cid-u2a7f5CDnn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u2a7f5CDnn h2 {
  padding: 0;
  margin: 0;
}
.cid-u2a7f5CDnn .text-wrap {
  margin: auto;
}
.cid-u2a7f5CDnn .mbr-text {
  color: #333333;
}
@media (max-width: 1200px) {
  .cid-u2a7f5CDnn .row {
    margin: 2rem;
  }
  .cid-u2a7f5CDnn .title-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u2a7f5CDnn .row {
    margin: 0rem;
  }
  .cid-u2a7f5CDnn .title-col {
    padding: 2rem 1rem;
  }
}
.cid-u2a7f5CDnn H2 {
  color: #333333;
}
.cid-u2a4SpIBW1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u2a4SpIBW1 .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-u2a4SpIBW1 .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-u2a4SpIBW1 p {
  line-height: 1.6;
}
.cid-u2a4SpIBW1 .rev,
.cid-u2a4SpIBW1 .mbr-iconfont {
  display: inline-block;
}
.cid-u2a4SpIBW1 .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-u2a4SpIBW1 .card-box {
  padding: 1.5rem;
}
.cid-u2a4SpIBW1 .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-u2a4SpIBW1 .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-u2a4SpIBW1 .mbr-section-title,
.cid-u2a4SpIBW1 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-u2a4SpIBW1 .rev {
  color: #0a1c44;
}
.cid-u2a4SpIBW1 .card-text,
.cid-u2a4SpIBW1 .mbr-section-btn,
.cid-u2a4SpIBW1 .ico-line {
  color: #767676;
}
.cid-ulAWuDSV9a {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-ulAWuDSV9a .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-ulAWuDSV9a .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-ulAWuDSV9a .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-ulAWuDSV9a .container {
    padding: 0 24px;
  }
}
.cid-ulAWuDSV9a .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ulAWuDSV9a .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-ulAWuDSV9a .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ulAWuDSV9a .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ulAWuDSV9a .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-ulAWuDSV9a .mbr-section-btn {
    text-align: left;
  }
}
.cid-ulAWuDSV9a .mbr-section-title {
  color: #F9F6E0;
}
.cid-ulAWuDSV9a .mbr-text {
  color: #ffffff;
}
.cid-ulAWuDSV9a .mbr-section-title,
.cid-ulAWuDSV9a .mbr-section-btn {
  color: #ffffff;
}
.cid-u2exSgjtDk {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u2exSgjtDk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2exSgjtDk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2exSgjtDk .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-u2exSgjtDk .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-u2exSgjtDk .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-u2exSgjtDk .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-u2exSgjtDk .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-u2exSgjtDk .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-u2exSgjtDk .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-u2exSgjtDk .text-wrapper {
    margin: 0 30px;
  }
}
.cid-u2exSgjtDk .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-u2exSgjtDk .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-u2exSgjtDk .mbr-section-title {
  color: #FFFFFF;
}
.cid-u2exSgjtDk .mbr-section-title,
.cid-u2exSgjtDk .mbr-section-btn {
  text-align: center;
  color: #00acb1;
}
.cid-u2agYcxCLb {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u2agYcxCLb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2agYcxCLb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2agYcxCLb .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u2agYcxCLb .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u2agYcxCLb .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u2agYcxCLb .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u2agYcxCLb .container {
    padding: 0 16px;
  }
}
.cid-u2agYcxCLb .row {
  background-color: #ffffff;
  justify-content: center;
  margin: 0;
  border-radius: 1rem;
}
.cid-u2agYcxCLb .item {
  padding: 40px 80px;
  border-right: 1px solid #ffffff;
}
@media (max-width: 1200px) {
  .cid-u2agYcxCLb .item {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .cid-u2agYcxCLb .item {
    padding: 25px;
    border-right: none;
    border-bottom: 1px solid #ffffff;
  }
}
.cid-u2agYcxCLb .item:nth-child(2n) {
  border-right: none;
}
@media (max-width: 992px) {
  .cid-u2agYcxCLb .item:nth-child(2n) {
    border-right: none;
  }
}
.cid-u2agYcxCLb .item .item-wrapper .card-subtitle {
  margin-bottom: 40px;
}
.cid-u2agYcxCLb .item .item-wrapper .item-img {
  margin-bottom: 28px;
}
.cid-u2agYcxCLb .item .item-wrapper .item-img img {
  display: inline-flex;
  object-fit: cover;
  height: 350px;
  border-radius: 1rem !important;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-u2agYcxCLb .item .item-wrapper .item-img img {
    width: 100%;
  }
}
.cid-u2agYcxCLb .item .item-wrapper .card-title {
  margin-bottom: 10px;
}
.cid-u2agYcxCLb .item .item-wrapper .card-text {
  margin-bottom: 20px;
}
.cid-u2agYcxCLb .card-title {
  color: #000000;
}
.cid-u2agYcxCLb .card-subtitle {
  color: #000000;
  text-align: center;
}
.cid-u2agYcxCLb .card-text {
  color: #000000;
  text-align: left;
}
.cid-u2agYcxCLb .card-title,
.cid-u2agYcxCLb .item-img,
.cid-u2agYcxCLb .mbr-section-btn {
  text-align: center;
}
.cid-u2agYcxCLb .card-title,
.cid-u2agYcxCLb .mbr-section-btn,
.cid-u2agYcxCLb .item-img {
  color: #00acb1;
}
.cid-u2gcKfj5ko {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #87e4db;
}
.cid-u2gcKfj5ko .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2gcKfj5ko .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2gcKfj5ko .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-u2gcKfj5ko .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-u2gcKfj5ko .container {
    padding: 0 24px;
  }
}
.cid-u2gcKfj5ko .row .card {
  padding: 0 12px;
  border-radius: 0 !important;
}
.cid-u2gcKfj5ko .image-wrapper {
  height: 100%;
}
.cid-u2gcKfj5ko .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
@media (max-width: 992px) {
  .cid-u2gcKfj5ko .image-wrapper img {
    height: 350px;
  }
}
.cid-u2gcKfj5ko .content-wrapper {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: .75rem;
  padding: 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-u2gcKfj5ko .content-wrapper {
    padding: 24px;
  }
}
.cid-u2gcKfj5ko .content-wrapper .content-wrap {
  width: 100%;
}
.cid-u2gcKfj5ko .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u2gcKfj5ko .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-u2gcKfj5ko .content-wrapper .content-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-u2gcKfj5ko .content-wrapper .content-wrap .mbr-section-btn .btn:hover,
.cid-u2gcKfj5ko .content-wrapper .content-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-u2gcKfj5ko .mbr-section-title {
  color: #141414;
}
.cid-u2gcKfj5ko .mbr-text {
  color: #141414;
}
.cid-u2fT85c0ut {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u2fT85c0ut .row {
    flex-direction: column-reverse;
  }
}
.cid-u2fT85c0ut .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2fT85c0ut .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2fT85c0ut .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-u2fT85c0ut .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-u2fT85c0ut .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-u2fT85c0ut .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-u2fT85c0ut .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-u2fT85c0ut .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-u2fT85c0ut .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-u2fT85c0ut .text-wrapper {
    margin: 0 30px;
  }
}
.cid-u2fT85c0ut .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-u2fT85c0ut .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-u2fT85c0ut .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-u2fT85c0ut .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-u2fT85c0ut .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-u2fT85c0ut .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u2fT85c0ut .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-u2fT85c0ut .image-wrapper img {
    min-height: 100%;
  }
}
.cid-u2fT85c0ut .mbr-section-title {
  color: #000000;
}
.cid-u2fT85c0ut .mbr-text {
  color: #000000;
}
.cid-u2ab0n766w {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-u2ab0n766w .mbr-fallback-image.disabled {
  display: none;
}
.cid-u2ab0n766w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u2ab0n766w .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-u2ab0n766w .text-wrapper {
    margin: 0 30px;
  }
}
.cid-u2ab0n766w .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-u2ab0n766w .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-u2ab0n766w .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u2ab0n766w .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-u2ab0n766w .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-u2ab0n766w .mbr-section-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-u2ab0n766w .mbr-desc {
  color: #FFFFFF;
}
.cid-u2ab0n766w .mbr-text {
  color: #FFFFFF;
}
.cid-ulAWxysMiK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-ulAWxysMiK .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-ulAWxysMiK .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-ulAWxysMiK .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-ulAWxysMiK .container {
    padding: 0 24px;
  }
}
.cid-ulAWxysMiK .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ulAWxysMiK .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-ulAWxysMiK .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ulAWxysMiK .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ulAWxysMiK .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-ulAWxysMiK .mbr-section-btn {
    text-align: left;
  }
}
.cid-ulAWxysMiK .mbr-section-title {
  color: #F9F6E0;
}
.cid-ulAWxysMiK .mbr-text {
  color: #ffffff;
}
.cid-ulAWxysMiK .mbr-section-title,
.cid-ulAWxysMiK .mbr-section-btn {
  color: #ffffff;
}
.cid-tIlCQKC8Js {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tIlCQKC8Js .row {
    flex-direction: column-reverse;
  }
}
.cid-tIlCQKC8Js .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIlCQKC8Js .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIlCQKC8Js .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tIlCQKC8Js .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tIlCQKC8Js .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tIlCQKC8Js .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tIlCQKC8Js .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tIlCQKC8Js .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tIlCQKC8Js .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tIlCQKC8Js .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tIlCQKC8Js .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tIlCQKC8Js .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tIlCQKC8Js .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tIlCQKC8Js .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-tIlCQKC8Js .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tIlCQKC8Js .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tIlCQKC8Js .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tIlCQKC8Js .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tIlCQKC8Js .mbr-section-title {
  color: #000000;
}
.cid-tIlCQKC8Js .mbr-text {
  color: #000000;
}
.cid-tIlCQM3nx6 {
  background-color: #efefec;
}
.cid-tIlCQM3nx6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIlCQM3nx6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIlCQM3nx6 .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tIlCQM3nx6 .row {
  align-items: center;
}
.cid-tIlCQM3nx6 .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tIlCQM3nx6 .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tIlCQM3nx6 .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tIlCQM3nx6 .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tIlCQM3nx6 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tIlCQM3nx6 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tIlCQM3nx6 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tIlCQM3nx6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tIlCQM3nx6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIlCQM3nx6 .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tIlCQM3nx6 .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tIlCQM3nx6 .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tIlCQM3nx6 .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tIlCQM3nx6 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tIlCQM3nx6 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tIlCQM3nx6 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIlCQM3nx6 .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tIlCQM3nx6 .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tIlCQM3nx6 .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tIlCQM3nx6 .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tIlCQM3nx6 .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tIlCQM3nx6 .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tIlCQM3nx6 .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tIlCQM3nx6 .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tIlCQM3nx6 .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tIlCQM3nx6 .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tIlCQM3nx6 .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tIlCQM3nx6 .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tIlCQM3nx6 .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tIlCQM3nx6 .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tIlCQM3nx6 .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tIlCQM3nx6 .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tIlCQM3nx6 .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tIlCQM3nx6 .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tIlCQM3nx6 .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tIlCQM3nx6 .contact-container {
    width: 100%;
  }
}
.cid-tIlCQM3nx6 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tIlCQM3nx6 .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tIlCQM3nx6 .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tIlCQM3nx6 .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tIlCQM3nx6 .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tIlCQM3nx6 .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tIlCQM3nx6 .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tIlCQM3nx6 .copyright {
  color: #efefec;
}
.cid-tIlCQM3nx6 .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tIlCQM3nx6 .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tIlCQM3nx6 .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tIxUnLJ9Pn {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tIxUnLJ9Pn .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tIxUnLJ9Pn nav.navbar {
  position: fixed;
}
.cid-tIxUnLJ9Pn .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIxUnLJ9Pn .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIxUnLJ9Pn .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIxUnLJ9Pn .dropdown-item:hover,
.cid-tIxUnLJ9Pn .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tIxUnLJ9Pn .dropdown-item:hover span {
  color: white;
}
.cid-tIxUnLJ9Pn .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIxUnLJ9Pn .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIxUnLJ9Pn .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIxUnLJ9Pn .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIxUnLJ9Pn .nav-link {
  position: relative;
}
.cid-tIxUnLJ9Pn .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tIxUnLJ9Pn .container {
    flex-wrap: nowrap;
  }
}
.cid-tIxUnLJ9Pn .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIxUnLJ9Pn .dropdown-menu,
.cid-tIxUnLJ9Pn .navbar.opened {
  background: #ffffff !important;
}
.cid-tIxUnLJ9Pn .nav-item:focus,
.cid-tIxUnLJ9Pn .nav-link:focus {
  outline: none;
}
.cid-tIxUnLJ9Pn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIxUnLJ9Pn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIxUnLJ9Pn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIxUnLJ9Pn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIxUnLJ9Pn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIxUnLJ9Pn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIxUnLJ9Pn .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tIxUnLJ9Pn .navbar.opened {
  transition: all 0.3s;
}
.cid-tIxUnLJ9Pn .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIxUnLJ9Pn .navbar .navbar-logo img {
  width: auto;
}
.cid-tIxUnLJ9Pn .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIxUnLJ9Pn .navbar.collapsed {
  justify-content: center;
}
.cid-tIxUnLJ9Pn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIxUnLJ9Pn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tIxUnLJ9Pn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tIxUnLJ9Pn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIxUnLJ9Pn .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIxUnLJ9Pn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIxUnLJ9Pn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIxUnLJ9Pn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIxUnLJ9Pn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIxUnLJ9Pn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIxUnLJ9Pn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIxUnLJ9Pn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIxUnLJ9Pn .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIxUnLJ9Pn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIxUnLJ9Pn .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIxUnLJ9Pn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIxUnLJ9Pn .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIxUnLJ9Pn .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIxUnLJ9Pn .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIxUnLJ9Pn .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tIxUnLJ9Pn .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tIxUnLJ9Pn .navbar.navbar-short {
  min-height: 80px;
}
.cid-tIxUnLJ9Pn .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIxUnLJ9Pn .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIxUnLJ9Pn .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIxUnLJ9Pn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIxUnLJ9Pn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIxUnLJ9Pn .dropdown-item.active,
.cid-tIxUnLJ9Pn .dropdown-item:active {
  background-color: transparent;
}
.cid-tIxUnLJ9Pn .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIxUnLJ9Pn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIxUnLJ9Pn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIxUnLJ9Pn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tIxUnLJ9Pn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIxUnLJ9Pn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIxUnLJ9Pn ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIxUnLJ9Pn .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIxUnLJ9Pn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIxUnLJ9Pn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tIxUnLJ9Pn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIxUnLJ9Pn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIxUnLJ9Pn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIxUnLJ9Pn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIxUnLJ9Pn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIxUnLJ9Pn nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIxUnLJ9Pn nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIxUnLJ9Pn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIxUnLJ9Pn .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIxUnLJ9Pn a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIxUnLJ9Pn .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIxUnLJ9Pn .navbar {
    height: 70px;
  }
  .cid-tIxUnLJ9Pn .navbar.opened {
    height: auto;
  }
  .cid-tIxUnLJ9Pn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIxUnMl0Wl {
  background-image: url("../../../assets/images/instant-urine-drug-test-2023-10-31-03-31-33-utc-2000x1333.jpg");
}
.cid-tIxUnMl0Wl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIxUnMl0Wl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIxUnMl0Wl .mbr-section-title {
  color: #FFFFFF;
}
.cid-tIxUnMl0Wl .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tIxUnMl0Wl .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tIxUnMl0Wl .mbr-section-btn {
  margin-top: 18px;
}
.cid-tIxUnMl0Wl .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-tIxUnMl0Wl .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-uTDc8pkJ8b {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #238878;
}
.cid-uTDc8pkJ8b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTDc8pkJ8b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTDc8pkJ8b .title-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uTDc8pkJ8b .title-wrapper {
    margin: 0 30px;
  }
}
.cid-uTDc8pkJ8b .title-wrapper .mbr-section-title {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uTDc8pkJ8b .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uTDc8pkJ8b .text-wrapper {
  margin-right: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uTDc8pkJ8b .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uTDc8pkJ8b .text-wrapper .mbr-text {
  margin-bottom: 60px;
}
.cid-uTDc8pkJ8b .text-wrapper .cards .card {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uTDc8pkJ8b .text-wrapper .cards .card {
    margin-bottom: 30px;
  }
}
.cid-uTDc8pkJ8b .text-wrapper .cards .card .mbr-amount {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uTDc8pkJ8b .text-wrapper .cards .card .mbr-amount {
    margin-bottom: 12px;
  }
}
.cid-uTDc8pkJ8b .text-wrapper .cards .card .mbr-desc {
  padding-top: 20px;
  border-top: 2px solid #ffffff;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uTDc8pkJ8b .text-wrapper .cards .card .mbr-desc {
    padding-top: 12px;
  }
}
.cid-uTDc8pkJ8b .mbr-section-title {
  color: #FFFFFF;
}
.cid-uTDc8pkJ8b .mbr-text {
  color: #FFFFFF;
}
.cid-uTDc8pkJ8b .mbr-amount {
  color: #FFFFFF;
}
.cid-uTDc8pkJ8b .mbr-desc {
  color: #FFFFFF;
}
.cid-tV4xlQ4k3a {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
@media (max-width: 992px) {
  .cid-tV4xlQ4k3a .row {
    flex-direction: column-reverse;
  }
}
.cid-tV4xlQ4k3a .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV4xlQ4k3a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tV4xlQ4k3a .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tV4xlQ4k3a .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tV4xlQ4k3a .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tV4xlQ4k3a .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tV4xlQ4k3a .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tV4xlQ4k3a .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tV4xlQ4k3a .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-tV4xlQ4k3a .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tV4xlQ4k3a .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tV4xlQ4k3a .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tV4xlQ4k3a .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tV4xlQ4k3a .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tV4xlQ4k3a .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-tV4xlQ4k3a .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-tV4xlQ4k3a .image-wrapper {
    margin: 30px;
  }
}
.cid-tV4xlQ4k3a .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tV4xlQ4k3a .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tV4xlQ4k3a .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tV4xlQ4k3a .mbr-section-title {
  color: #000000;
}
.cid-tV4xlQ4k3a .mbr-text {
  color: #ffffff;
}
.cid-tV4xlQ4k3a .mbr-section-title,
.cid-tV4xlQ4k3a .mbr-section-btn {
  color: #ffffff;
}
.cid-tIxWanCQxE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tIxWanCQxE .row {
    flex-direction: column-reverse;
  }
}
.cid-tIxWanCQxE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIxWanCQxE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIxWanCQxE .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tIxWanCQxE .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tIxWanCQxE .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tIxWanCQxE .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tIxWanCQxE .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tIxWanCQxE .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tIxWanCQxE .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tIxWanCQxE .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tIxWanCQxE .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tIxWanCQxE .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tIxWanCQxE .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tIxWanCQxE .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-tIxWanCQxE .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tIxWanCQxE .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tIxWanCQxE .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tIxWanCQxE .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tIxWanCQxE .mbr-section-title {
  color: #000000;
}
.cid-tIxWanCQxE .mbr-text {
  color: #000000;
}
.cid-tIxUnN1wW0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-tIxUnN1wW0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIxUnN1wW0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIxUnN1wW0 .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tIxUnN1wW0 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tIxUnN1wW0 .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tIxUnN1wW0 .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tIxUnN1wW0 .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tIxUnN1wW0 .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tIxUnN1wW0 .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tIxUnN1wW0 .mbr-section-title {
  color: #FFFFFF;
}
.cid-tIxUnN1wW0 .mbr-desc {
  color: #FFFFFF;
}
.cid-tIxUnN1wW0 .mbr-text {
  color: #FFFFFF;
}
.cid-tIxUnNMJvH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tIxUnNMJvH .row {
    flex-direction: column-reverse;
  }
}
.cid-tIxUnNMJvH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIxUnNMJvH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIxUnNMJvH .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tIxUnNMJvH .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tIxUnNMJvH .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tIxUnNMJvH .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tIxUnNMJvH .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tIxUnNMJvH .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tIxUnNMJvH .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-tIxUnNMJvH .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-tIxUnNMJvH .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tIxUnNMJvH .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tIxUnNMJvH .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tIxUnNMJvH .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tIxUnNMJvH .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-tIxUnNMJvH .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-tIxUnNMJvH .image-wrapper {
    margin: 30px;
  }
}
.cid-tIxUnNMJvH .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tIxUnNMJvH .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tIxUnNMJvH .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tIxUnNMJvH .mbr-section-title {
  color: #000000;
}
.cid-tIxUnNMJvH .mbr-text {
  color: #000000;
}
.cid-tMoeqzidGD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tMoeqzidGD .row {
    flex-direction: column-reverse;
  }
}
.cid-tMoeqzidGD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMoeqzidGD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMoeqzidGD .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tMoeqzidGD .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tMoeqzidGD .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tMoeqzidGD .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tMoeqzidGD .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tMoeqzidGD .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tMoeqzidGD .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tMoeqzidGD .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tMoeqzidGD .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tMoeqzidGD .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tMoeqzidGD .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tMoeqzidGD .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-tMoeqzidGD .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tMoeqzidGD .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tMoeqzidGD .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tMoeqzidGD .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tMoeqzidGD .mbr-section-title {
  color: #000000;
}
.cid-tMoeqzidGD .mbr-text {
  color: #000000;
}
.cid-tIypnSaZ2o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #87e4db;
}
@media (max-width: 992px) {
  .cid-tIypnSaZ2o .form-title,
  .cid-tIypnSaZ2o .form-wrapper {
    padding: 0;
  }
}
.cid-tIypnSaZ2o .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-tIypnSaZ2o .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-tIypnSaZ2o .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tIypnSaZ2o .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tIypnSaZ2o .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-tIypnSaZ2o .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-tIypnSaZ2o .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tIypnSaZ2o .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tIypnSaZ2o .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tIypnSaZ2o .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-tIypnSaZ2o .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-tIypnSaZ2o .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-tIypnSaZ2o .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-tIypnSaZ2o .mbr-form {
    margin: 0 30px;
  }
}
.cid-tIypnSaZ2o .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tIypnSaZ2o .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tIypnSaZ2o .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-tIypnSaZ2o .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-tIypnSaZ2o .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-tIypnSaZ2o .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-tIypnSaZ2o .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-tIypnSaZ2o .mbr-section-title {
  color: #00acb1;
}
.cid-tIypnSaZ2o .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tIxUnOG1Pu {
  background-color: #efefec;
}
.cid-tIxUnOG1Pu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIxUnOG1Pu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIxUnOG1Pu .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tIxUnOG1Pu .row {
  align-items: center;
}
.cid-tIxUnOG1Pu .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tIxUnOG1Pu .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tIxUnOG1Pu .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tIxUnOG1Pu .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tIxUnOG1Pu .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tIxUnOG1Pu .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tIxUnOG1Pu .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tIxUnOG1Pu .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tIxUnOG1Pu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIxUnOG1Pu .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tIxUnOG1Pu .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tIxUnOG1Pu .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tIxUnOG1Pu .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tIxUnOG1Pu .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tIxUnOG1Pu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tIxUnOG1Pu .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIxUnOG1Pu .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tIxUnOG1Pu .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tIxUnOG1Pu .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tIxUnOG1Pu .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tIxUnOG1Pu .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tIxUnOG1Pu .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tIxUnOG1Pu .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tIxUnOG1Pu .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tIxUnOG1Pu .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tIxUnOG1Pu .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tIxUnOG1Pu .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tIxUnOG1Pu .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tIxUnOG1Pu .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tIxUnOG1Pu .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tIxUnOG1Pu .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tIxUnOG1Pu .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tIxUnOG1Pu .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tIxUnOG1Pu .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tIxUnOG1Pu .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tIxUnOG1Pu .contact-container {
    width: 100%;
  }
}
.cid-tIxUnOG1Pu .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tIxUnOG1Pu .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tIxUnOG1Pu .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tIxUnOG1Pu .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tIxUnOG1Pu .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tIxUnOG1Pu .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tIxUnOG1Pu .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tIxUnOG1Pu .copyright {
  color: #efefec;
}
.cid-tIxUnOG1Pu .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tIxUnOG1Pu .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tIxUnOG1Pu .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tKTWVdZZs3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tKTWVdZZs3 .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tKTWVdZZs3 nav.navbar {
  position: fixed;
}
.cid-tKTWVdZZs3 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tKTWVdZZs3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tKTWVdZZs3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tKTWVdZZs3 .dropdown-item:hover,
.cid-tKTWVdZZs3 .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tKTWVdZZs3 .dropdown-item:hover span {
  color: white;
}
.cid-tKTWVdZZs3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tKTWVdZZs3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tKTWVdZZs3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tKTWVdZZs3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tKTWVdZZs3 .nav-link {
  position: relative;
}
.cid-tKTWVdZZs3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tKTWVdZZs3 .container {
    flex-wrap: nowrap;
  }
}
.cid-tKTWVdZZs3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tKTWVdZZs3 .dropdown-menu,
.cid-tKTWVdZZs3 .navbar.opened {
  background: #ffffff !important;
}
.cid-tKTWVdZZs3 .nav-item:focus,
.cid-tKTWVdZZs3 .nav-link:focus {
  outline: none;
}
.cid-tKTWVdZZs3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tKTWVdZZs3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tKTWVdZZs3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tKTWVdZZs3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tKTWVdZZs3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tKTWVdZZs3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tKTWVdZZs3 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tKTWVdZZs3 .navbar.opened {
  transition: all 0.3s;
}
.cid-tKTWVdZZs3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tKTWVdZZs3 .navbar .navbar-logo img {
  width: auto;
}
.cid-tKTWVdZZs3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tKTWVdZZs3 .navbar.collapsed {
  justify-content: center;
}
.cid-tKTWVdZZs3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tKTWVdZZs3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tKTWVdZZs3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tKTWVdZZs3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tKTWVdZZs3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tKTWVdZZs3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tKTWVdZZs3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tKTWVdZZs3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tKTWVdZZs3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tKTWVdZZs3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tKTWVdZZs3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tKTWVdZZs3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tKTWVdZZs3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tKTWVdZZs3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tKTWVdZZs3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tKTWVdZZs3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tKTWVdZZs3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tKTWVdZZs3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tKTWVdZZs3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tKTWVdZZs3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tKTWVdZZs3 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tKTWVdZZs3 .navbar.navbar-short {
  min-height: 80px;
}
.cid-tKTWVdZZs3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tKTWVdZZs3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tKTWVdZZs3 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tKTWVdZZs3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tKTWVdZZs3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKTWVdZZs3 .dropdown-item.active,
.cid-tKTWVdZZs3 .dropdown-item:active {
  background-color: transparent;
}
.cid-tKTWVdZZs3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tKTWVdZZs3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tKTWVdZZs3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tKTWVdZZs3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tKTWVdZZs3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tKTWVdZZs3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tKTWVdZZs3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tKTWVdZZs3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tKTWVdZZs3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tKTWVdZZs3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tKTWVdZZs3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tKTWVdZZs3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tKTWVdZZs3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tKTWVdZZs3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tKTWVdZZs3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tKTWVdZZs3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tKTWVdZZs3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tKTWVdZZs3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tKTWVdZZs3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tKTWVdZZs3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tKTWVdZZs3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tKTWVdZZs3 .navbar {
    height: 70px;
  }
  .cid-tKTWVdZZs3 .navbar.opened {
    height: auto;
  }
  .cid-tKTWVdZZs3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tKTWVexxwN {
  background-image: url("../../../assets/images/mbr-1-968x645.jpg");
}
.cid-tKTWVexxwN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKTWVexxwN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKTWVexxwN .mbr-section-title {
  color: #FFFFFF;
}
.cid-tKTWVexxwN .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tKTWVexxwN .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tKTWVexxwN .mbr-section-btn {
  margin-top: 18px;
}
.cid-tKTWVexxwN .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-tKTWVexxwN .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-um9D1V65mC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1318.jpeg");
}
.cid-um9D1V65mC .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-um9D1V65mC .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-um9D1V65mC .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-um9D1V65mC .container {
    padding: 0 24px;
  }
}
.cid-um9D1V65mC .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-um9D1V65mC .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-um9D1V65mC .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-um9D1V65mC .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-um9D1V65mC .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-um9D1V65mC .mbr-section-btn {
    text-align: left;
  }
}
.cid-um9D1V65mC .mbr-section-title {
  color: #F9F6E0;
}
.cid-um9D1V65mC .mbr-text {
  color: #ffffff;
}
.cid-um9D1V65mC .mbr-section-title,
.cid-um9D1V65mC .mbr-section-btn {
  color: #ffffff;
}
.cid-uFWLmMEgC4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-uFWLmMEgC4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFWLmMEgC4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFWLmMEgC4 .row {
  justify-content: space-between;
}
.cid-uFWLmMEgC4 .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uFWLmMEgC4 .items-wrapper .item {
  margin-bottom: 32px;
}
.cid-uFWLmMEgC4 .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFWLmMEgC4 .items-wrapper .item {
    margin-bottom: 22px;
  }
}
.cid-uFWLmMEgC4 .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uFWLmMEgC4 .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uFWLmMEgC4 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 16px;
}
.cid-uFWLmMEgC4 .mbr-section-title {
  color: #ffffff;
}
.cid-uFWLmMEgC4 .item-title {
  color: #ffffff;
}
.cid-uFWLmMEgC4 .item-text {
  color: #ffffff;
}
.cid-ujdi7NMUg8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-ujdi7NMUg8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujdi7NMUg8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujdi7NMUg8 .container-fluid {
  padding: 0 48px;
}
@media (max-width: 992px) {
  .cid-ujdi7NMUg8 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ujdi7NMUg8 .container {
    padding: 0 16px;
  }
}
.cid-ujdi7NMUg8 .row {
  justify-content: center;
}
.cid-ujdi7NMUg8 .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ujdi7NMUg8 .content-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ujdi7NMUg8 .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-primary:hover,
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-secondary:hover,
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-success:hover,
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-info:hover,
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-warning:hover,
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-danger:hover,
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-black:hover,
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-white:hover,
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-primary:focus,
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-secondary:focus,
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-success:focus,
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-info:focus,
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-warning:focus,
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-danger:focus,
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-black:focus,
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
  border-color: #73c4bd !important;
}
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #87e4db !important;
  color: #16324f !important;
}
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
}
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #87e4da !important;
  color: #16324f !important;
}
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #16324f !important;
  color: #73c4bd !important;
  border-color: #16324f !important;
}
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #f4f7f8 !important;
  color: #16324f !important;
}
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
}
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.cid-ujdi7NMUg8 .content-wrapper .mbr-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.cid-ujdi7NMUg8 .mbr-desc {
  color: #706cff;
}
.cid-ujdi7NMUg8 .mbr-section-title {
  color: #000000;
}
.cid-ujdi7NMUg8 .mbr-text {
  color: #000000;
}
.cid-ujdi7NMUg8 .mbr-section-btn {
  text-align: center;
}
.cid-um9pRwLbDs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1318.jpeg");
}
.cid-um9pRwLbDs .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-um9pRwLbDs .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-um9pRwLbDs .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-um9pRwLbDs .container {
    padding: 0 24px;
  }
}
.cid-um9pRwLbDs .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-um9pRwLbDs .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-um9pRwLbDs .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-um9pRwLbDs .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-um9pRwLbDs .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-um9pRwLbDs .mbr-section-btn {
    text-align: left;
  }
}
.cid-um9pRwLbDs .mbr-section-title {
  color: #F9F6E0;
}
.cid-um9pRwLbDs .mbr-text {
  color: #ffffff;
}
.cid-um9pRwLbDs .mbr-section-title,
.cid-um9pRwLbDs .mbr-section-btn {
  color: #ffffff;
}
.cid-uagpBFwSUw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uagpBFwSUw .row {
    flex-direction: column-reverse;
  }
}
.cid-uagpBFwSUw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uagpBFwSUw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uagpBFwSUw .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uagpBFwSUw .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uagpBFwSUw .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uagpBFwSUw .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uagpBFwSUw .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uagpBFwSUw .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uagpBFwSUw .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-uagpBFwSUw .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uagpBFwSUw .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uagpBFwSUw .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uagpBFwSUw .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-uagpBFwSUw .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uagpBFwSUw .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-uagpBFwSUw .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-uagpBFwSUw .image-wrapper {
    margin: 30px;
  }
}
.cid-uagpBFwSUw .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uagpBFwSUw .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-uagpBFwSUw .image-wrapper img {
    min-height: 100%;
  }
}
.cid-uagpBFwSUw .mbr-section-title {
  color: #000000;
}
.cid-uagpBFwSUw .mbr-text {
  color: #000000;
}
.cid-tLE7TSucWo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #e8e8e8;
}
.cid-tLE7TSucWo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLE7TSucWo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLE7TSucWo .container-fluid {
  margin: 0;
  padding: 0 72px;
}
@media (max-width: 992px) {
  .cid-tLE7TSucWo .container-fluid {
    padding: 0 20px;
  }
}
.cid-tLE7TSucWo .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tLE7TSucWo .container {
    padding: 0 20px;
  }
  .cid-tLE7TSucWo .container .row {
    padding: 0;
  }
}
.cid-tLE7TSucWo .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-tLE7TSucWo .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tLE7TSucWo .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tLE7TSucWo .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-tLE7TSucWo .title-wrapper .mbr-section-btn .btn .mbr-iconfont {
  color: #c6a38f;
}
.cid-tLE7TSucWo .video-block .video-wrapper .app-video-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tLE7TSucWo .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-tLE7TSucWo .video-block .video-wrapper .app-video-wrapper:before {
  color: #222222;
  text-shadow: none;
}
.cid-tLE7TSucWo .mbr-section-title {
  color: #222222;
}
.cid-tLE7TSucWo .mbr-text {
  color: #222222;
}
.cid-u35H3Fl5fs {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-u35H3Fl5fs img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(79, 110, 173, 0.1);
}
.cid-u35H3Fl5fs .mbr-section-title {
  text-align: left;
  color: #130947;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-u35H3Fl5fs .mbr-text {
  color: #6d7a8c;
  line-height: 1.5;
}
.cid-u35H3Fl5fs .mbr-list {
  margin-top: 35px;
  color: #6d7a8c;
}
.cid-u35H3Fl5fs .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u35H3Fl5fs .mbr-list .list li {
  margin-bottom: 1rem;
}
.cid-u35H3Fl5fs .mbr-list .list li:before {
  font-weight: 900;
  color: #4f87fb;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-um9qUvkyg5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1318.jpeg");
}
.cid-um9qUvkyg5 .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-um9qUvkyg5 .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-um9qUvkyg5 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-um9qUvkyg5 .container {
    padding: 0 24px;
  }
}
.cid-um9qUvkyg5 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-um9qUvkyg5 .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-um9qUvkyg5 .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-um9qUvkyg5 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-um9qUvkyg5 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-um9qUvkyg5 .mbr-section-btn {
    text-align: left;
  }
}
.cid-um9qUvkyg5 .mbr-section-title {
  color: #F9F6E0;
}
.cid-um9qUvkyg5 .mbr-text {
  color: #ffffff;
}
.cid-um9qUvkyg5 .mbr-section-title,
.cid-um9qUvkyg5 .mbr-section-btn {
  color: #ffffff;
}
.cid-tKTWVf1UmE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-tKTWVf1UmE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKTWVf1UmE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKTWVf1UmE .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tKTWVf1UmE .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tKTWVf1UmE .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tKTWVf1UmE .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tKTWVf1UmE .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tKTWVf1UmE .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tKTWVf1UmE .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tKTWVf1UmE .mbr-section-title {
  color: #FFFFFF;
}
.cid-tKTWVf1UmE .mbr-desc {
  color: #FFFFFF;
}
.cid-tKTWVf1UmE .mbr-text {
  color: #FFFFFF;
}
.cid-tKTWVfwBdO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tKTWVfwBdO .row {
    flex-direction: column-reverse;
  }
}
.cid-tKTWVfwBdO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKTWVfwBdO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKTWVfwBdO .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tKTWVfwBdO .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tKTWVfwBdO .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tKTWVfwBdO .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tKTWVfwBdO .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tKTWVfwBdO .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tKTWVfwBdO .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tKTWVfwBdO .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tKTWVfwBdO .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tKTWVfwBdO .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tKTWVfwBdO .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tKTWVfwBdO .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-tKTWVfwBdO .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tKTWVfwBdO .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tKTWVfwBdO .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tKTWVfwBdO .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tKTWVfwBdO .mbr-section-title {
  color: #000000;
}
.cid-tKTWVfwBdO .mbr-text {
  color: #000000;
}
.cid-um9D3RES5Z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1318.jpeg");
}
.cid-um9D3RES5Z .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-um9D3RES5Z .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-um9D3RES5Z .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-um9D3RES5Z .container {
    padding: 0 24px;
  }
}
.cid-um9D3RES5Z .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-um9D3RES5Z .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-um9D3RES5Z .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-um9D3RES5Z .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-um9D3RES5Z .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-um9D3RES5Z .mbr-section-btn {
    text-align: left;
  }
}
.cid-um9D3RES5Z .mbr-section-title {
  color: #F9F6E0;
}
.cid-um9D3RES5Z .mbr-text {
  color: #ffffff;
}
.cid-um9D3RES5Z .mbr-section-title,
.cid-um9D3RES5Z .mbr-section-btn {
  color: #ffffff;
}
.cid-tKU6chU3SY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-tKU6chU3SY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKU6chU3SY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKU6chU3SY .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tKU6chU3SY .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tKU6chU3SY .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tKU6chU3SY .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tKU6chU3SY .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tKU6chU3SY .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tKU6chU3SY .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tKU6chU3SY .mbr-section-title {
  color: #FFFFFF;
}
.cid-tKU6chU3SY .mbr-desc {
  color: #FFFFFF;
}
.cid-tKU6chU3SY .mbr-text {
  color: #FFFFFF;
}
.cid-u9uJ3CkjVk {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-u9uJ3CkjVk img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(79, 110, 173, 0.1);
}
.cid-u9uJ3CkjVk .mbr-section-title {
  text-align: left;
  color: #130947;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-u9uJ3CkjVk .mbr-text {
  color: #6d7a8c;
  line-height: 1.5;
}
.cid-u9uJ3CkjVk .mbr-list {
  margin-top: 35px;
  color: #6d7a8c;
}
.cid-u9uJ3CkjVk .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u9uJ3CkjVk .mbr-list .list li {
  margin-bottom: 1rem;
}
.cid-u9uJ3CkjVk .mbr-list .list li:before {
  font-weight: 900;
  color: #4f87fb;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-uDpvL1ki5Y {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-uDpvL1ki5Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDpvL1ki5Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDpvL1ki5Y .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-uDpvL1ki5Y .container-fluid {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .cid-uDpvL1ki5Y .container {
    padding: 0 20px;
  }
}
.cid-uDpvL1ki5Y .row {
  justify-content: center;
}
.cid-uDpvL1ki5Y .content-wrapper .mbr-desc {
  margin-bottom: 25px;
}
.cid-uDpvL1ki5Y .content-wrapper .mbr-section-title {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-uDpvL1ki5Y .content-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uDpvL1ki5Y .content-wrapper .text-wrapper {
  padding-left: 216px;
}
@media (max-width: 1440px) {
  .cid-uDpvL1ki5Y .content-wrapper .text-wrapper {
    padding-left: 100px;
  }
}
@media (max-width: 1200px) {
  .cid-uDpvL1ki5Y .content-wrapper .text-wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 992px) {
  .cid-uDpvL1ki5Y .content-wrapper .text-wrapper {
    padding-left: 0;
  }
}
.cid-uDpvL1ki5Y .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 75%;
  margin-bottom: 0;
}
.cid-uDpvL1ki5Y .mbr-desc {
  color: #ffffff;
}
.cid-uDpvL1ki5Y .mbr-section-title {
  color: #ffffff;
}
.cid-uDpvL1ki5Y .mbr-text {
  color: #ffffff;
}
.cid-viTAd4ePsP {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-viTAd4ePsP .mbr-fallback-image.disabled {
  display: none;
}
.cid-viTAd4ePsP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viTAd4ePsP .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-viTAd4ePsP .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-viTAd4ePsP .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-viTAd4ePsP .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-viTAd4ePsP .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-viTAd4ePsP .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-viTAd4ePsP .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-viTAd4ePsP .text-wrapper {
    margin: 0 30px;
  }
}
.cid-viTAd4ePsP .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-viTAd4ePsP .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-viTAd4ePsP .mbr-section-title {
  color: #FFFFFF;
}
.cid-viTAd4ePsP .mbr-section-title,
.cid-viTAd4ePsP .mbr-section-btn {
  text-align: center;
}
#custom-html-q7 {
  /* Type valid CSS here 
Be sure to add this line before </form>

<input type="hidden" id="zc_gad" name="zc_gad" value="">

*/
  /* Zoho CRM form - Persona Health styling */
  /* Form container */
  /* Labels and field text */
  /* Keep Zoho row spacing sane */
  /* Remove any unwanted padding from Zoho internal divs */
  /* Label column */
  /* Field column */
  /* Input fields */
  /* Message box */
  /* Buttons */
}
#custom-html-q7 #crmWebToEntityForm .zoho-form-title {
  font-family: 'Exo', Arial, sans-serif !important;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
  margin: 0 0 25px 0;
  padding: 0;
}
#custom-html-q7 #crmWebToEntityForm {
  font-family: 'Exo', sans-serif !important;
  color: #ffffff;
  text-align: left !important;
}
#custom-html-q7 #crmWebToEntityForm label,
#custom-html-q7 #crmWebToEntityForm input,
#custom-html-q7 #crmWebToEntityForm textarea,
#custom-html-q7 #crmWebToEntityForm select,
#custom-html-q7 #crmWebToEntityForm option,
#custom-html-q7 #crmWebToEntityForm .zcwf_button,
#custom-html-q7 #crmWebToEntityForm .formsubmit {
  font-family: 'Exo', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
#custom-html-q7 #crmWebToEntityForm .zcwf_row {
  margin: 12px 0 !important;
}
#custom-html-q7 #crmWebToEntityForm div {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  text-align: left !important;
}
#custom-html-q7 #crmWebToEntityForm .zcwf_col_lab {
  line-height: 1.3 !important;
  margin-top: 5px !important;
}
#custom-html-q7 #crmWebToEntityForm .zcwf_col_fld {
  margin-top: 5px !important;
}
#custom-html-q7 #crmWebToEntityForm input,
#custom-html-q7 #crmWebToEntityForm select,
#custom-html-q7 #crmWebToEntityForm textarea {
  line-height: 1.3 !important;
  padding: 4px 6px !important;
  color: #313949;
}
#custom-html-q7 #crmWebToEntityForm textarea {
  min-height: 90px;
}
#custom-html-q7 #crmWebToEntityForm .zcwf_button {
  cursor: pointer;
}
.cid-viTAehOJSx {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-viTAehOJSx .mbr-fallback-image.disabled {
  display: none;
}
.cid-viTAehOJSx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viTAehOJSx .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-viTAehOJSx .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-viTAehOJSx .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-viTAehOJSx .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-viTAehOJSx .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-viTAehOJSx .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-viTAehOJSx .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-viTAehOJSx .text-wrapper {
    margin: 0 30px;
  }
}
.cid-viTAehOJSx .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-viTAehOJSx .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-viTAehOJSx .mbr-section-title {
  color: #FFFFFF;
}
.cid-viTAehOJSx .mbr-section-title,
.cid-viTAehOJSx .mbr-section-btn {
  text-align: center;
}
.cid-um9qYXfLz8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1318.jpeg");
}
.cid-um9qYXfLz8 .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-um9qYXfLz8 .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-um9qYXfLz8 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-um9qYXfLz8 .container {
    padding: 0 24px;
  }
}
.cid-um9qYXfLz8 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-um9qYXfLz8 .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-um9qYXfLz8 .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-um9qYXfLz8 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-um9qYXfLz8 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-um9qYXfLz8 .mbr-section-btn {
    text-align: left;
  }
}
.cid-um9qYXfLz8 .mbr-section-title {
  color: #F9F6E0;
}
.cid-um9qYXfLz8 .mbr-text {
  color: #ffffff;
}
.cid-um9qYXfLz8 .mbr-section-title,
.cid-um9qYXfLz8 .mbr-section-btn {
  color: #ffffff;
}
.cid-u35HtMJv0r {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u35HtMJv0r .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-u35HtMJv0r .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-u35HtMJv0r .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1.85;
}
.cid-u35HtMJv0r .contents .mbr-section-title {
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #130947;
}
.cid-u35HtMJv0r .contents .mbr-section-text {
  margin-top: 20px;
  color: #6d7a8c;
  letter-spacing: 0;
  line-height: 1.5;
}
.cid-u35HtMJv0r .card-wrapper {
  height: 100%;
}
.cid-u35HtMJv0r .card-wrapper .card-box {
  padding-top: 2rem;
}
.cid-u35HtMJv0r .card-wrapper .card-box .card-title {
  color: #28303f;
  transition: 0.3s all;
  font-weight: 700;
  margin-bottom: 10px;
}
.cid-u35HtMJv0r .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  transition: 0.3s all;
}
.cid-u35HtMJv0r .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.27;
  letter-spacing: -0.5px;
}
.cid-u35HtMJv0r .card-wrapper .card-box .card-subtitle {
  color: #a0a9b6;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cid-u35HtMJv0r .card-wrapper .card-box .card-subtitle.display-4 {
  font-size: 12px;
}
.cid-u35HtMJv0r .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-u35HtMJv0r .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-u35HtMJv0r .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-u35HtMJv0r .card-wrapper .card-img {
  position: relative;
}
.cid-u35HtMJv0r .card-wrapper .card-img img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-u35HtMJv0r .card-wrapper .card-img .meta-category {
  background-color: #87e4db;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  bottom: -15px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-u35HtMJv0r .card-wrapper .card-img .meta-category .btn {
  font-weight: 600 !important;
}
.cid-u35HtMJv0r .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-u35HtMJv0r .card-wrapper .mbr-link-btn .btn {
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1px;
}
.cid-u35HtMJv0r .card-wrapper .mbr-link-btn .btn.display-4 {
  font-size: 12px;
}
.cid-u35HtMJv0r .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-u35HtMJv0r .btn[class*='-outline'] span {
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  transition: padding 0.3s !important;
}
.cid-u35HtMJv0r .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-u35HtMJv0r .btn[class*='-outline']:hover {
  background-color: transparent !important;
  color: #4f87fb !important;
  box-shadow: none !important;
}
.cid-u35HtMJv0r .btn[class*='-outline']:active,
.cid-u35HtMJv0r .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-u35HtMJv0r .contents .mbr-section-text {
  text-align: left;
  color: #333333;
}
.cid-u35HtMJv0r .card-wrapper .card-box .mbr-text,
.cid-u35HtMJv0r .mbr-link-btn {
  color: #333333;
}
.cid-viTArBgPJe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-viTArBgPJe .mbr-fallback-image.disabled {
  display: none;
}
.cid-viTArBgPJe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viTArBgPJe .row {
  justify-content: space-between;
}
.cid-viTArBgPJe .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #e4ed64;
}
@media (max-width: 992px) {
  .cid-viTArBgPJe .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-viTArBgPJe .content-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-viTArBgPJe .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-viTArBgPJe .content-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-viTArBgPJe .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-viTArBgPJe .mbr-label {
  color: #000000;
}
.cid-viTArBgPJe .mbr-section-title {
  color: #16324f;
}
.cid-viTArBgPJe .mbr-desc {
  color: #000000;
}
.cid-viTArBgPJe .mbr-text {
  color: #8a8a8a;
}
.cid-um9D5GJq8X {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1318.jpeg");
}
.cid-um9D5GJq8X .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-um9D5GJq8X .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-um9D5GJq8X .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-um9D5GJq8X .container {
    padding: 0 24px;
  }
}
.cid-um9D5GJq8X .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-um9D5GJq8X .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-um9D5GJq8X .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-um9D5GJq8X .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-um9D5GJq8X .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-um9D5GJq8X .mbr-section-btn {
    text-align: left;
  }
}
.cid-um9D5GJq8X .mbr-section-title {
  color: #F9F6E0;
}
.cid-um9D5GJq8X .mbr-text {
  color: #ffffff;
}
.cid-um9D5GJq8X .mbr-section-title,
.cid-um9D5GJq8X .mbr-section-btn {
  color: #ffffff;
}
.cid-tKTWVg2ezJ {
  background-color: #efefec;
}
.cid-tKTWVg2ezJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKTWVg2ezJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKTWVg2ezJ .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tKTWVg2ezJ .row {
  align-items: center;
}
.cid-tKTWVg2ezJ .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tKTWVg2ezJ .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tKTWVg2ezJ .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tKTWVg2ezJ .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tKTWVg2ezJ .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tKTWVg2ezJ .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tKTWVg2ezJ .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tKTWVg2ezJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tKTWVg2ezJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKTWVg2ezJ .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tKTWVg2ezJ .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tKTWVg2ezJ .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tKTWVg2ezJ .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tKTWVg2ezJ .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tKTWVg2ezJ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tKTWVg2ezJ .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tKTWVg2ezJ .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tKTWVg2ezJ .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tKTWVg2ezJ .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tKTWVg2ezJ .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tKTWVg2ezJ .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tKTWVg2ezJ .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tKTWVg2ezJ .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tKTWVg2ezJ .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tKTWVg2ezJ .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tKTWVg2ezJ .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tKTWVg2ezJ .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tKTWVg2ezJ .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tKTWVg2ezJ .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tKTWVg2ezJ .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tKTWVg2ezJ .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tKTWVg2ezJ .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tKTWVg2ezJ .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tKTWVg2ezJ .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tKTWVg2ezJ .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tKTWVg2ezJ .contact-container {
    width: 100%;
  }
}
.cid-tKTWVg2ezJ .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tKTWVg2ezJ .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tKTWVg2ezJ .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tKTWVg2ezJ .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tKTWVg2ezJ .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tKTWVg2ezJ .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tKTWVg2ezJ .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tKTWVg2ezJ .copyright {
  color: #efefec;
}
.cid-tKTWVg2ezJ .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tKTWVg2ezJ .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tKTWVg2ezJ .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tIfrcI6D4f {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tIfrcI6D4f .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tIfrcI6D4f nav.navbar {
  position: fixed;
}
.cid-tIfrcI6D4f .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIfrcI6D4f .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIfrcI6D4f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIfrcI6D4f .dropdown-item:hover,
.cid-tIfrcI6D4f .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tIfrcI6D4f .dropdown-item:hover span {
  color: white;
}
.cid-tIfrcI6D4f .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIfrcI6D4f .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIfrcI6D4f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIfrcI6D4f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIfrcI6D4f .nav-link {
  position: relative;
}
.cid-tIfrcI6D4f .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tIfrcI6D4f .container {
    flex-wrap: nowrap;
  }
}
.cid-tIfrcI6D4f .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIfrcI6D4f .dropdown-menu,
.cid-tIfrcI6D4f .navbar.opened {
  background: #ffffff !important;
}
.cid-tIfrcI6D4f .nav-item:focus,
.cid-tIfrcI6D4f .nav-link:focus {
  outline: none;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIfrcI6D4f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIfrcI6D4f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIfrcI6D4f .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tIfrcI6D4f .navbar.opened {
  transition: all 0.3s;
}
.cid-tIfrcI6D4f .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIfrcI6D4f .navbar .navbar-logo img {
  width: auto;
}
.cid-tIfrcI6D4f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIfrcI6D4f .navbar.collapsed {
  justify-content: center;
}
.cid-tIfrcI6D4f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIfrcI6D4f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tIfrcI6D4f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIfrcI6D4f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIfrcI6D4f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIfrcI6D4f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIfrcI6D4f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIfrcI6D4f .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIfrcI6D4f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIfrcI6D4f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIfrcI6D4f .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIfrcI6D4f .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tIfrcI6D4f .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tIfrcI6D4f .navbar.navbar-short {
  min-height: 80px;
}
.cid-tIfrcI6D4f .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIfrcI6D4f .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIfrcI6D4f .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIfrcI6D4f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIfrcI6D4f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIfrcI6D4f .dropdown-item.active,
.cid-tIfrcI6D4f .dropdown-item:active {
  background-color: transparent;
}
.cid-tIfrcI6D4f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIfrcI6D4f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIfrcI6D4f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIfrcI6D4f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tIfrcI6D4f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIfrcI6D4f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIfrcI6D4f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIfrcI6D4f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIfrcI6D4f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIfrcI6D4f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIfrcI6D4f .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIfrcI6D4f .navbar {
    height: 70px;
  }
  .cid-tIfrcI6D4f .navbar.opened {
    height: auto;
  }
  .cid-tIfrcI6D4f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIfeUcLGcq {
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-tIfeUcLGcq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIfeUcLGcq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIfeUcLGcq .mbr-section-title {
  color: #FFFFFF;
}
.cid-tIfeUcLGcq .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tIfeUcLGcq .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tIfeUcLGcq .mbr-section-btn {
  margin-top: 18px;
}
.cid-tIfeUcLGcq .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-tIfeUcLGcq .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-uFXPBDRr8c {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #00acb1;
}
.cid-uFXPBDRr8c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uFXPBDRr8c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uFXPBDRr8c .row {
  justify-content: space-between;
}
.cid-uFXPBDRr8c .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uFXPBDRr8c .items-wrapper .item {
  margin-bottom: 32px;
}
.cid-uFXPBDRr8c .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uFXPBDRr8c .items-wrapper .item {
    margin-bottom: 22px;
  }
}
.cid-uFXPBDRr8c .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uFXPBDRr8c .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uFXPBDRr8c .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 16px;
}
.cid-uFXPBDRr8c .mbr-section-title {
  color: #ffffff;
}
.cid-uFXPBDRr8c .item-title {
  color: #ffffff;
}
.cid-uFXPBDRr8c .item-text {
  color: #ffffff;
}
.cid-tIfeuqEhWi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-tIfeuqEhWi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIfeuqEhWi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIfeuqEhWi .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tIfeuqEhWi .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tIfeuqEhWi .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tIfeuqEhWi .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tIfeuqEhWi .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tIfeuqEhWi .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tIfeuqEhWi .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tIfeuqEhWi .mbr-section-title {
  color: #FFFFFF;
}
.cid-tIfeuqEhWi .mbr-desc {
  color: #FFFFFF;
}
.cid-tIfeuqEhWi .mbr-text {
  color: #FFFFFF;
}
.cid-tModJ3doPz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tModJ3doPz .row {
    flex-direction: column-reverse;
  }
}
.cid-tModJ3doPz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tModJ3doPz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tModJ3doPz .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tModJ3doPz .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tModJ3doPz .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tModJ3doPz .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tModJ3doPz .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tModJ3doPz .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tModJ3doPz .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tModJ3doPz .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tModJ3doPz .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tModJ3doPz .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tModJ3doPz .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tModJ3doPz .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-tModJ3doPz .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tModJ3doPz .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tModJ3doPz .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tModJ3doPz .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tModJ3doPz .mbr-section-title {
  color: #000000;
}
.cid-tModJ3doPz .mbr-text {
  color: #000000;
}
.cid-u29pW7X4ld {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u29pW7X4ld .link {
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.cid-u29pW7X4ld .link .mbr-iconfont {
  font-size: 16px;
  width: 16px;
  margin-right: 10px;
  vertical-align: middle;
}
.cid-u29pW7X4ld .link:hover {
  transform: translatex(10px);
}
.cid-u29pW7X4ld .card {
  margin-bottom: 4rem;
}
.cid-u29pW7X4ld img {
  height: 200px;
  object-fit: cover;
}
.cid-u29pW7X4ld .mbr-text {
  text-align: left;
  color: #00acb1;
}
.cid-tIghYRNmTQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-tIghYRNmTQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIghYRNmTQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIghYRNmTQ .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tIghYRNmTQ .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tIghYRNmTQ .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tIghYRNmTQ .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tIghYRNmTQ .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tIghYRNmTQ .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tIghYRNmTQ .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tIghYRNmTQ .mbr-section-title {
  color: #FFFFFF;
}
.cid-tIghYRNmTQ .mbr-desc {
  color: #FFFFFF;
}
.cid-tIghYRNmTQ .mbr-text {
  color: #FFFFFF;
}
.cid-tMw5IqK9P7 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tMw5IqK9P7 .link {
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.cid-tMw5IqK9P7 .link .mbr-iconfont {
  font-size: 16px;
  width: 16px;
  margin-right: 10px;
  vertical-align: middle;
}
.cid-tMw5IqK9P7 .link:hover {
  transform: translatex(10px);
}
.cid-tMw5IqK9P7 .card {
  margin-bottom: 4rem;
}
.cid-tMw5IqK9P7 img {
  height: 200px;
  object-fit: cover;
}
.cid-tMw5IqK9P7 .mbr-text {
  text-align: left;
  color: #00acb1;
}
.cid-tMw8UYUunb {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tMw8UYUunb .link {
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.cid-tMw8UYUunb .link .mbr-iconfont {
  font-size: 16px;
  width: 16px;
  margin-right: 10px;
  vertical-align: middle;
}
.cid-tMw8UYUunb .link:hover {
  transform: translatex(10px);
}
.cid-tMw8UYUunb .card {
  margin-bottom: 4rem;
}
.cid-tMw8UYUunb img {
  height: 200px;
  object-fit: cover;
}
.cid-tMw8UYUunb .mbr-text {
  color: #00acb1;
}
.cid-u30KF8wCOY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u30KF8wCOY .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #87e4db none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-u30KF8wCOY .mbr-iconfont {
  align-items: center;
}
.cid-u30KF8wCOY .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-u30KF8wCOY .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-u30KF8wCOY .icon-transition span:hover {
  background-color: #000000;
  color: #87e4db;
}
.cid-u30KF8wCOY .social-media {
  padding: 0;
}
.cid-u30KF8wCOY .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-u30KF8wCOY .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-u30KF8wCOY .mbr-list,
.cid-u30KF8wCOY .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-u30KF8wCOY .social-list {
    text-align: center !important;
  }
}
.cid-u30KF8wCOY .mbr-section-title,
.cid-u30KF8wCOY .social-list {
  color: #00acb1;
}
.cid-tHiCn2mQbp {
  background-color: #efefec;
}
.cid-tHiCn2mQbp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHiCn2mQbp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHiCn2mQbp .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tHiCn2mQbp .row {
  align-items: center;
}
.cid-tHiCn2mQbp .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tHiCn2mQbp .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tHiCn2mQbp .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHiCn2mQbp .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tHiCn2mQbp .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tHiCn2mQbp .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tHiCn2mQbp .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tHiCn2mQbp .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tHiCn2mQbp .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tHiCn2mQbp .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tHiCn2mQbp .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tHiCn2mQbp .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tHiCn2mQbp .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tHiCn2mQbp .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .contact-container {
    width: 100%;
  }
}
.cid-tHiCn2mQbp .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tHiCn2mQbp .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tHiCn2mQbp .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tHiCn2mQbp .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tHiCn2mQbp .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tHiCn2mQbp .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tHiCn2mQbp .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tHiCn2mQbp .copyright {
  color: #efefec;
}
.cid-tHiCn2mQbp .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tHiCn2mQbp .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tHiCn2mQbp .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tIl7c0D3Zb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tIl7c0D3Zb .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tIl7c0D3Zb nav.navbar {
  position: fixed;
}
.cid-tIl7c0D3Zb .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIl7c0D3Zb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIl7c0D3Zb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIl7c0D3Zb .dropdown-item:hover,
.cid-tIl7c0D3Zb .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tIl7c0D3Zb .dropdown-item:hover span {
  color: white;
}
.cid-tIl7c0D3Zb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIl7c0D3Zb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIl7c0D3Zb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIl7c0D3Zb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIl7c0D3Zb .nav-link {
  position: relative;
}
.cid-tIl7c0D3Zb .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tIl7c0D3Zb .container {
    flex-wrap: nowrap;
  }
}
.cid-tIl7c0D3Zb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIl7c0D3Zb .dropdown-menu,
.cid-tIl7c0D3Zb .navbar.opened {
  background: #ffffff !important;
}
.cid-tIl7c0D3Zb .nav-item:focus,
.cid-tIl7c0D3Zb .nav-link:focus {
  outline: none;
}
.cid-tIl7c0D3Zb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIl7c0D3Zb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIl7c0D3Zb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIl7c0D3Zb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIl7c0D3Zb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIl7c0D3Zb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIl7c0D3Zb .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tIl7c0D3Zb .navbar.opened {
  transition: all 0.3s;
}
.cid-tIl7c0D3Zb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIl7c0D3Zb .navbar .navbar-logo img {
  width: auto;
}
.cid-tIl7c0D3Zb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIl7c0D3Zb .navbar.collapsed {
  justify-content: center;
}
.cid-tIl7c0D3Zb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIl7c0D3Zb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tIl7c0D3Zb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tIl7c0D3Zb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIl7c0D3Zb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIl7c0D3Zb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIl7c0D3Zb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIl7c0D3Zb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIl7c0D3Zb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIl7c0D3Zb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIl7c0D3Zb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIl7c0D3Zb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIl7c0D3Zb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIl7c0D3Zb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIl7c0D3Zb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIl7c0D3Zb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIl7c0D3Zb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIl7c0D3Zb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIl7c0D3Zb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIl7c0D3Zb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tIl7c0D3Zb .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tIl7c0D3Zb .navbar.navbar-short {
  min-height: 80px;
}
.cid-tIl7c0D3Zb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIl7c0D3Zb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIl7c0D3Zb .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIl7c0D3Zb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIl7c0D3Zb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIl7c0D3Zb .dropdown-item.active,
.cid-tIl7c0D3Zb .dropdown-item:active {
  background-color: transparent;
}
.cid-tIl7c0D3Zb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIl7c0D3Zb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIl7c0D3Zb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIl7c0D3Zb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tIl7c0D3Zb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIl7c0D3Zb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIl7c0D3Zb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIl7c0D3Zb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIl7c0D3Zb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIl7c0D3Zb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tIl7c0D3Zb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIl7c0D3Zb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIl7c0D3Zb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIl7c0D3Zb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIl7c0D3Zb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIl7c0D3Zb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIl7c0D3Zb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIl7c0D3Zb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIl7c0D3Zb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIl7c0D3Zb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIl7c0D3Zb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIl7c0D3Zb .navbar {
    height: 70px;
  }
  .cid-tIl7c0D3Zb .navbar.opened {
    height: auto;
  }
  .cid-tIl7c0D3Zb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tIl7c1efLm {
  background-image: url("../../../assets/images/portrait-of-smiling-female-nurse-wearing-scrubs-in-2021-08-26-16-15-24-utc-2000x1334.jpg");
}
.cid-tIl7c1efLm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIl7c1efLm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIl7c1efLm .mbr-section-title {
  color: #FFFFFF;
}
.cid-tIl7c1efLm .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tIl7c1efLm .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tIl7c1efLm .mbr-section-btn {
  margin-top: 18px;
}
.cid-tIl7c1efLm .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-tIl7c1efLm .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-tIl7c1U1KH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-tIl7c1U1KH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIl7c1U1KH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIl7c1U1KH .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tIl7c1U1KH .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tIl7c1U1KH .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tIl7c1U1KH .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tIl7c1U1KH .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tIl7c1U1KH .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tIl7c1U1KH .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tIl7c1U1KH .mbr-section-title {
  color: #FFFFFF;
}
.cid-tIl7c1U1KH .mbr-desc {
  color: #FFFFFF;
}
.cid-tIl7c1U1KH .mbr-text {
  color: #FFFFFF;
}
.cid-tIl7c2tQPQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tIl7c2tQPQ .row {
    flex-direction: column-reverse;
  }
}
.cid-tIl7c2tQPQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIl7c2tQPQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIl7c2tQPQ .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tIl7c2tQPQ .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tIl7c2tQPQ .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tIl7c2tQPQ .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tIl7c2tQPQ .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tIl7c2tQPQ .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tIl7c2tQPQ .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tIl7c2tQPQ .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tIl7c2tQPQ .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tIl7c2tQPQ .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tIl7c2tQPQ .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tIl7c2tQPQ .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-tIl7c2tQPQ .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tIl7c2tQPQ .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tIl7c2tQPQ .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tIl7c2tQPQ .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tIl7c2tQPQ .mbr-section-title {
  color: #000000;
}
.cid-tIl7c2tQPQ .mbr-text {
  color: #000000;
}
.cid-tIl7c3ICLc {
  background-color: #efefec;
}
.cid-tIl7c3ICLc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIl7c3ICLc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIl7c3ICLc .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tIl7c3ICLc .row {
  align-items: center;
}
.cid-tIl7c3ICLc .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tIl7c3ICLc .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tIl7c3ICLc .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tIl7c3ICLc .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tIl7c3ICLc .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tIl7c3ICLc .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tIl7c3ICLc .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tIl7c3ICLc .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tIl7c3ICLc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIl7c3ICLc .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tIl7c3ICLc .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tIl7c3ICLc .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tIl7c3ICLc .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tIl7c3ICLc .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tIl7c3ICLc .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tIl7c3ICLc .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIl7c3ICLc .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tIl7c3ICLc .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tIl7c3ICLc .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tIl7c3ICLc .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tIl7c3ICLc .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tIl7c3ICLc .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tIl7c3ICLc .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tIl7c3ICLc .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tIl7c3ICLc .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tIl7c3ICLc .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tIl7c3ICLc .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tIl7c3ICLc .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tIl7c3ICLc .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tIl7c3ICLc .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tIl7c3ICLc .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tIl7c3ICLc .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tIl7c3ICLc .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tIl7c3ICLc .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tIl7c3ICLc .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tIl7c3ICLc .contact-container {
    width: 100%;
  }
}
.cid-tIl7c3ICLc .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tIl7c3ICLc .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tIl7c3ICLc .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tIl7c3ICLc .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tIl7c3ICLc .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tIl7c3ICLc .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tIl7c3ICLc .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tIl7c3ICLc .copyright {
  color: #efefec;
}
.cid-tIl7c3ICLc .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tIl7c3ICLc .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tIl7c3ICLc .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tIfrcI6D4f {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tIfrcI6D4f .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tIfrcI6D4f nav.navbar {
  position: fixed;
}
.cid-tIfrcI6D4f .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIfrcI6D4f .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIfrcI6D4f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIfrcI6D4f .dropdown-item:hover,
.cid-tIfrcI6D4f .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tIfrcI6D4f .dropdown-item:hover span {
  color: white;
}
.cid-tIfrcI6D4f .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIfrcI6D4f .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIfrcI6D4f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIfrcI6D4f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIfrcI6D4f .nav-link {
  position: relative;
}
.cid-tIfrcI6D4f .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tIfrcI6D4f .container {
    flex-wrap: nowrap;
  }
}
.cid-tIfrcI6D4f .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIfrcI6D4f .dropdown-menu,
.cid-tIfrcI6D4f .navbar.opened {
  background: #ffffff !important;
}
.cid-tIfrcI6D4f .nav-item:focus,
.cid-tIfrcI6D4f .nav-link:focus {
  outline: none;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIfrcI6D4f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIfrcI6D4f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIfrcI6D4f .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tIfrcI6D4f .navbar.opened {
  transition: all 0.3s;
}
.cid-tIfrcI6D4f .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIfrcI6D4f .navbar .navbar-logo img {
  width: auto;
}
.cid-tIfrcI6D4f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIfrcI6D4f .navbar.collapsed {
  justify-content: center;
}
.cid-tIfrcI6D4f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIfrcI6D4f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tIfrcI6D4f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIfrcI6D4f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIfrcI6D4f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIfrcI6D4f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIfrcI6D4f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIfrcI6D4f .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIfrcI6D4f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIfrcI6D4f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIfrcI6D4f .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIfrcI6D4f .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tIfrcI6D4f .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tIfrcI6D4f .navbar.navbar-short {
  min-height: 80px;
}
.cid-tIfrcI6D4f .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIfrcI6D4f .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIfrcI6D4f .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIfrcI6D4f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIfrcI6D4f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIfrcI6D4f .dropdown-item.active,
.cid-tIfrcI6D4f .dropdown-item:active {
  background-color: transparent;
}
.cid-tIfrcI6D4f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIfrcI6D4f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIfrcI6D4f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIfrcI6D4f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tIfrcI6D4f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIfrcI6D4f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIfrcI6D4f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIfrcI6D4f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIfrcI6D4f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIfrcI6D4f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIfrcI6D4f .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIfrcI6D4f .navbar {
    height: 70px;
  }
  .cid-tIfrcI6D4f .navbar.opened {
    height: auto;
  }
  .cid-tIfrcI6D4f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOWKY6WtTs {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tOWKY6WtTs .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tOWKY6WtTs .photo-split .image-wrap img {
  max-width: 100%;
  max-height: 800px;
  z-index: 9;
  position: relative;
}
.cid-tOWKY6WtTs .photo-split .element-outer {
  border-radius: 100%;
  padding: 60px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tOWKY6WtTs .photo-split .element-outer2 {
  border-radius: 100%;
  padding: 100px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tOWKY6WtTs .photo-split .element-inner {
  position: absolute;
  z-index: 10;
  left: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tOWKY6WtTs .photo-split .element-inner .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 31px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4db;
  margin-right: 15px;
  z-index: 10;
}
.cid-tOWKY6WtTs .wrap-block {
  padding: 3rem 3rem;
}
.cid-tOWKY6WtTs .wrap-block .contents {
  margin-bottom: 40px;
  padding-right: 50px;
}
.cid-tOWKY6WtTs .wrap-block .contents .mbr-subtitle {
  color: #87e4db;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tOWKY6WtTs .wrap-block .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-tOWKY6WtTs .wrap-block .contents .mbr-section-title {
  margin-bottom: 10px;
  color: #73c4bd;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.cid-tOWKY6WtTs .wrap-block .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
}
.cid-tOWKY6WtTs .wrap-block .contents .mbr-section-text.display-7 {
  font-size: 20px;
}
.cid-tOWKY6WtTs .wrap-block .contents .mbr-section-text.display-4 {
  font-size: 16px;
}
.cid-tOWKY6WtTs .wrap-block .contents h3 {
  color: #73c4bd;
  letter-spacing: -0.5px;
  line-height: 30px;
}
.cid-tOWKY6WtTs .wrap-block .contents h4 {
  color: #16324f;
}
.cid-tOWKY6WtTs .info-widget {
  padding-top: 0.5rem;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.cid-tOWKY6WtTs .info-widget .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 18px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4da;
  margin-right: 15px;
}
.cid-tOWKY6WtTs .info-widget .signature {
  height: 75px;
  display: inline-block;
  margin-right: 15px;
  object-fit: contain;
}
.cid-tOWKY6WtTs .info-widget .widget-content {
  display: flex;
  vertical-align: baseline;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-tOWKY6WtTs .info-widget .widget-content .widget-title {
  margin-bottom: 7px;
  color: #73c4bd;
}
.cid-tOWKY6WtTs .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  color: #7e7e7e;
}
@media (max-width: 991px) {
  .cid-tOWKY6WtTs .photo-split {
    padding: 3rem 3rem;
  }
  .cid-tOWKY6WtTs .photo-split .element-outer,
  .cid-tOWKY6WtTs .photo-split .element-outer2 {
    display: none;
  }
  .cid-tOWKY6WtTs .photo-split .element-inner {
    left: 0;
  }
}
@media (max-width: 767px) {
  .cid-tOWKY6WtTs .mbr-section-title,
  .cid-tOWKY6WtTs .mbr-section-subtitle,
  .cid-tOWKY6WtTs .mbr-text {
    text-align: left !important;
  }
  .cid-tOWKY6WtTs .social-list {
    text-align: left !important;
  }
}
.cid-tOWKY6WtTs .boldSubtitle {
  margin-top: 40px !important;
}
@media (max-width: 500px) {
  .cid-tOWKY6WtTs .wrap-block {
    padding: 3rem 1rem;
  }
}
.cid-tOWNIlzsLf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tOWNIlzsLf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOWNIlzsLf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOWNIlzsLf .mbr-section-title {
  color: #00acb1;
}
.cid-tOWNIlzsLf .mbr-text {
  color: #00acb1;
}
.cid-tOWMaHccVz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tOWMaHccVz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOWMaHccVz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOWMaHccVz .google-map {
  height: 35rem;
  position: relative;
}
.cid-tOWMaHccVz .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tOWMaHccVz .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-tOWMaHccVz .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tOWMaHccVz .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u30QDMNnwx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u30QDMNnwx .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #87e4db none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-u30QDMNnwx .mbr-iconfont {
  align-items: center;
}
.cid-u30QDMNnwx .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-u30QDMNnwx .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-u30QDMNnwx .icon-transition span:hover {
  background-color: #000000;
  color: #87e4db;
}
.cid-u30QDMNnwx .social-media {
  padding: 0;
}
.cid-u30QDMNnwx .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-u30QDMNnwx .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-u30QDMNnwx .mbr-list,
.cid-u30QDMNnwx .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-u30QDMNnwx .social-list {
    text-align: center !important;
  }
}
.cid-u30QDMNnwx .mbr-section-title,
.cid-u30QDMNnwx .social-list {
  color: #00acb1;
}
.cid-tHiCn2mQbp {
  background-color: #efefec;
}
.cid-tHiCn2mQbp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHiCn2mQbp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHiCn2mQbp .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tHiCn2mQbp .row {
  align-items: center;
}
.cid-tHiCn2mQbp .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tHiCn2mQbp .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tHiCn2mQbp .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHiCn2mQbp .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tHiCn2mQbp .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tHiCn2mQbp .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tHiCn2mQbp .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tHiCn2mQbp .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tHiCn2mQbp .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tHiCn2mQbp .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tHiCn2mQbp .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tHiCn2mQbp .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tHiCn2mQbp .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tHiCn2mQbp .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .contact-container {
    width: 100%;
  }
}
.cid-tHiCn2mQbp .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tHiCn2mQbp .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tHiCn2mQbp .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tHiCn2mQbp .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tHiCn2mQbp .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tHiCn2mQbp .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tHiCn2mQbp .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tHiCn2mQbp .copyright {
  color: #efefec;
}
.cid-tHiCn2mQbp .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tHiCn2mQbp .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tHiCn2mQbp .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tOX3vujvkN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tOX3vujvkN .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tOX3vujvkN nav.navbar {
  position: fixed;
}
.cid-tOX3vujvkN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOX3vujvkN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tOX3vujvkN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tOX3vujvkN .dropdown-item:hover,
.cid-tOX3vujvkN .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tOX3vujvkN .dropdown-item:hover span {
  color: white;
}
.cid-tOX3vujvkN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tOX3vujvkN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tOX3vujvkN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOX3vujvkN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOX3vujvkN .nav-link {
  position: relative;
}
.cid-tOX3vujvkN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tOX3vujvkN .container {
    flex-wrap: nowrap;
  }
}
.cid-tOX3vujvkN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOX3vujvkN .dropdown-menu,
.cid-tOX3vujvkN .navbar.opened {
  background: #ffffff !important;
}
.cid-tOX3vujvkN .nav-item:focus,
.cid-tOX3vujvkN .nav-link:focus {
  outline: none;
}
.cid-tOX3vujvkN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tOX3vujvkN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOX3vujvkN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tOX3vujvkN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tOX3vujvkN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOX3vujvkN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOX3vujvkN .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tOX3vujvkN .navbar.opened {
  transition: all 0.3s;
}
.cid-tOX3vujvkN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tOX3vujvkN .navbar .navbar-logo img {
  width: auto;
}
.cid-tOX3vujvkN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tOX3vujvkN .navbar.collapsed {
  justify-content: center;
}
.cid-tOX3vujvkN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOX3vujvkN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOX3vujvkN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tOX3vujvkN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOX3vujvkN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOX3vujvkN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tOX3vujvkN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOX3vujvkN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOX3vujvkN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOX3vujvkN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOX3vujvkN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOX3vujvkN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOX3vujvkN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOX3vujvkN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tOX3vujvkN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tOX3vujvkN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOX3vujvkN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOX3vujvkN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tOX3vujvkN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tOX3vujvkN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tOX3vujvkN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tOX3vujvkN .navbar.navbar-short {
  min-height: 80px;
}
.cid-tOX3vujvkN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tOX3vujvkN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tOX3vujvkN .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tOX3vujvkN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOX3vujvkN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOX3vujvkN .dropdown-item.active,
.cid-tOX3vujvkN .dropdown-item:active {
  background-color: transparent;
}
.cid-tOX3vujvkN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOX3vujvkN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOX3vujvkN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOX3vujvkN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tOX3vujvkN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOX3vujvkN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOX3vujvkN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tOX3vujvkN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tOX3vujvkN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tOX3vujvkN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tOX3vujvkN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOX3vujvkN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOX3vujvkN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOX3vujvkN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOX3vujvkN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOX3vujvkN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOX3vujvkN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOX3vujvkN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOX3vujvkN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tOX3vujvkN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOX3vujvkN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOX3vujvkN .navbar {
    height: 70px;
  }
  .cid-tOX3vujvkN .navbar.opened {
    height: auto;
  }
  .cid-tOX3vujvkN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOX3vpQ6Hk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tOX3vpQ6Hk .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tOX3vpQ6Hk .photo-split .image-wrap img {
  max-width: 100%;
  max-height: 800px;
  z-index: 9;
  position: relative;
}
.cid-tOX3vpQ6Hk .photo-split .element-outer {
  border-radius: 100%;
  padding: 60px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tOX3vpQ6Hk .photo-split .element-outer2 {
  border-radius: 100%;
  padding: 100px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tOX3vpQ6Hk .photo-split .element-inner {
  position: absolute;
  z-index: 10;
  left: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tOX3vpQ6Hk .photo-split .element-inner .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 31px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4db;
  margin-right: 15px;
  z-index: 10;
}
.cid-tOX3vpQ6Hk .wrap-block {
  padding: 3rem 3rem;
}
.cid-tOX3vpQ6Hk .wrap-block .contents {
  margin-bottom: 40px;
  padding-right: 50px;
}
.cid-tOX3vpQ6Hk .wrap-block .contents .mbr-subtitle {
  color: #87e4db;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tOX3vpQ6Hk .wrap-block .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-tOX3vpQ6Hk .wrap-block .contents .mbr-section-title {
  margin-bottom: 10px;
  color: #73c4bd;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.cid-tOX3vpQ6Hk .wrap-block .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
}
.cid-tOX3vpQ6Hk .wrap-block .contents .mbr-section-text.display-7 {
  font-size: 20px;
}
.cid-tOX3vpQ6Hk .wrap-block .contents .mbr-section-text.display-4 {
  font-size: 16px;
}
.cid-tOX3vpQ6Hk .wrap-block .contents h3 {
  color: #73c4bd;
  letter-spacing: -0.5px;
  line-height: 30px;
}
.cid-tOX3vpQ6Hk .wrap-block .contents h4 {
  color: #16324f;
}
.cid-tOX3vpQ6Hk .info-widget {
  padding-top: 0.5rem;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.cid-tOX3vpQ6Hk .info-widget .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 18px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4da;
  margin-right: 15px;
}
.cid-tOX3vpQ6Hk .info-widget .signature {
  height: 75px;
  display: inline-block;
  margin-right: 15px;
  object-fit: contain;
}
.cid-tOX3vpQ6Hk .info-widget .widget-content {
  display: flex;
  vertical-align: baseline;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-tOX3vpQ6Hk .info-widget .widget-content .widget-title {
  margin-bottom: 7px;
  color: #73c4bd;
}
.cid-tOX3vpQ6Hk .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  color: #7e7e7e;
}
@media (max-width: 991px) {
  .cid-tOX3vpQ6Hk .photo-split {
    padding: 3rem 3rem;
  }
  .cid-tOX3vpQ6Hk .photo-split .element-outer,
  .cid-tOX3vpQ6Hk .photo-split .element-outer2 {
    display: none;
  }
  .cid-tOX3vpQ6Hk .photo-split .element-inner {
    left: 0;
  }
}
@media (max-width: 767px) {
  .cid-tOX3vpQ6Hk .mbr-section-title,
  .cid-tOX3vpQ6Hk .mbr-section-subtitle,
  .cid-tOX3vpQ6Hk .mbr-text {
    text-align: left !important;
  }
  .cid-tOX3vpQ6Hk .social-list {
    text-align: left !important;
  }
}
.cid-tOX3vpQ6Hk .boldSubtitle {
  margin-top: 40px !important;
}
@media (max-width: 500px) {
  .cid-tOX3vpQ6Hk .wrap-block {
    padding: 3rem 1rem;
  }
}
.cid-tOX3vpQ6Hk .wrap-block .contents h4,
.cid-tOX3vpQ6Hk .menu-content-right {
  color: #00acb1;
}
.cid-tOX3vqKVRt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tOX3vqKVRt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOX3vqKVRt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOX3vqKVRt .mbr-section-title {
  color: #00acb1;
}
.cid-tOX3vqKVRt .mbr-text {
  color: #00acb1;
}
.cid-tOX3vrBUJd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tOX3vrBUJd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOX3vrBUJd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOX3vrBUJd .google-map {
  height: 35rem;
  position: relative;
}
.cid-tOX3vrBUJd .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tOX3vrBUJd .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-tOX3vrBUJd .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tOX3vrBUJd .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u30KzyrkqS {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-u30KzyrkqS .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #f3f7f9 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-u30KzyrkqS .mbr-iconfont {
  align-items: center;
}
.cid-u30KzyrkqS .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-u30KzyrkqS .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-u30KzyrkqS .icon-transition span:hover {
  background-color: #000000;
  color: #f3f7f9;
}
.cid-u30KzyrkqS .social-media {
  padding: 0;
}
.cid-u30KzyrkqS .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-u30KzyrkqS .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-u30KzyrkqS .mbr-list,
.cid-u30KzyrkqS .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-u30KzyrkqS .social-list {
    text-align: center !important;
  }
}
.cid-u30KzyrkqS .mbr-section-title,
.cid-u30KzyrkqS .social-list {
  color: #00acb1;
}
.cid-tOX3vsBXMj {
  background-color: #efefec;
}
.cid-tOX3vsBXMj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOX3vsBXMj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOX3vsBXMj .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tOX3vsBXMj .row {
  align-items: center;
}
.cid-tOX3vsBXMj .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tOX3vsBXMj .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tOX3vsBXMj .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tOX3vsBXMj .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tOX3vsBXMj .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tOX3vsBXMj .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tOX3vsBXMj .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tOX3vsBXMj .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tOX3vsBXMj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOX3vsBXMj .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tOX3vsBXMj .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tOX3vsBXMj .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tOX3vsBXMj .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tOX3vsBXMj .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tOX3vsBXMj .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tOX3vsBXMj .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOX3vsBXMj .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tOX3vsBXMj .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tOX3vsBXMj .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tOX3vsBXMj .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tOX3vsBXMj .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tOX3vsBXMj .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tOX3vsBXMj .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tOX3vsBXMj .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tOX3vsBXMj .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tOX3vsBXMj .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tOX3vsBXMj .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tOX3vsBXMj .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tOX3vsBXMj .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tOX3vsBXMj .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tOX3vsBXMj .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tOX3vsBXMj .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tOX3vsBXMj .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tOX3vsBXMj .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tOX3vsBXMj .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tOX3vsBXMj .contact-container {
    width: 100%;
  }
}
.cid-tOX3vsBXMj .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tOX3vsBXMj .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tOX3vsBXMj .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tOX3vsBXMj .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tOX3vsBXMj .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tOX3vsBXMj .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tOX3vsBXMj .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tOX3vsBXMj .copyright {
  color: #efefec;
}
.cid-tOX3vsBXMj .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tOX3vsBXMj .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tOX3vsBXMj .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tPBtXqySZ5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tPBtXqySZ5 .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tPBtXqySZ5 nav.navbar {
  position: fixed;
}
.cid-tPBtXqySZ5 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPBtXqySZ5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tPBtXqySZ5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tPBtXqySZ5 .dropdown-item:hover,
.cid-tPBtXqySZ5 .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tPBtXqySZ5 .dropdown-item:hover span {
  color: white;
}
.cid-tPBtXqySZ5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tPBtXqySZ5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tPBtXqySZ5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tPBtXqySZ5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPBtXqySZ5 .nav-link {
  position: relative;
}
.cid-tPBtXqySZ5 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tPBtXqySZ5 .container {
    flex-wrap: nowrap;
  }
}
.cid-tPBtXqySZ5 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPBtXqySZ5 .dropdown-menu,
.cid-tPBtXqySZ5 .navbar.opened {
  background: #ffffff !important;
}
.cid-tPBtXqySZ5 .nav-item:focus,
.cid-tPBtXqySZ5 .nav-link:focus {
  outline: none;
}
.cid-tPBtXqySZ5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tPBtXqySZ5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPBtXqySZ5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tPBtXqySZ5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tPBtXqySZ5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPBtXqySZ5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPBtXqySZ5 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tPBtXqySZ5 .navbar.opened {
  transition: all 0.3s;
}
.cid-tPBtXqySZ5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tPBtXqySZ5 .navbar .navbar-logo img {
  width: auto;
}
.cid-tPBtXqySZ5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tPBtXqySZ5 .navbar.collapsed {
  justify-content: center;
}
.cid-tPBtXqySZ5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPBtXqySZ5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPBtXqySZ5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tPBtXqySZ5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPBtXqySZ5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPBtXqySZ5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tPBtXqySZ5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPBtXqySZ5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPBtXqySZ5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPBtXqySZ5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPBtXqySZ5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPBtXqySZ5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPBtXqySZ5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPBtXqySZ5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tPBtXqySZ5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tPBtXqySZ5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPBtXqySZ5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPBtXqySZ5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tPBtXqySZ5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tPBtXqySZ5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tPBtXqySZ5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tPBtXqySZ5 .navbar.navbar-short {
  min-height: 80px;
}
.cid-tPBtXqySZ5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tPBtXqySZ5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tPBtXqySZ5 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPBtXqySZ5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPBtXqySZ5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPBtXqySZ5 .dropdown-item.active,
.cid-tPBtXqySZ5 .dropdown-item:active {
  background-color: transparent;
}
.cid-tPBtXqySZ5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPBtXqySZ5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPBtXqySZ5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPBtXqySZ5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tPBtXqySZ5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPBtXqySZ5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPBtXqySZ5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tPBtXqySZ5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tPBtXqySZ5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tPBtXqySZ5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tPBtXqySZ5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPBtXqySZ5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPBtXqySZ5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPBtXqySZ5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPBtXqySZ5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPBtXqySZ5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPBtXqySZ5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPBtXqySZ5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPBtXqySZ5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tPBtXqySZ5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPBtXqySZ5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPBtXqySZ5 .navbar {
    height: 70px;
  }
  .cid-tPBtXqySZ5 .navbar.opened {
    height: auto;
  }
  .cid-tPBtXqySZ5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPBtXnTNjk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tPBtXnTNjk .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tPBtXnTNjk .photo-split .image-wrap img {
  max-width: 100%;
  max-height: 800px;
  z-index: 9;
  position: relative;
}
.cid-tPBtXnTNjk .photo-split .element-outer {
  border-radius: 100%;
  padding: 60px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tPBtXnTNjk .photo-split .element-outer2 {
  border-radius: 100%;
  padding: 100px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tPBtXnTNjk .photo-split .element-inner {
  position: absolute;
  z-index: 10;
  left: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tPBtXnTNjk .photo-split .element-inner .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 31px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4db;
  margin-right: 15px;
  z-index: 10;
}
.cid-tPBtXnTNjk .wrap-block {
  padding: 3rem 3rem;
}
.cid-tPBtXnTNjk .wrap-block .contents {
  margin-bottom: 40px;
  padding-right: 50px;
}
.cid-tPBtXnTNjk .wrap-block .contents .mbr-subtitle {
  color: #87e4db;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tPBtXnTNjk .wrap-block .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-tPBtXnTNjk .wrap-block .contents .mbr-section-title {
  margin-bottom: 10px;
  color: #73c4bd;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.cid-tPBtXnTNjk .wrap-block .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
}
.cid-tPBtXnTNjk .wrap-block .contents .mbr-section-text.display-7 {
  font-size: 20px;
}
.cid-tPBtXnTNjk .wrap-block .contents .mbr-section-text.display-4 {
  font-size: 16px;
}
.cid-tPBtXnTNjk .wrap-block .contents h3 {
  color: #73c4bd;
  letter-spacing: -0.5px;
  line-height: 30px;
}
.cid-tPBtXnTNjk .wrap-block .contents h4 {
  color: #16324f;
}
.cid-tPBtXnTNjk .info-widget {
  padding-top: 0.5rem;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.cid-tPBtXnTNjk .info-widget .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 18px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4da;
  margin-right: 15px;
}
.cid-tPBtXnTNjk .info-widget .signature {
  height: 75px;
  display: inline-block;
  margin-right: 15px;
  object-fit: contain;
}
.cid-tPBtXnTNjk .info-widget .widget-content {
  display: flex;
  vertical-align: baseline;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-tPBtXnTNjk .info-widget .widget-content .widget-title {
  margin-bottom: 7px;
  color: #73c4bd;
}
.cid-tPBtXnTNjk .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  color: #7e7e7e;
}
@media (max-width: 991px) {
  .cid-tPBtXnTNjk .photo-split {
    padding: 3rem 3rem;
  }
  .cid-tPBtXnTNjk .photo-split .element-outer,
  .cid-tPBtXnTNjk .photo-split .element-outer2 {
    display: none;
  }
  .cid-tPBtXnTNjk .photo-split .element-inner {
    left: 0;
  }
}
@media (max-width: 767px) {
  .cid-tPBtXnTNjk .mbr-section-title,
  .cid-tPBtXnTNjk .mbr-section-subtitle,
  .cid-tPBtXnTNjk .mbr-text {
    text-align: left !important;
  }
  .cid-tPBtXnTNjk .social-list {
    text-align: left !important;
  }
}
.cid-tPBtXnTNjk .boldSubtitle {
  margin-top: 40px !important;
}
@media (max-width: 500px) {
  .cid-tPBtXnTNjk .wrap-block {
    padding: 3rem 1rem;
  }
}
.cid-tPBtXnTNjk .wrap-block .contents h4,
.cid-tPBtXnTNjk .menu-content-right {
  color: #00acb1;
}
.cid-u6i6kAICAe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: linear-gradient(315deg, #87e4db 10%, #87e4db 100%) !important;
}
.cid-u6i6kAICAe .mbr-fallback-image.disabled {
  display: none;
}
.cid-u6i6kAICAe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u6i6kAICAe .card-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8px 0;
}
@media (max-width: 767px) {
  .cid-u6i6kAICAe .card-box {
    max-width: 510px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 15px 0;
  }
}
.cid-u6i6kAICAe .label-container {
  padding: 5px 16px;
  border-radius: 100px;
  background: #00acb1;
}
.cid-u6i6kAICAe .label-text {
  color: #ffffff;
}
.cid-u6i6kAICAe .card-text {
  color: #878e99;
  margin-left: 15px;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-u6i6kAICAe .card-text {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.cid-u6i6kAICAe .link-text {
  color: #C4CFDE;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .cid-u6i6kAICAe .link-text {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.cid-u6i6kAICAe .link-text a {
  display: flex;
  align-items: center;
}
.cid-u6i6kAICAe .link-text a .mbr-iconfont {
  font-size: inherit;
  color: inherit;
  margin-left: 6px;
}
.cid-u6i6kAICAe .link-text a:hover {
  color: #87e4db !important;
}
.cid-tPCh33YV1K {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tPCh33YV1K .photo-split .element-outer {
  display: none;
}
.cid-tPCh33YV1K .photo-split .element-outer2 {
  display: none;
}
.cid-tPCh33YV1K .photo-split .element-inner {
  display: none;
}
.cid-tPCh33YV1K .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tPCh33YV1K .content-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
.cid-tPCh33YV1K .photo-split .image-wrap {
  text-align: right;
}
.cid-tPCh33YV1K .photo-split .image-wrap img {
  max-width: 100%;
  max-height: 800px;
  z-index: 9;
  position: relative;
}
.cid-tPCh33YV1K .photo-split .element-outer {
  border-radius: 100%;
  padding: 60px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tPCh33YV1K .photo-split .element-outer2 {
  border-radius: 100%;
  padding: 100px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tPCh33YV1K .photo-split .element-inner {
  position: absolute;
  z-index: 10;
  left: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tPCh33YV1K .photo-split .element-inner .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 31px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4db;
  margin-right: 15px;
  z-index: 10;
}
.cid-tPCh33YV1K .wrap-block {
  padding: 3rem 3rem;
}
.cid-tPCh33YV1K .wrap-block .contents {
  margin-bottom: 40px;
  padding-right: 50px;
}
.cid-tPCh33YV1K .wrap-block .contents .mbr-subtitle {
  color: #87e4db;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tPCh33YV1K .wrap-block .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-tPCh33YV1K .wrap-block .contents .mbr-section-title {
  margin-bottom: 10px;
  color: #73c4bd;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.cid-tPCh33YV1K .wrap-block .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
}
.cid-tPCh33YV1K .wrap-block .contents .mbr-section-text.display-7 {
  font-size: 20px;
}
.cid-tPCh33YV1K .wrap-block .contents .mbr-section-text.display-4 {
  font-size: 16px;
}
.cid-tPCh33YV1K .wrap-block .contents h3 {
  color: #73c4bd;
  letter-spacing: -0.5px;
  line-height: 30px;
}
.cid-tPCh33YV1K .wrap-block .contents h4 {
  color: #16324f;
}
.cid-tPCh33YV1K .info-widget {
  padding-top: 0.5rem;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.cid-tPCh33YV1K .info-widget .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 18px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4da;
  margin-right: 15px;
}
.cid-tPCh33YV1K .info-widget .signature {
  height: 75px;
  display: inline-block;
  margin-right: 15px;
  object-fit: contain;
}
.cid-tPCh33YV1K .info-widget .widget-content {
  display: flex;
  vertical-align: baseline;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-tPCh33YV1K .info-widget .widget-content .widget-title {
  margin-bottom: 7px;
  color: #73c4bd;
}
.cid-tPCh33YV1K .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  color: #7e7e7e;
}
@media (max-width: 991px) {
  .cid-tPCh33YV1K .photo-split {
    padding: 3rem 3rem;
  }
  .cid-tPCh33YV1K .photo-split .element-outer,
  .cid-tPCh33YV1K .photo-split .element-outer2 {
    display: none;
  }
  .cid-tPCh33YV1K .photo-split .element-inner {
    left: 0;
  }
}
@media (max-width: 767px) {
  .cid-tPCh33YV1K .mbr-section-title,
  .cid-tPCh33YV1K .mbr-section-subtitle,
  .cid-tPCh33YV1K .mbr-text {
    text-align: left !important;
  }
  .cid-tPCh33YV1K .social-list {
    text-align: left !important;
  }
}
.cid-tPCh33YV1K .boldSubtitle {
  margin-top: 40px !important;
}
@media (max-width: 500px) {
  .cid-tPCh33YV1K .wrap-block {
    padding: 3rem 1rem;
  }
}
.cid-tPBtXorBW9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tPBtXorBW9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPBtXorBW9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPBtXorBW9 .mbr-section-title {
  color: #00acb1;
}
.cid-tPBtXorBW9 .mbr-text {
  color: #00acb1;
}
.cid-tPBtXp16MH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-tPBtXp16MH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPBtXp16MH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPBtXp16MH .google-map {
  height: 35rem;
  position: relative;
}
.cid-tPBtXp16MH .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tPBtXp16MH .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-tPBtXp16MH .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tPBtXp16MH .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u30KvG2AaC {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-u30KvG2AaC .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #f3f7f9 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-u30KvG2AaC .mbr-iconfont {
  align-items: center;
}
.cid-u30KvG2AaC .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-u30KvG2AaC .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-u30KvG2AaC .icon-transition span:hover {
  background-color: #000000;
  color: #f3f7f9;
}
.cid-u30KvG2AaC .social-media {
  padding: 0;
}
.cid-u30KvG2AaC .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-u30KvG2AaC .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-u30KvG2AaC .mbr-list,
.cid-u30KvG2AaC .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-u30KvG2AaC .social-list {
    text-align: center !important;
  }
}
.cid-u30KvG2AaC .mbr-section-title,
.cid-u30KvG2AaC .social-list {
  color: #00acb1;
}
.cid-tPBtXpDLzs {
  background-color: #efefec;
}
.cid-tPBtXpDLzs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPBtXpDLzs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPBtXpDLzs .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tPBtXpDLzs .row {
  align-items: center;
}
.cid-tPBtXpDLzs .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tPBtXpDLzs .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tPBtXpDLzs .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tPBtXpDLzs .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tPBtXpDLzs .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tPBtXpDLzs .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tPBtXpDLzs .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tPBtXpDLzs .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tPBtXpDLzs .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPBtXpDLzs .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tPBtXpDLzs .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tPBtXpDLzs .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tPBtXpDLzs .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tPBtXpDLzs .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tPBtXpDLzs .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tPBtXpDLzs .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tPBtXpDLzs .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tPBtXpDLzs .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tPBtXpDLzs .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tPBtXpDLzs .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tPBtXpDLzs .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tPBtXpDLzs .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tPBtXpDLzs .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tPBtXpDLzs .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tPBtXpDLzs .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tPBtXpDLzs .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tPBtXpDLzs .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tPBtXpDLzs .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tPBtXpDLzs .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tPBtXpDLzs .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tPBtXpDLzs .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tPBtXpDLzs .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tPBtXpDLzs .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tPBtXpDLzs .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tPBtXpDLzs .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tPBtXpDLzs .contact-container {
    width: 100%;
  }
}
.cid-tPBtXpDLzs .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tPBtXpDLzs .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tPBtXpDLzs .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tPBtXpDLzs .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tPBtXpDLzs .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tPBtXpDLzs .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tPBtXpDLzs .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tPBtXpDLzs .copyright {
  color: #efefec;
}
.cid-tPBtXpDLzs .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tPBtXpDLzs .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tPBtXpDLzs .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tKTWVdZZs3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tKTWVdZZs3 .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tKTWVdZZs3 nav.navbar {
  position: fixed;
}
.cid-tKTWVdZZs3 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tKTWVdZZs3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tKTWVdZZs3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tKTWVdZZs3 .dropdown-item:hover,
.cid-tKTWVdZZs3 .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tKTWVdZZs3 .dropdown-item:hover span {
  color: white;
}
.cid-tKTWVdZZs3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tKTWVdZZs3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tKTWVdZZs3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tKTWVdZZs3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tKTWVdZZs3 .nav-link {
  position: relative;
}
.cid-tKTWVdZZs3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tKTWVdZZs3 .container {
    flex-wrap: nowrap;
  }
}
.cid-tKTWVdZZs3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tKTWVdZZs3 .dropdown-menu,
.cid-tKTWVdZZs3 .navbar.opened {
  background: #ffffff !important;
}
.cid-tKTWVdZZs3 .nav-item:focus,
.cid-tKTWVdZZs3 .nav-link:focus {
  outline: none;
}
.cid-tKTWVdZZs3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tKTWVdZZs3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tKTWVdZZs3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tKTWVdZZs3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tKTWVdZZs3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tKTWVdZZs3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tKTWVdZZs3 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tKTWVdZZs3 .navbar.opened {
  transition: all 0.3s;
}
.cid-tKTWVdZZs3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tKTWVdZZs3 .navbar .navbar-logo img {
  width: auto;
}
.cid-tKTWVdZZs3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tKTWVdZZs3 .navbar.collapsed {
  justify-content: center;
}
.cid-tKTWVdZZs3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tKTWVdZZs3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tKTWVdZZs3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tKTWVdZZs3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tKTWVdZZs3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tKTWVdZZs3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tKTWVdZZs3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tKTWVdZZs3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tKTWVdZZs3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tKTWVdZZs3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tKTWVdZZs3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tKTWVdZZs3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tKTWVdZZs3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tKTWVdZZs3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tKTWVdZZs3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tKTWVdZZs3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tKTWVdZZs3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tKTWVdZZs3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tKTWVdZZs3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tKTWVdZZs3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tKTWVdZZs3 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tKTWVdZZs3 .navbar.navbar-short {
  min-height: 80px;
}
.cid-tKTWVdZZs3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tKTWVdZZs3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tKTWVdZZs3 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tKTWVdZZs3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tKTWVdZZs3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKTWVdZZs3 .dropdown-item.active,
.cid-tKTWVdZZs3 .dropdown-item:active {
  background-color: transparent;
}
.cid-tKTWVdZZs3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tKTWVdZZs3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tKTWVdZZs3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tKTWVdZZs3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tKTWVdZZs3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tKTWVdZZs3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tKTWVdZZs3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tKTWVdZZs3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tKTWVdZZs3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tKTWVdZZs3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tKTWVdZZs3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tKTWVdZZs3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tKTWVdZZs3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tKTWVdZZs3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tKTWVdZZs3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tKTWVdZZs3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tKTWVdZZs3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tKTWVdZZs3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tKTWVdZZs3 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tKTWVdZZs3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tKTWVdZZs3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tKTWVdZZs3 .navbar {
    height: 70px;
  }
  .cid-tKTWVdZZs3 .navbar.opened {
    height: auto;
  }
  .cid-tKTWVdZZs3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tS9mIBGeSN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/concrete-cutting-crystalline-silica-dust-1405x1052.jpg");
  display: flex;
  align-items: center;
  min-height: 670px;
}
@media (max-width: 767px) {
  .cid-tS9mIBGeSN {
    background-size: 200% 100%;
    background-position: left center;
  }
}
.cid-tS9mIBGeSN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tS9mIBGeSN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 1024px) {
  .cid-tS9mIBGeSN {
    min-height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-tS9mIBGeSN {
    min-height: 0;
  }
}
.cid-tS9mIBGeSN .container {
  max-width: 100%;
  width: 100%;
  padding-left: 8%;
  padding-right: 46%;
}
@media (max-width: 991px) {
  .cid-tS9mIBGeSN .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tS9mIBGeSN .row {
  margin-left: -20px;
  margin-right: -20px;
}
.cid-tS9mIBGeSN .row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tS9mIBGeSN .content-container {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tS9mIBGeSN .content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tS9mIBGeSN .content-container {
    padding-right: 200px;
  }
}
.cid-tS9mIBGeSN .mbr-section-title {
  color: #ffffff;
  margin-bottom: 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tS9mIBGeSN .mbr-section-title {
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tS9mIBGeSN .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tS9mIBGeSN .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
  width: 100%;
}
.cid-tS9mIBGeSN .mbr-text {
  color: #112B6D;
  margin-bottom: 0.9rem;
  width: 100%;
}
.cid-tS9mIBGeSN .mbr-section-btn {
  margin-top: 10px;
}
.cid-tS9ogTW3OL {
  background-color: #fbfbfb;
}
.cid-tS9ogTW3OL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tS9ogTW3OL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tS9ogTW3OL .row {
  justify-content: flex-start;
}
.cid-tS9ogTW3OL .mbr-section-title {
  color: #000000;
  width: 100%;
  margin-bottom: 4rem;
}
.cid-tS9ogTW3OL .item-wrap {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-tS9ogTW3OL .mbr-section-subtitle {
  color: #00acb1;
  width: 100%;
}
.cid-tS9ogTW3OL .mbr-text {
  color: #000000;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cid-tS9ogTW3OL .mbr-section-title,
.cid-tS9ogTW3OL .mbr-section-btn {
  color: #00acb1;
}
.cid-tS9pP7a4Qk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}
.cid-tS9pP7a4Qk .title-col {
  width: 25%;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-tS9pP7a4Qk .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tS9pP7a4Qk .title-col {
    width: 100%;
    padding: 0 0 12px 0 !important;
  }
}
.cid-tS9pP7a4Qk .text-col {
  width: 75%;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-tS9pP7a4Qk .text-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tS9pP7a4Qk .mbr-section-title {
  color: #00acb1;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-tS9pP7a4Qk .mbr-section-title {
    width: 100%;
  }
}
.cid-tS9pP7a4Qk .mbr-section-subtitle {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-tS9pP7a4Qk .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-tS9pP7a4Qk .mbr-text {
  color: #000000;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-tS9pP7a4Qk .mbr-text {
    width: 100%;
  }
}
.cid-tKTWVg2ezJ {
  background-color: #efefec;
}
.cid-tKTWVg2ezJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tKTWVg2ezJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tKTWVg2ezJ .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tKTWVg2ezJ .row {
  align-items: center;
}
.cid-tKTWVg2ezJ .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tKTWVg2ezJ .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tKTWVg2ezJ .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tKTWVg2ezJ .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tKTWVg2ezJ .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tKTWVg2ezJ .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tKTWVg2ezJ .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tKTWVg2ezJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tKTWVg2ezJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tKTWVg2ezJ .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tKTWVg2ezJ .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tKTWVg2ezJ .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tKTWVg2ezJ .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tKTWVg2ezJ .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tKTWVg2ezJ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tKTWVg2ezJ .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tKTWVg2ezJ .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tKTWVg2ezJ .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tKTWVg2ezJ .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tKTWVg2ezJ .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tKTWVg2ezJ .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tKTWVg2ezJ .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tKTWVg2ezJ .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tKTWVg2ezJ .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tKTWVg2ezJ .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tKTWVg2ezJ .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tKTWVg2ezJ .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tKTWVg2ezJ .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tKTWVg2ezJ .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tKTWVg2ezJ .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tKTWVg2ezJ .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tKTWVg2ezJ .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tKTWVg2ezJ .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tKTWVg2ezJ .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tKTWVg2ezJ .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tKTWVg2ezJ .contact-container {
    width: 100%;
  }
}
.cid-tKTWVg2ezJ .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tKTWVg2ezJ .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tKTWVg2ezJ .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tKTWVg2ezJ .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tKTWVg2ezJ .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tKTWVg2ezJ .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tKTWVg2ezJ .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tKTWVg2ezJ .copyright {
  color: #efefec;
}
.cid-tKTWVg2ezJ .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tKTWVg2ezJ .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tKTWVg2ezJ .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tT5HMDen2T {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tT5HMDen2T .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tT5HMDen2T nav.navbar {
  position: fixed;
}
.cid-tT5HMDen2T .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tT5HMDen2T .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tT5HMDen2T .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tT5HMDen2T .dropdown-item:hover,
.cid-tT5HMDen2T .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tT5HMDen2T .dropdown-item:hover span {
  color: white;
}
.cid-tT5HMDen2T .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tT5HMDen2T .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tT5HMDen2T .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tT5HMDen2T .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tT5HMDen2T .nav-link {
  position: relative;
}
.cid-tT5HMDen2T .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tT5HMDen2T .container {
    flex-wrap: nowrap;
  }
}
.cid-tT5HMDen2T .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tT5HMDen2T .dropdown-menu,
.cid-tT5HMDen2T .navbar.opened {
  background: #ffffff !important;
}
.cid-tT5HMDen2T .nav-item:focus,
.cid-tT5HMDen2T .nav-link:focus {
  outline: none;
}
.cid-tT5HMDen2T .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tT5HMDen2T .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tT5HMDen2T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tT5HMDen2T .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tT5HMDen2T .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tT5HMDen2T .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tT5HMDen2T .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tT5HMDen2T .navbar.opened {
  transition: all 0.3s;
}
.cid-tT5HMDen2T .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tT5HMDen2T .navbar .navbar-logo img {
  width: auto;
}
.cid-tT5HMDen2T .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tT5HMDen2T .navbar.collapsed {
  justify-content: center;
}
.cid-tT5HMDen2T .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tT5HMDen2T .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tT5HMDen2T .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tT5HMDen2T .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tT5HMDen2T .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tT5HMDen2T .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tT5HMDen2T .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tT5HMDen2T .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tT5HMDen2T .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tT5HMDen2T .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tT5HMDen2T .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tT5HMDen2T .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tT5HMDen2T .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tT5HMDen2T .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tT5HMDen2T .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tT5HMDen2T .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tT5HMDen2T .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tT5HMDen2T .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tT5HMDen2T .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tT5HMDen2T .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tT5HMDen2T .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tT5HMDen2T .navbar.navbar-short {
  min-height: 80px;
}
.cid-tT5HMDen2T .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tT5HMDen2T .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tT5HMDen2T .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tT5HMDen2T .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tT5HMDen2T .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tT5HMDen2T .dropdown-item.active,
.cid-tT5HMDen2T .dropdown-item:active {
  background-color: transparent;
}
.cid-tT5HMDen2T .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tT5HMDen2T .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tT5HMDen2T .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tT5HMDen2T .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tT5HMDen2T .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tT5HMDen2T .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tT5HMDen2T ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tT5HMDen2T .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tT5HMDen2T button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tT5HMDen2T button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tT5HMDen2T button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tT5HMDen2T button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tT5HMDen2T button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tT5HMDen2T button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tT5HMDen2T nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tT5HMDen2T nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tT5HMDen2T nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tT5HMDen2T nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tT5HMDen2T .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tT5HMDen2T a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tT5HMDen2T .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tT5HMDen2T .navbar {
    height: 70px;
  }
  .cid-tT5HMDen2T .navbar.opened {
    height: auto;
  }
  .cid-tT5HMDen2T .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tT5HMDL5KX {
  background-image: url("../../../assets/images/banner-photo-1599x1066.jpeg");
}
.cid-tT5HMDL5KX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT5HMDL5KX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT5HMDL5KX .mbr-section-title {
  color: #FFFFFF;
}
.cid-tT5HMDL5KX .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tT5HMDL5KX .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tT5HMDL5KX .mbr-section-btn {
  margin-top: 18px;
}
.cid-tT5HMDL5KX .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-tT5HMDL5KX .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-tVypazVl77 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-tVypazVl77 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVypazVl77 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVypazVl77 .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tVypazVl77 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tVypazVl77 .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tVypazVl77 .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tVypazVl77 .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tVypazVl77 .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tVypazVl77 .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tVypazVl77 .mbr-section-title {
  color: #FFFFFF;
}
.cid-tVypazVl77 .mbr-desc {
  color: #FFFFFF;
}
.cid-tVypazVl77 .mbr-text {
  color: #FFFFFF;
}
.cid-tVyq6cSUuU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tVyq6cSUuU .row {
    flex-direction: column-reverse;
  }
}
.cid-tVyq6cSUuU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVyq6cSUuU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVyq6cSUuU .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tVyq6cSUuU .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tVyq6cSUuU .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tVyq6cSUuU .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tVyq6cSUuU .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tVyq6cSUuU .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tVyq6cSUuU .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tVyq6cSUuU .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tVyq6cSUuU .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tVyq6cSUuU .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tVyq6cSUuU .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tVyq6cSUuU .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-tVyq6cSUuU .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tVyq6cSUuU .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tVyq6cSUuU .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tVyq6cSUuU .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tVyq6cSUuU .mbr-section-title {
  color: #000000;
}
.cid-tVyq6cSUuU .mbr-text {
  color: #000000;
}
.cid-tVyvhgUbTR {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tVyvhgUbTR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVyvhgUbTR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVyvhgUbTR .item-wrapper {
  background-color: #87e4db;
  margin-bottom: 2rem;
  border-radius: 4px;
  background: #87e4db;
  transition: all 0.3s;
  padding: 2rem;
  padding-top: 3rem;
}
.cid-tVyvhgUbTR .mbr-section-title,
.cid-tVyvhgUbTR .mbr-section-subtitle {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tVyvhgUbTR .item-wrapper {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tVyvhgUbTR .item-wrapper {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.cid-tVD8tJkncO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tVD8tJkncO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVD8tJkncO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVD8tJkncO .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tVD8tJkncO .container-fluid {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tVD8tJkncO .container-fluid {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-tVD8tJkncO .container {
    padding: 0 23px;
  }
}
@media (max-width: 768px) {
  .cid-tVD8tJkncO .container {
    padding: 0 12px;
  }
}
.cid-tVD8tJkncO .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tVD8tJkncO .content-wrapper {
    padding: 0 24px;
  }
}
.cid-tVD8tJkncO .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-tVD8tJkncO .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-tVD8tJkncO .mbr-section-title {
  color: #1D1D1F;
}
.cid-tVD8tJkncO .mbr-text {
  color: #1D1D1F;
  text-align: center;
}
.cid-tVD8tJkncO .mbr-section-title,
.cid-tVD8tJkncO .mbr-section-btn {
  text-align: center;
}
#custom-html-3a {
  /* Type valid CSS here */
}
#custom-html-3a div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-3a p {
  font-size: 60px;
  color: #777;
}
.cid-ueTlRdeHTE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ueTlRdeHTE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueTlRdeHTE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ueTlRdeHTE .container {
    padding: 0 30px;
  }
}
.cid-ueTlRdeHTE .content-wrapper {
  display: flex;
}
@media (max-width: 992px) {
  .cid-ueTlRdeHTE .content-wrapper {
    display: block;
  }
}
.cid-ueTlRdeHTE .content-wrapper .card {
  justify-content: center;
}
.cid-ueTlRdeHTE .content-wrapper .content-wrap {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
  background-color: #87e4db;
  border-radius: 0 0 2rem 0 !important;
}
@media (max-width: 992px) {
  .cid-ueTlRdeHTE .content-wrapper .content-wrap {
    width: 100%;
    padding: 40px 20px;
    border-radius: 0 0 2rem 0 !important;
  }
}
.cid-ueTlRdeHTE .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 35px;
}
.cid-ueTlRdeHTE .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 40px;
}
.cid-ueTlRdeHTE .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ueTlRdeHTE .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-ueTlRdeHTE .content-wrapper .image-wrapper img {
  min-height: 630px;
  object-fit: cover;
  border-radius: 2rem 0 0 0 !important;
}
@media (max-width: 992px) {
  .cid-ueTlRdeHTE .content-wrapper .image-wrapper img {
    min-height: auto;
    height: 430px;
    border-radius: 2rem 0 0 0 !important;
  }
}
.cid-ueTlRdeHTE .mbr-section-title {
  color: #144031;
}
.cid-ueTlRdeHTE .mbr-text {
  color: #144031;
}
.cid-ueTnAw3nyh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ueTnAw3nyh .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueTnAw3nyh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ueTnAw3nyh .container {
    padding: 0 30px;
  }
}
.cid-ueTnAw3nyh .content-wrapper {
  display: flex;
}
@media (max-width: 992px) {
  .cid-ueTnAw3nyh .content-wrapper {
    display: block;
  }
}
.cid-ueTnAw3nyh .content-wrapper .card {
  justify-content: center;
}
.cid-ueTnAw3nyh .content-wrapper .content-wrap {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
  background-color: #87e4db;
  border-radius: 0 0 2rem 0 !important;
  border-radius: 2rem 0 0 0 !important;
}
@media (max-width: 992px) {
  .cid-ueTnAw3nyh .content-wrapper .content-wrap {
    width: 100%;
    padding: 40px 20px;
    border-radius: 0 0 2rem 0 !important;
  }
}
.cid-ueTnAw3nyh .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 35px;
}
.cid-ueTnAw3nyh .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 40px;
}
.cid-ueTnAw3nyh .content-wrapper .image-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-ueTnAw3nyh .content-wrapper .image-wrapper {
    width: 100%;
  }
}
.cid-ueTnAw3nyh .content-wrapper .image-wrapper img {
  min-height: 630px;
  object-fit: cover;
  border-radius: 2rem 0 0 0 !important;
  border-radius: 0 0 2rem 0 !important;
}
@media (max-width: 992px) {
  .cid-ueTnAw3nyh .content-wrapper .image-wrapper img {
    min-height: auto;
    height: 430px;
    border-radius: 2rem 0 0 0 !important;
  }
}
.cid-ueTnAw3nyh .mbr-section-title {
  color: #144031;
}
.cid-ueTnAw3nyh .mbr-text {
  color: #144031;
}
.cid-tT5HMEasYz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-tT5HMEasYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT5HMEasYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT5HMEasYz .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tT5HMEasYz .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tT5HMEasYz .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tT5HMEasYz .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tT5HMEasYz .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tT5HMEasYz .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tT5HMEasYz .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tT5HMEasYz .mbr-section-title {
  color: #FFFFFF;
}
.cid-tT5HMEasYz .mbr-desc {
  color: #FFFFFF;
}
.cid-tT5HMEasYz .mbr-text {
  color: #FFFFFF;
}
.cid-tT5HMEHcpF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tT5HMEHcpF .row {
    flex-direction: column-reverse;
  }
}
.cid-tT5HMEHcpF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT5HMEHcpF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT5HMEHcpF .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tT5HMEHcpF .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tT5HMEHcpF .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tT5HMEHcpF .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tT5HMEHcpF .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tT5HMEHcpF .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tT5HMEHcpF .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tT5HMEHcpF .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tT5HMEHcpF .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tT5HMEHcpF .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tT5HMEHcpF .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tT5HMEHcpF .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-tT5HMEHcpF .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tT5HMEHcpF .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tT5HMEHcpF .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tT5HMEHcpF .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tT5HMEHcpF .mbr-section-title {
  color: #000000;
}
.cid-tT5HMEHcpF .mbr-text {
  color: #000000;
}
.cid-tT5HMFabKO {
  background-color: #efefec;
}
.cid-tT5HMFabKO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT5HMFabKO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT5HMFabKO .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tT5HMFabKO .row {
  align-items: center;
}
.cid-tT5HMFabKO .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tT5HMFabKO .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tT5HMFabKO .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tT5HMFabKO .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tT5HMFabKO .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tT5HMFabKO .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tT5HMFabKO .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tT5HMFabKO .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tT5HMFabKO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tT5HMFabKO .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tT5HMFabKO .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tT5HMFabKO .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tT5HMFabKO .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tT5HMFabKO .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tT5HMFabKO .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tT5HMFabKO .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tT5HMFabKO .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tT5HMFabKO .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tT5HMFabKO .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tT5HMFabKO .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tT5HMFabKO .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tT5HMFabKO .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tT5HMFabKO .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tT5HMFabKO .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tT5HMFabKO .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tT5HMFabKO .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tT5HMFabKO .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tT5HMFabKO .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tT5HMFabKO .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tT5HMFabKO .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tT5HMFabKO .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tT5HMFabKO .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tT5HMFabKO .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tT5HMFabKO .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tT5HMFabKO .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tT5HMFabKO .contact-container {
    width: 100%;
  }
}
.cid-tT5HMFabKO .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tT5HMFabKO .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tT5HMFabKO .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tT5HMFabKO .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tT5HMFabKO .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tT5HMFabKO .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tT5HMFabKO .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tT5HMFabKO .copyright {
  color: #efefec;
}
.cid-tT5HMFabKO .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tT5HMFabKO .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tT5HMFabKO .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tTKtkv7NaK {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tTKtkv7NaK .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tTKtkv7NaK nav.navbar {
  position: fixed;
}
.cid-tTKtkv7NaK .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tTKtkv7NaK .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tTKtkv7NaK .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tTKtkv7NaK .dropdown-item:hover,
.cid-tTKtkv7NaK .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tTKtkv7NaK .dropdown-item:hover span {
  color: white;
}
.cid-tTKtkv7NaK .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tTKtkv7NaK .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tTKtkv7NaK .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tTKtkv7NaK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tTKtkv7NaK .nav-link {
  position: relative;
}
.cid-tTKtkv7NaK .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tTKtkv7NaK .container {
    flex-wrap: nowrap;
  }
}
.cid-tTKtkv7NaK .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tTKtkv7NaK .dropdown-menu,
.cid-tTKtkv7NaK .navbar.opened {
  background: #ffffff !important;
}
.cid-tTKtkv7NaK .nav-item:focus,
.cid-tTKtkv7NaK .nav-link:focus {
  outline: none;
}
.cid-tTKtkv7NaK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tTKtkv7NaK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tTKtkv7NaK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tTKtkv7NaK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tTKtkv7NaK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tTKtkv7NaK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tTKtkv7NaK .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tTKtkv7NaK .navbar.opened {
  transition: all 0.3s;
}
.cid-tTKtkv7NaK .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tTKtkv7NaK .navbar .navbar-logo img {
  width: auto;
}
.cid-tTKtkv7NaK .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tTKtkv7NaK .navbar.collapsed {
  justify-content: center;
}
.cid-tTKtkv7NaK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tTKtkv7NaK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tTKtkv7NaK .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tTKtkv7NaK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tTKtkv7NaK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tTKtkv7NaK .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tTKtkv7NaK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tTKtkv7NaK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tTKtkv7NaK .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tTKtkv7NaK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tTKtkv7NaK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tTKtkv7NaK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tTKtkv7NaK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tTKtkv7NaK .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tTKtkv7NaK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tTKtkv7NaK .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tTKtkv7NaK .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tTKtkv7NaK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tTKtkv7NaK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tTKtkv7NaK .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tTKtkv7NaK .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tTKtkv7NaK .navbar.navbar-short {
  min-height: 80px;
}
.cid-tTKtkv7NaK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tTKtkv7NaK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tTKtkv7NaK .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tTKtkv7NaK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tTKtkv7NaK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTKtkv7NaK .dropdown-item.active,
.cid-tTKtkv7NaK .dropdown-item:active {
  background-color: transparent;
}
.cid-tTKtkv7NaK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tTKtkv7NaK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tTKtkv7NaK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tTKtkv7NaK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tTKtkv7NaK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tTKtkv7NaK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tTKtkv7NaK ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tTKtkv7NaK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tTKtkv7NaK button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tTKtkv7NaK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tTKtkv7NaK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tTKtkv7NaK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTKtkv7NaK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tTKtkv7NaK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tTKtkv7NaK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTKtkv7NaK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tTKtkv7NaK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tTKtkv7NaK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tTKtkv7NaK .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tTKtkv7NaK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tTKtkv7NaK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tTKtkv7NaK .navbar {
    height: 70px;
  }
  .cid-tTKtkv7NaK .navbar.opened {
    height: auto;
  }
  .cid-tTKtkv7NaK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tTKtkvYw3y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/young-truck-diver-feeling-tired-and-yawning-during-2023-09-11-23-04-48-utc-2000x1331.jpg");
  display: flex;
  align-items: center;
  min-height: 670px;
}
@media (max-width: 767px) {
  .cid-tTKtkvYw3y {
    background-size: 200% 100%;
    background-position: left center;
  }
}
.cid-tTKtkvYw3y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTKtkvYw3y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 1024px) {
  .cid-tTKtkvYw3y {
    min-height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-tTKtkvYw3y {
    min-height: 0;
  }
}
.cid-tTKtkvYw3y .container {
  max-width: 100%;
  width: 100%;
  padding-left: 8%;
  padding-right: 46%;
}
@media (max-width: 991px) {
  .cid-tTKtkvYw3y .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-tTKtkvYw3y .row {
  margin-left: -20px;
  margin-right: -20px;
}
.cid-tTKtkvYw3y .row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-tTKtkvYw3y .content-container {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tTKtkvYw3y .content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-tTKtkvYw3y .content-container {
    padding-right: 200px;
  }
}
.cid-tTKtkvYw3y .mbr-section-title {
  color: #ffffff;
  margin-bottom: 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .cid-tTKtkvYw3y .mbr-section-title {
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .cid-tTKtkvYw3y .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tTKtkvYw3y .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
  width: 100%;
}
.cid-tTKtkvYw3y .mbr-text {
  color: #112B6D;
  margin-bottom: 0.9rem;
  width: 100%;
}
.cid-tTKtkvYw3y .mbr-section-btn {
  margin-top: 10px;
}
.cid-tTKtkwyYTW {
  background-color: #fbfbfb;
}
.cid-tTKtkwyYTW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTKtkwyYTW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTKtkwyYTW .row {
  justify-content: flex-start;
}
.cid-tTKtkwyYTW .mbr-section-title {
  color: #000000;
  width: 100%;
  margin-bottom: 4rem;
}
.cid-tTKtkwyYTW .item-wrap {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-tTKtkwyYTW .mbr-section-subtitle {
  color: #00acb1;
  width: 100%;
}
.cid-tTKtkwyYTW .mbr-text {
  color: #000000;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cid-tTKtkwyYTW .mbr-section-title,
.cid-tTKtkwyYTW .mbr-section-btn {
  color: #00acb1;
}
.cid-tTKA9B1wM6 {
  background-color: #fbfbfb;
}
.cid-tTKA9B1wM6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTKA9B1wM6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTKA9B1wM6 .row {
  justify-content: flex-start;
}
.cid-tTKA9B1wM6 .mbr-section-title {
  color: #000000;
  width: 100%;
  margin-bottom: 4rem;
}
.cid-tTKA9B1wM6 .item-wrap {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-tTKA9B1wM6 .mbr-section-subtitle {
  color: #00acb1;
  width: 100%;
}
.cid-tTKA9B1wM6 .mbr-text {
  color: #000000;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cid-tTKA9B1wM6 .mbr-section-title,
.cid-tTKA9B1wM6 .mbr-section-btn {
  color: #00acb1;
}
.cid-tVajt9uP04 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #00acb1;
}
.cid-tVajt9uP04 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVajt9uP04 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVajt9uP04 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tVajt9uP04 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tVajt9uP04 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tVajt9uP04 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tVajt9uP04 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-tVajt9uP04 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tVajt9uP04 .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tVajt9uP04 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tVajt9uP04 .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tVajt9uP04 .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-tVajt9uP04 .mbr-section-title {
  color: #FFFFFF;
}
.cid-tVajt9uP04 .mbr-section-title,
.cid-tVajt9uP04 .mbr-section-btn {
  text-align: center;
}
#custom-html-33 {
  /* Type valid CSS here */
}
#custom-html-33 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-33 p {
  font-size: 60px;
  color: #777;
}
.cid-tTKtkxrk7M {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}
.cid-tTKtkxrk7M .title-col {
  width: 25%;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-tTKtkxrk7M .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tTKtkxrk7M .title-col {
    width: 100%;
    padding: 0 0 12px 0 !important;
  }
}
.cid-tTKtkxrk7M .text-col {
  width: 75%;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-tTKtkxrk7M .text-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-tTKtkxrk7M .mbr-section-title {
  color: #00acb1;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-tTKtkxrk7M .mbr-section-title {
    width: 100%;
  }
}
.cid-tTKtkxrk7M .mbr-section-subtitle {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-tTKtkxrk7M .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-tTKtkxrk7M .mbr-text {
  color: #000000;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-tTKtkxrk7M .mbr-text {
    width: 100%;
  }
}
.cid-tTKtky49TB {
  background-color: #efefec;
}
.cid-tTKtky49TB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTKtky49TB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tTKtky49TB .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tTKtky49TB .row {
  align-items: center;
}
.cid-tTKtky49TB .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tTKtky49TB .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tTKtky49TB .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tTKtky49TB .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tTKtky49TB .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tTKtky49TB .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tTKtky49TB .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tTKtky49TB .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tTKtky49TB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tTKtky49TB .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tTKtky49TB .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tTKtky49TB .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tTKtky49TB .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tTKtky49TB .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tTKtky49TB .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tTKtky49TB .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tTKtky49TB .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tTKtky49TB .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tTKtky49TB .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tTKtky49TB .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tTKtky49TB .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tTKtky49TB .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tTKtky49TB .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tTKtky49TB .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tTKtky49TB .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tTKtky49TB .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tTKtky49TB .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tTKtky49TB .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tTKtky49TB .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tTKtky49TB .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tTKtky49TB .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tTKtky49TB .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tTKtky49TB .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tTKtky49TB .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tTKtky49TB .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tTKtky49TB .contact-container {
    width: 100%;
  }
}
.cid-tTKtky49TB .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tTKtky49TB .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tTKtky49TB .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tTKtky49TB .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tTKtky49TB .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tTKtky49TB .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tTKtky49TB .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tTKtky49TB .copyright {
  color: #efefec;
}
.cid-tTKtky49TB .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tTKtky49TB .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tTKtky49TB .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tUeENoBplt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tUeENoBplt .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tUeENoBplt nav.navbar {
  position: fixed;
}
.cid-tUeENoBplt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUeENoBplt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUeENoBplt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tUeENoBplt .dropdown-item:hover,
.cid-tUeENoBplt .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tUeENoBplt .dropdown-item:hover span {
  color: white;
}
.cid-tUeENoBplt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tUeENoBplt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tUeENoBplt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUeENoBplt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUeENoBplt .nav-link {
  position: relative;
}
.cid-tUeENoBplt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tUeENoBplt .container {
    flex-wrap: nowrap;
  }
}
.cid-tUeENoBplt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tUeENoBplt .dropdown-menu,
.cid-tUeENoBplt .navbar.opened {
  background: #ffffff !important;
}
.cid-tUeENoBplt .nav-item:focus,
.cid-tUeENoBplt .nav-link:focus {
  outline: none;
}
.cid-tUeENoBplt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUeENoBplt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUeENoBplt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUeENoBplt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUeENoBplt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUeENoBplt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUeENoBplt .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tUeENoBplt .navbar.opened {
  transition: all 0.3s;
}
.cid-tUeENoBplt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUeENoBplt .navbar .navbar-logo img {
  width: auto;
}
.cid-tUeENoBplt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUeENoBplt .navbar.collapsed {
  justify-content: center;
}
.cid-tUeENoBplt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUeENoBplt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUeENoBplt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tUeENoBplt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUeENoBplt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUeENoBplt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tUeENoBplt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUeENoBplt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUeENoBplt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUeENoBplt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUeENoBplt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUeENoBplt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUeENoBplt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUeENoBplt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tUeENoBplt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUeENoBplt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUeENoBplt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUeENoBplt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUeENoBplt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUeENoBplt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUeENoBplt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUeENoBplt .navbar.navbar-short {
  min-height: 80px;
}
.cid-tUeENoBplt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tUeENoBplt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tUeENoBplt .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUeENoBplt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUeENoBplt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUeENoBplt .dropdown-item.active,
.cid-tUeENoBplt .dropdown-item:active {
  background-color: transparent;
}
.cid-tUeENoBplt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUeENoBplt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUeENoBplt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUeENoBplt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tUeENoBplt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUeENoBplt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUeENoBplt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUeENoBplt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tUeENoBplt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tUeENoBplt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tUeENoBplt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tUeENoBplt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUeENoBplt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tUeENoBplt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tUeENoBplt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUeENoBplt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tUeENoBplt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tUeENoBplt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tUeENoBplt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUeENoBplt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUeENoBplt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tUeENoBplt .navbar {
    height: 70px;
  }
  .cid-tUeENoBplt .navbar.opened {
    height: auto;
  }
  .cid-tUeENoBplt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUeENpgirU {
  background-image: url("../../../assets/images/mbr-1920x1228.jpg");
}
.cid-tUeENpgirU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUeENpgirU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUeENpgirU .mbr-section-title {
  color: #FFFFFF;
}
.cid-tUeENpgirU .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tUeENpgirU .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tUeENpgirU .mbr-section-btn {
  margin-top: 18px;
}
.cid-tUeENpgirU .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-tUeENpgirU .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-uF6sTtwUxp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff2fb;
}
.cid-uF6sTtwUxp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uF6sTtwUxp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uF6sTtwUxp .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uF6sTtwUxp .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uF6sTtwUxp .container {
    padding: 0 24px;
  }
}
.cid-uF6sTtwUxp .row {
  justify-content: center;
}
.cid-uF6sTtwUxp .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uF6sTtwUxp .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uF6sTtwUxp .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uF6sTtwUxp .box .mbr-media img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uF6sTtwUxp .box .mbr-media img {
    height: 350px;
  }
}
.cid-uF6sTtwUxp .box .mbr-media .mbr-iconfont {
  color: #00acb1;
}
.cid-uF6sTtwUxp .mbr-media {
  position: relative;
}
.cid-uF6sTtwUxp .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-uF6sTtwUxp a:hover {
  background-image: none !important;
}
.cid-uF6sTtwUxp .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-uF6sTtwUxp .icon-wrap:hover {
  cursor: pointer;
}
.cid-uF6sTtwUxp .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-uF6sTtwUxp .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uF6sTtwUxp .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uF6sTtwUxp .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uF6sTtwUxp .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uF6sTtwUxp .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uF6sTtwUxp .mbr-section-title {
  color: #00acb1;
  text-align: left;
}
.cid-vpoUBofm8E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  background-image: radial-gradient(ellipse farthest-corner at 50% 60%, #e1e7f2 0%, #ffffff 100%);
}
@media (max-width: 992px) {
  .cid-vpoUBofm8E {
    background-image: radial-gradient(ellipse farthest-corner at 50% 60%, #e1e7f2 0%, #ffffff 110%);
  }
}
.cid-vpoUBofm8E .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpoUBofm8E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpoUBofm8E .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vpoUBofm8E .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vpoUBofm8E .content-wrapper .mbr-label {
  margin-bottom: 32px;
}
.cid-vpoUBofm8E .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-vpoUBofm8E .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vpoUBofm8E .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vpoUBofm8E .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vpoUBofm8E .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vpoUBofm8E .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-vpoUBofm8E .image-wrapper {
  padding-left: 68px;
}
@media (max-width: 992px) {
  .cid-vpoUBofm8E .image-wrapper {
    padding-left: 0;
  }
}
.cid-vpoUBofm8E .image-wrapper img {
  height: 640px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-vpoUBofm8E .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 992px) {
  .cid-vpoUBofm8E .image-wrapper img {
    height: 350px;
  }
}
.cid-vpoUBofm8E .mbr-label {
  color: #a6adbf;
}
.cid-vpoUBofm8E .mbr-section-title {
  color: #111111;
}
.cid-vpoUBofm8E .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-vpoUBofm8E .mbr-text,
.cid-vpoUBofm8E .text-wrapper {
  color: #666666;
}
.cid-vpoVq3v7zs {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  background-image: radial-gradient(ellipse farthest-corner at 50% 60%, #e1e7f2 0%, #ffffff 100%);
}
@media (max-width: 992px) {
  .cid-vpoVq3v7zs {
    background-image: radial-gradient(ellipse farthest-corner at 50% 60%, #e1e7f2 0%, #ffffff 110%);
  }
}
.cid-vpoVq3v7zs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpoVq3v7zs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpoVq3v7zs .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vpoVq3v7zs .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vpoVq3v7zs .content-wrapper .mbr-label {
  margin-bottom: 32px;
}
.cid-vpoVq3v7zs .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-vpoVq3v7zs .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vpoVq3v7zs .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vpoVq3v7zs .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vpoVq3v7zs .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vpoVq3v7zs .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-vpoVq3v7zs .image-wrapper {
  padding-left: 68px;
  padding-left: 0;
  padding-right: 68px;
}
@media (max-width: 992px) {
  .cid-vpoVq3v7zs .image-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-vpoVq3v7zs .image-wrapper {
    padding-right: 0;
  }
}
.cid-vpoVq3v7zs .image-wrapper img {
  height: 640px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-vpoVq3v7zs .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 992px) {
  .cid-vpoVq3v7zs .image-wrapper img {
    height: 350px;
  }
}
.cid-vpoVq3v7zs .mbr-label {
  color: #a6adbf;
}
.cid-vpoVq3v7zs .mbr-section-title {
  color: #111111;
}
.cid-vpoVq3v7zs .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-vpoVq3v7zs .mbr-text,
.cid-vpoVq3v7zs .text-wrapper {
  color: #666666;
}
.cid-vpoVSbjrp6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  background-image: radial-gradient(ellipse farthest-corner at 50% 60%, #e1e7f2 0%, #ffffff 100%);
}
@media (max-width: 992px) {
  .cid-vpoVSbjrp6 {
    background-image: radial-gradient(ellipse farthest-corner at 50% 60%, #e1e7f2 0%, #ffffff 110%);
  }
}
.cid-vpoVSbjrp6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpoVSbjrp6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpoVSbjrp6 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vpoVSbjrp6 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vpoVSbjrp6 .content-wrapper .mbr-label {
  margin-bottom: 32px;
}
.cid-vpoVSbjrp6 .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-vpoVSbjrp6 .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vpoVSbjrp6 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vpoVSbjrp6 .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vpoVSbjrp6 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vpoVSbjrp6 .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-vpoVSbjrp6 .image-wrapper {
  padding-left: 68px;
}
@media (max-width: 992px) {
  .cid-vpoVSbjrp6 .image-wrapper {
    padding-left: 0;
  }
}
.cid-vpoVSbjrp6 .image-wrapper img {
  height: 640px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-vpoVSbjrp6 .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 992px) {
  .cid-vpoVSbjrp6 .image-wrapper img {
    height: 350px;
  }
}
.cid-vpoVSbjrp6 .mbr-label {
  color: #a6adbf;
}
.cid-vpoVSbjrp6 .mbr-section-title {
  color: #111111;
}
.cid-vpoVSbjrp6 .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-vpoVSbjrp6 .mbr-text,
.cid-vpoVSbjrp6 .text-wrapper {
  color: #666666;
}
.cid-vpoWyk3XhN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  background-image: radial-gradient(ellipse farthest-corner at 50% 60%, #e1e7f2 0%, #ffffff 100%);
}
@media (max-width: 992px) {
  .cid-vpoWyk3XhN {
    background-image: radial-gradient(ellipse farthest-corner at 50% 60%, #e1e7f2 0%, #ffffff 110%);
  }
}
.cid-vpoWyk3XhN .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpoWyk3XhN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpoWyk3XhN .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vpoWyk3XhN .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vpoWyk3XhN .content-wrapper .mbr-label {
  margin-bottom: 32px;
}
.cid-vpoWyk3XhN .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-vpoWyk3XhN .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vpoWyk3XhN .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vpoWyk3XhN .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vpoWyk3XhN .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vpoWyk3XhN .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-vpoWyk3XhN .image-wrapper {
  padding-left: 68px;
  padding-left: 0;
  padding-right: 68px;
}
@media (max-width: 992px) {
  .cid-vpoWyk3XhN .image-wrapper {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-vpoWyk3XhN .image-wrapper {
    padding-right: 0;
  }
}
.cid-vpoWyk3XhN .image-wrapper img {
  height: 640px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-vpoWyk3XhN .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 992px) {
  .cid-vpoWyk3XhN .image-wrapper img {
    height: 350px;
  }
}
.cid-vpoWyk3XhN .mbr-label {
  color: #a6adbf;
}
.cid-vpoWyk3XhN .mbr-section-title {
  color: #111111;
}
.cid-vpoWyk3XhN .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-vpoWyk3XhN .mbr-text,
.cid-vpoWyk3XhN .text-wrapper {
  color: #666666;
}
.cid-vpoX0zQCUO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  background-image: radial-gradient(ellipse farthest-corner at 50% 60%, #e1e7f2 0%, #ffffff 100%);
}
@media (max-width: 992px) {
  .cid-vpoX0zQCUO {
    background-image: radial-gradient(ellipse farthest-corner at 50% 60%, #e1e7f2 0%, #ffffff 110%);
  }
}
.cid-vpoX0zQCUO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpoX0zQCUO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpoX0zQCUO .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vpoX0zQCUO .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vpoX0zQCUO .content-wrapper .mbr-label {
  margin-bottom: 32px;
}
.cid-vpoX0zQCUO .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-vpoX0zQCUO .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vpoX0zQCUO .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vpoX0zQCUO .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vpoX0zQCUO .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vpoX0zQCUO .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-vpoX0zQCUO .image-wrapper {
  padding-left: 68px;
}
@media (max-width: 992px) {
  .cid-vpoX0zQCUO .image-wrapper {
    padding-left: 0;
  }
}
.cid-vpoX0zQCUO .image-wrapper img {
  height: 640px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-vpoX0zQCUO .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 992px) {
  .cid-vpoX0zQCUO .image-wrapper img {
    height: 350px;
  }
}
.cid-vpoX0zQCUO .mbr-label {
  color: #a6adbf;
}
.cid-vpoX0zQCUO .mbr-section-title {
  color: #111111;
}
.cid-vpoX0zQCUO .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-vpoX0zQCUO .mbr-text,
.cid-vpoX0zQCUO .text-wrapper {
  color: #666666;
}
.cid-vpp0XAVmxm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vpp0XAVmxm .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpp0XAVmxm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpp0XAVmxm .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #deeff8;
}
.cid-vpp0XAVmxm .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
}
@media (max-width: 1440px) {
  .cid-vpp0XAVmxm .content-wrapper .title-wrapper .mbr-section-title {
    width: 75%;
  }
}
@media (max-width: 992px) {
  .cid-vpp0XAVmxm .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vpp0XAVmxm .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-vpp0XAVmxm .content-wrapper .text-wrapper .mbr-text {
    width: 65%;
  }
}
@media (max-width: 992px) {
  .cid-vpp0XAVmxm .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vpp0XAVmxm .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vpp0XAVmxm .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vpp0XAVmxm .mbr-label,
.cid-vpp0XAVmxm .label-wrapper {
  color: #116e99;
  text-align: center;
}
.cid-vpp0XAVmxm .mbr-section-title {
  color: #000000;
}
.cid-vpp0XAVmxm .mbr-text,
.cid-vpp0XAVmxm .text-wrapper {
  color: #16324f;
  text-align: center;
}
.cid-vpp0XAVmxm .mbr-section-title,
.cid-vpp0XAVmxm .mbr-section-btn,
.cid-vpp0XAVmxm .title-wrapper {
  text-align: center;
  color: #00acb1;
}
.cid-vpoXyDStAy {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-vpoXyDStAy .mbr-section-title {
  margin-bottom: 50px;
}
.cid-vpoXyDStAy .container-table {
  margin: 0 auto;
}
.cid-vpoXyDStAy .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-vpoXyDStAy tbody tr:nth-child(odd) {
  background-color: #f5f4f6;
}
.cid-vpoXyDStAy .dataTables_wrapper {
  display: block;
}
.cid-vpoXyDStAy .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-vpoXyDStAy .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-vpoXyDStAy .head-item {
  color: #16324f;
  min-width: 110px;
  letter-spacing: 2px;
}
.cid-vpoXyDStAy .body-item {
  color: #212529;
}
.cid-vpoXyDStAy .table td,
.cid-vpoXyDStAy .table th {
  border: none;
}
.cid-vpoXyDStAy table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-vpoXyDStAy table th {
  padding: 24px 15px 20px 15px;
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-vpoXyDStAy table td {
  padding: 24px 15px 20px 15px;
}
.cid-vpoXyDStAy .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-vpoXyDStAy .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-vpoXyDStAy .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-vpoXyDStAy .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-vpoXyDStAy .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-vpoXyDStAy .dataTables_filter {
    text-align: center;
  }
  .cid-vpoXyDStAy .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-vpoXyDStAy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpoXyDStAy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpp2PsvuXU {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-vpp2PsvuXU .mbr-section-subtitle {
  color: #00acb1;
}
.cid-vpp2PsvuXU .container-table {
  margin: 0 auto;
}
.cid-vpp2PsvuXU .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-vpp2PsvuXU .dataTables_wrapper {
  display: block;
}
.cid-vpp2PsvuXU .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-vpp2PsvuXU table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-vpp2PsvuXU table th {
  border-top: 1px solid #cccccc;
  transition: all .2s;
  border-bottom: none;
}
.cid-vpp2PsvuXU table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-vpp2PsvuXU table td {
  border-top: 1px solid #cccccc;
}
.cid-vpp2PsvuXU table td:hover {
  color: #87e4db;
}
.cid-vpp2PsvuXU table tr:last-child td {
  border-bottom: 1px solid #cccccc;
}
.cid-vpp2PsvuXU .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-vpp2PsvuXU .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-vpp2PsvuXU .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-vpp2PsvuXU .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-vpp2PsvuXU .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-vpp2PsvuXU .dataTables_filter {
    text-align: center;
  }
  .cid-vpp2PsvuXU .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-vpp2PsvuXU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpp2PsvuXU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpp2PsvuXU .body-item {
  color: #16324f;
}
.cid-vpp2PsvuXU .mbr-section-title {
  color: #00acb1;
}
.cid-tUeENqxiJu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tUeENqxiJu .row {
    flex-direction: column-reverse;
  }
}
.cid-tUeENqxiJu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUeENqxiJu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUeENqxiJu .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tUeENqxiJu .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tUeENqxiJu .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tUeENqxiJu .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tUeENqxiJu .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tUeENqxiJu .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tUeENqxiJu .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tUeENqxiJu .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tUeENqxiJu .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tUeENqxiJu .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tUeENqxiJu .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tUeENqxiJu .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-tUeENqxiJu .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tUeENqxiJu .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tUeENqxiJu .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tUeENqxiJu .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tUeENqxiJu .mbr-section-title {
  color: #000000;
}
.cid-tUeENqxiJu .mbr-text {
  color: #000000;
}
.cid-tUeENr3ecP {
  background-color: #efefec;
}
.cid-tUeENr3ecP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUeENr3ecP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUeENr3ecP .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tUeENr3ecP .row {
  align-items: center;
}
.cid-tUeENr3ecP .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tUeENr3ecP .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tUeENr3ecP .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tUeENr3ecP .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tUeENr3ecP .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tUeENr3ecP .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tUeENr3ecP .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tUeENr3ecP .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tUeENr3ecP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUeENr3ecP .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tUeENr3ecP .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tUeENr3ecP .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tUeENr3ecP .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tUeENr3ecP .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tUeENr3ecP .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tUeENr3ecP .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUeENr3ecP .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tUeENr3ecP .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tUeENr3ecP .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tUeENr3ecP .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tUeENr3ecP .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tUeENr3ecP .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tUeENr3ecP .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tUeENr3ecP .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tUeENr3ecP .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tUeENr3ecP .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tUeENr3ecP .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tUeENr3ecP .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tUeENr3ecP .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tUeENr3ecP .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tUeENr3ecP .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tUeENr3ecP .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tUeENr3ecP .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tUeENr3ecP .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tUeENr3ecP .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tUeENr3ecP .contact-container {
    width: 100%;
  }
}
.cid-tUeENr3ecP .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tUeENr3ecP .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tUeENr3ecP .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tUeENr3ecP .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tUeENr3ecP .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tUeENr3ecP .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tUeENr3ecP .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tUeENr3ecP .copyright {
  color: #efefec;
}
.cid-tUeENr3ecP .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tUeENr3ecP .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tUeENr3ecP .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tVKzvEwI39 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tVKzvEwI39 .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tVKzvEwI39 nav.navbar {
  position: fixed;
}
.cid-tVKzvEwI39 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVKzvEwI39 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tVKzvEwI39 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tVKzvEwI39 .dropdown-item:hover,
.cid-tVKzvEwI39 .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tVKzvEwI39 .dropdown-item:hover span {
  color: white;
}
.cid-tVKzvEwI39 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tVKzvEwI39 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tVKzvEwI39 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tVKzvEwI39 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tVKzvEwI39 .nav-link {
  position: relative;
}
.cid-tVKzvEwI39 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tVKzvEwI39 .container {
    flex-wrap: nowrap;
  }
}
.cid-tVKzvEwI39 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tVKzvEwI39 .dropdown-menu,
.cid-tVKzvEwI39 .navbar.opened {
  background: #ffffff !important;
}
.cid-tVKzvEwI39 .nav-item:focus,
.cid-tVKzvEwI39 .nav-link:focus {
  outline: none;
}
.cid-tVKzvEwI39 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tVKzvEwI39 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tVKzvEwI39 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tVKzvEwI39 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tVKzvEwI39 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tVKzvEwI39 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tVKzvEwI39 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tVKzvEwI39 .navbar.opened {
  transition: all 0.3s;
}
.cid-tVKzvEwI39 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tVKzvEwI39 .navbar .navbar-logo img {
  width: auto;
}
.cid-tVKzvEwI39 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tVKzvEwI39 .navbar.collapsed {
  justify-content: center;
}
.cid-tVKzvEwI39 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tVKzvEwI39 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tVKzvEwI39 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tVKzvEwI39 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tVKzvEwI39 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tVKzvEwI39 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tVKzvEwI39 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tVKzvEwI39 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tVKzvEwI39 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tVKzvEwI39 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tVKzvEwI39 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tVKzvEwI39 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tVKzvEwI39 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tVKzvEwI39 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tVKzvEwI39 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tVKzvEwI39 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tVKzvEwI39 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tVKzvEwI39 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tVKzvEwI39 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tVKzvEwI39 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tVKzvEwI39 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tVKzvEwI39 .navbar.navbar-short {
  min-height: 80px;
}
.cid-tVKzvEwI39 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tVKzvEwI39 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tVKzvEwI39 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tVKzvEwI39 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tVKzvEwI39 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVKzvEwI39 .dropdown-item.active,
.cid-tVKzvEwI39 .dropdown-item:active {
  background-color: transparent;
}
.cid-tVKzvEwI39 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tVKzvEwI39 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tVKzvEwI39 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tVKzvEwI39 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tVKzvEwI39 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tVKzvEwI39 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tVKzvEwI39 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tVKzvEwI39 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tVKzvEwI39 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tVKzvEwI39 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tVKzvEwI39 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tVKzvEwI39 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVKzvEwI39 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tVKzvEwI39 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tVKzvEwI39 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVKzvEwI39 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tVKzvEwI39 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tVKzvEwI39 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tVKzvEwI39 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tVKzvEwI39 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tVKzvEwI39 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tVKzvEwI39 .navbar {
    height: 70px;
  }
  .cid-tVKzvEwI39 .navbar.opened {
    height: auto;
  }
  .cid-tVKzvEwI39 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tVKzvFCyOh {
  background-image: url("../../../assets/images/diverse-business-people-group-2021-08-26-15-56-53-utc-2000x1335.jpg");
}
.cid-tVKzvFCyOh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVKzvFCyOh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVKzvFCyOh .mbr-section-title {
  color: #FFFFFF;
}
.cid-tVKzvFCyOh .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tVKzvFCyOh .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tVKzvFCyOh .mbr-section-btn {
  margin-top: 18px;
}
.cid-tVKzvFCyOh .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-tVKzvFCyOh .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-tVKzvG7hxf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-tVKzvG7hxf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVKzvG7hxf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVKzvG7hxf .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tVKzvG7hxf .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tVKzvG7hxf .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tVKzvG7hxf .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tVKzvG7hxf .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tVKzvG7hxf .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tVKzvG7hxf .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tVKzvG7hxf .mbr-section-title {
  color: #FFFFFF;
}
.cid-tVKzvG7hxf .mbr-desc {
  color: #FFFFFF;
}
.cid-tVKzvG7hxf .mbr-text {
  color: #FFFFFF;
}
.cid-tVKzvGDEah {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tVKzvGDEah .row {
    flex-direction: column-reverse;
  }
}
.cid-tVKzvGDEah .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVKzvGDEah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVKzvGDEah .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tVKzvGDEah .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tVKzvGDEah .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tVKzvGDEah .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tVKzvGDEah .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tVKzvGDEah .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tVKzvGDEah .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tVKzvGDEah .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tVKzvGDEah .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tVKzvGDEah .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tVKzvGDEah .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tVKzvGDEah .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-tVKzvGDEah .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tVKzvGDEah .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tVKzvGDEah .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tVKzvGDEah .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tVKzvGDEah .mbr-section-title {
  color: #000000;
}
.cid-tVKzvGDEah .mbr-text {
  color: #000000;
}
.cid-tVKzvH6I81 {
  background-color: #efefec;
}
.cid-tVKzvH6I81 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVKzvH6I81 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVKzvH6I81 .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tVKzvH6I81 .row {
  align-items: center;
}
.cid-tVKzvH6I81 .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tVKzvH6I81 .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tVKzvH6I81 .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tVKzvH6I81 .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tVKzvH6I81 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tVKzvH6I81 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tVKzvH6I81 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tVKzvH6I81 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tVKzvH6I81 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tVKzvH6I81 .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tVKzvH6I81 .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tVKzvH6I81 .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tVKzvH6I81 .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tVKzvH6I81 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tVKzvH6I81 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tVKzvH6I81 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tVKzvH6I81 .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tVKzvH6I81 .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tVKzvH6I81 .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tVKzvH6I81 .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tVKzvH6I81 .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tVKzvH6I81 .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tVKzvH6I81 .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tVKzvH6I81 .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tVKzvH6I81 .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tVKzvH6I81 .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tVKzvH6I81 .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tVKzvH6I81 .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tVKzvH6I81 .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tVKzvH6I81 .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tVKzvH6I81 .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tVKzvH6I81 .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tVKzvH6I81 .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tVKzvH6I81 .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tVKzvH6I81 .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tVKzvH6I81 .contact-container {
    width: 100%;
  }
}
.cid-tVKzvH6I81 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tVKzvH6I81 .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tVKzvH6I81 .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tVKzvH6I81 .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tVKzvH6I81 .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tVKzvH6I81 .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tVKzvH6I81 .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tVKzvH6I81 .copyright {
  color: #efefec;
}
.cid-tVKzvH6I81 .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tVKzvH6I81 .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tVKzvH6I81 .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tX9FQ1TBFq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tX9FQ1TBFq .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tX9FQ1TBFq nav.navbar {
  position: fixed;
}
.cid-tX9FQ1TBFq .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tX9FQ1TBFq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tX9FQ1TBFq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tX9FQ1TBFq .dropdown-item:hover,
.cid-tX9FQ1TBFq .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tX9FQ1TBFq .dropdown-item:hover span {
  color: white;
}
.cid-tX9FQ1TBFq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tX9FQ1TBFq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tX9FQ1TBFq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tX9FQ1TBFq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tX9FQ1TBFq .nav-link {
  position: relative;
}
.cid-tX9FQ1TBFq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tX9FQ1TBFq .container {
    flex-wrap: nowrap;
  }
}
.cid-tX9FQ1TBFq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tX9FQ1TBFq .dropdown-menu,
.cid-tX9FQ1TBFq .navbar.opened {
  background: #ffffff !important;
}
.cid-tX9FQ1TBFq .nav-item:focus,
.cid-tX9FQ1TBFq .nav-link:focus {
  outline: none;
}
.cid-tX9FQ1TBFq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tX9FQ1TBFq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tX9FQ1TBFq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tX9FQ1TBFq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tX9FQ1TBFq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tX9FQ1TBFq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tX9FQ1TBFq .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tX9FQ1TBFq .navbar.opened {
  transition: all 0.3s;
}
.cid-tX9FQ1TBFq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tX9FQ1TBFq .navbar .navbar-logo img {
  width: auto;
}
.cid-tX9FQ1TBFq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tX9FQ1TBFq .navbar.collapsed {
  justify-content: center;
}
.cid-tX9FQ1TBFq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tX9FQ1TBFq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tX9FQ1TBFq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tX9FQ1TBFq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tX9FQ1TBFq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tX9FQ1TBFq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tX9FQ1TBFq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tX9FQ1TBFq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tX9FQ1TBFq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tX9FQ1TBFq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tX9FQ1TBFq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tX9FQ1TBFq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tX9FQ1TBFq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tX9FQ1TBFq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tX9FQ1TBFq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tX9FQ1TBFq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tX9FQ1TBFq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tX9FQ1TBFq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tX9FQ1TBFq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tX9FQ1TBFq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tX9FQ1TBFq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tX9FQ1TBFq .navbar.navbar-short {
  min-height: 80px;
}
.cid-tX9FQ1TBFq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tX9FQ1TBFq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tX9FQ1TBFq .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tX9FQ1TBFq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tX9FQ1TBFq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tX9FQ1TBFq .dropdown-item.active,
.cid-tX9FQ1TBFq .dropdown-item:active {
  background-color: transparent;
}
.cid-tX9FQ1TBFq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tX9FQ1TBFq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tX9FQ1TBFq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tX9FQ1TBFq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tX9FQ1TBFq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tX9FQ1TBFq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tX9FQ1TBFq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tX9FQ1TBFq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tX9FQ1TBFq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tX9FQ1TBFq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tX9FQ1TBFq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tX9FQ1TBFq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tX9FQ1TBFq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tX9FQ1TBFq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tX9FQ1TBFq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tX9FQ1TBFq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tX9FQ1TBFq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tX9FQ1TBFq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tX9FQ1TBFq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tX9FQ1TBFq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tX9FQ1TBFq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tX9FQ1TBFq .navbar {
    height: 70px;
  }
  .cid-tX9FQ1TBFq .navbar.opened {
    height: auto;
  }
  .cid-tX9FQ1TBFq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tX9FQ2q6on {
  background-image: url("../../../assets/images/portrait-of-female-mature-nurse-in-uniform-with-st-2022-03-07-18-14-30-utc-2000x1333.jpg");
}
.cid-tX9FQ2q6on .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX9FQ2q6on .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX9FQ2q6on .mbr-section-title {
  color: #FFFFFF;
}
.cid-tX9FQ2q6on .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tX9FQ2q6on .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tX9FQ2q6on .mbr-section-btn {
  margin-top: 18px;
}
.cid-tX9FQ2q6on .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-tX9FQ2q6on .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-tX9FQ2UD9K {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-tX9FQ2UD9K .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX9FQ2UD9K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX9FQ2UD9K .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tX9FQ2UD9K .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tX9FQ2UD9K .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tX9FQ2UD9K .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tX9FQ2UD9K .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tX9FQ2UD9K .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tX9FQ2UD9K .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tX9FQ2UD9K .mbr-section-title {
  color: #FFFFFF;
}
.cid-tX9FQ2UD9K .mbr-desc {
  color: #FFFFFF;
}
.cid-tX9FQ2UD9K .mbr-text {
  color: #FFFFFF;
}
.cid-tX9FQ3mkLh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tX9FQ3mkLh .row {
    flex-direction: column-reverse;
  }
}
.cid-tX9FQ3mkLh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX9FQ3mkLh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX9FQ3mkLh .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tX9FQ3mkLh .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tX9FQ3mkLh .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tX9FQ3mkLh .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tX9FQ3mkLh .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tX9FQ3mkLh .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tX9FQ3mkLh .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tX9FQ3mkLh .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tX9FQ3mkLh .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tX9FQ3mkLh .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tX9FQ3mkLh .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tX9FQ3mkLh .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-tX9FQ3mkLh .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tX9FQ3mkLh .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tX9FQ3mkLh .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tX9FQ3mkLh .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tX9FQ3mkLh .mbr-section-title {
  color: #000000;
}
.cid-tX9FQ3mkLh .mbr-text {
  color: #000000;
}
.cid-tX9FQ3PayV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-tX9FQ3PayV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX9FQ3PayV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX9FQ3PayV .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tX9FQ3PayV .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tX9FQ3PayV .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tX9FQ3PayV .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tX9FQ3PayV .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tX9FQ3PayV .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tX9FQ3PayV .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tX9FQ3PayV .mbr-section-title {
  color: #FFFFFF;
}
.cid-tX9FQ3PayV .mbr-desc {
  color: #FFFFFF;
}
.cid-tX9FQ3PayV .mbr-text {
  color: #FFFFFF;
}
.cid-tX9FQ4iZHu {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tX9FQ4iZHu .link {
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.cid-tX9FQ4iZHu .link .mbr-iconfont {
  font-size: 16px;
  width: 16px;
  margin-right: 10px;
  vertical-align: middle;
}
.cid-tX9FQ4iZHu .link:hover {
  transform: translatex(10px);
}
.cid-tX9FQ4iZHu .card {
  margin-bottom: 4rem;
}
.cid-tX9FQ4iZHu img {
  height: 200px;
  object-fit: cover;
}
.cid-tX9FQ4iZHu .mbr-text {
  text-align: left;
  color: #00acb1;
}
.cid-tX9FQ4T5IR {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tX9FQ4T5IR .link {
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.cid-tX9FQ4T5IR .link .mbr-iconfont {
  font-size: 16px;
  width: 16px;
  margin-right: 10px;
  vertical-align: middle;
}
.cid-tX9FQ4T5IR .link:hover {
  transform: translatex(10px);
}
.cid-tX9FQ4T5IR .card {
  margin-bottom: 4rem;
}
.cid-tX9FQ4T5IR img {
  height: 200px;
  object-fit: cover;
}
.cid-tX9FQ4T5IR .mbr-text {
  color: #00acb1;
}
.cid-tX9FQ5vN0L {
  background-color: #efefec;
}
.cid-tX9FQ5vN0L .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX9FQ5vN0L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX9FQ5vN0L .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tX9FQ5vN0L .row {
  align-items: center;
}
.cid-tX9FQ5vN0L .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tX9FQ5vN0L .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tX9FQ5vN0L .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tX9FQ5vN0L .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tX9FQ5vN0L .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tX9FQ5vN0L .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tX9FQ5vN0L .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tX9FQ5vN0L .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tX9FQ5vN0L .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tX9FQ5vN0L .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tX9FQ5vN0L .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tX9FQ5vN0L .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tX9FQ5vN0L .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tX9FQ5vN0L .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tX9FQ5vN0L .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tX9FQ5vN0L .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tX9FQ5vN0L .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tX9FQ5vN0L .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tX9FQ5vN0L .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tX9FQ5vN0L .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tX9FQ5vN0L .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tX9FQ5vN0L .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tX9FQ5vN0L .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tX9FQ5vN0L .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tX9FQ5vN0L .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tX9FQ5vN0L .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tX9FQ5vN0L .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tX9FQ5vN0L .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tX9FQ5vN0L .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tX9FQ5vN0L .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tX9FQ5vN0L .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tX9FQ5vN0L .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tX9FQ5vN0L .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tX9FQ5vN0L .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tX9FQ5vN0L .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tX9FQ5vN0L .contact-container {
    width: 100%;
  }
}
.cid-tX9FQ5vN0L .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tX9FQ5vN0L .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tX9FQ5vN0L .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tX9FQ5vN0L .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tX9FQ5vN0L .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tX9FQ5vN0L .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tX9FQ5vN0L .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tX9FQ5vN0L .copyright {
  color: #efefec;
}
.cid-tX9FQ5vN0L .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tX9FQ5vN0L .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tX9FQ5vN0L .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tYmsKqHpQX {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tYmsKqHpQX .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tYmsKqHpQX nav.navbar {
  position: fixed;
}
.cid-tYmsKqHpQX .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYmsKqHpQX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tYmsKqHpQX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tYmsKqHpQX .dropdown-item:hover,
.cid-tYmsKqHpQX .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tYmsKqHpQX .dropdown-item:hover span {
  color: white;
}
.cid-tYmsKqHpQX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tYmsKqHpQX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tYmsKqHpQX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tYmsKqHpQX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tYmsKqHpQX .nav-link {
  position: relative;
}
.cid-tYmsKqHpQX .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tYmsKqHpQX .container {
    flex-wrap: nowrap;
  }
}
.cid-tYmsKqHpQX .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tYmsKqHpQX .dropdown-menu,
.cid-tYmsKqHpQX .navbar.opened {
  background: #ffffff !important;
}
.cid-tYmsKqHpQX .nav-item:focus,
.cid-tYmsKqHpQX .nav-link:focus {
  outline: none;
}
.cid-tYmsKqHpQX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tYmsKqHpQX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tYmsKqHpQX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tYmsKqHpQX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYmsKqHpQX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tYmsKqHpQX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tYmsKqHpQX .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tYmsKqHpQX .navbar.opened {
  transition: all 0.3s;
}
.cid-tYmsKqHpQX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tYmsKqHpQX .navbar .navbar-logo img {
  width: auto;
}
.cid-tYmsKqHpQX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tYmsKqHpQX .navbar.collapsed {
  justify-content: center;
}
.cid-tYmsKqHpQX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tYmsKqHpQX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tYmsKqHpQX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tYmsKqHpQX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYmsKqHpQX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYmsKqHpQX .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tYmsKqHpQX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tYmsKqHpQX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tYmsKqHpQX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tYmsKqHpQX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tYmsKqHpQX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYmsKqHpQX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYmsKqHpQX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tYmsKqHpQX .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tYmsKqHpQX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tYmsKqHpQX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tYmsKqHpQX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tYmsKqHpQX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tYmsKqHpQX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tYmsKqHpQX .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tYmsKqHpQX .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tYmsKqHpQX .navbar.navbar-short {
  min-height: 80px;
}
.cid-tYmsKqHpQX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tYmsKqHpQX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tYmsKqHpQX .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tYmsKqHpQX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tYmsKqHpQX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYmsKqHpQX .dropdown-item.active,
.cid-tYmsKqHpQX .dropdown-item:active {
  background-color: transparent;
}
.cid-tYmsKqHpQX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tYmsKqHpQX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tYmsKqHpQX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tYmsKqHpQX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tYmsKqHpQX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tYmsKqHpQX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYmsKqHpQX ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tYmsKqHpQX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tYmsKqHpQX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tYmsKqHpQX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tYmsKqHpQX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tYmsKqHpQX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYmsKqHpQX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYmsKqHpQX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tYmsKqHpQX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYmsKqHpQX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tYmsKqHpQX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tYmsKqHpQX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYmsKqHpQX .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tYmsKqHpQX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tYmsKqHpQX .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tYmsKqHpQX .navbar {
    height: 70px;
  }
  .cid-tYmsKqHpQX .navbar.opened {
    height: auto;
  }
  .cid-tYmsKqHpQX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYmsKrizMo {
  background-image: url("../../../assets/images/mbr-1139x855.jpg");
}
.cid-tYmsKrizMo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYmsKrizMo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYmsKrizMo .mbr-section-title {
  color: #FFFFFF;
}
.cid-tYmsKrizMo .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tYmsKrizMo .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tYmsKrizMo .mbr-section-btn {
  margin-top: 18px;
}
.cid-tYmsKrizMo .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-tYmsKrizMo .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-tYmsKsjhgG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-tYmsKsjhgG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYmsKsjhgG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYmsKsjhgG .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tYmsKsjhgG .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tYmsKsjhgG .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tYmsKsjhgG .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tYmsKsjhgG .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tYmsKsjhgG .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tYmsKsjhgG .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tYmsKsjhgG .mbr-section-title {
  color: #FFFFFF;
}
.cid-tYmsKsjhgG .mbr-desc {
  color: #FFFFFF;
}
.cid-tYmsKsjhgG .mbr-text {
  color: #FFFFFF;
}
.cid-tYo4KtOx29 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f7f7f7;
}
.cid-tYo4KtOx29 .list-group-item {
  background-color: transparent;
  border-top: 1px solid currentColor;
  padding: 0.5rem 0;
  color: #000000;
}
.cid-tYo4KtOx29 .d-flex {
  align-items: flex-end;
}
.cid-tYo4KtOx29 .plan-price {
  display: inline-block;
}
.cid-tYo4KtOx29 .price-wrapper {
  width: 100%;
}
.cid-tYo4KtOx29 ul {
  padding: 0.5rem 2rem;
}
.cid-tYo4KtOx29 .list-group {
  margin-top: 1.5rem;
}
.cid-tYo4KtOx29 .plan-body {
  padding-bottom: 4rem;
}
.cid-tYo4KtOx29 .plan-header {
  padding-top: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.cid-tYo4KtOx29 .price {
  color: #669900;
}
.cid-tYo4KtOx29 .plan-title,
.cid-tYo4KtOx29 .plan-price,
.cid-tYo4KtOx29 .price-term,
.cid-tYo4KtOx29 .price-text,
.cid-tYo4KtOx29 .list-group-item,
.cid-tYo4KtOx29 .price {
  transition: all 0.3s;
}
.cid-tYo4KtOx29 .plan {
  word-break: break-word;
  border: 1px solid black;
  transition: all 0.3s;
}
.cid-tYo4KtOx29 .plan:hover {
  background: #87e4db;
  border-color: #87e4db;
}
.cid-tYo4KtOx29 .plan:hover .plan-title,
.cid-tYo4KtOx29 .plan:hover .plan-price,
.cid-tYo4KtOx29 .plan:hover .price-term,
.cid-tYo4KtOx29 .plan:hover .price-text,
.cid-tYo4KtOx29 .plan:hover .list-group-item,
.cid-tYo4KtOx29 .plan:hover .price {
  color: #678283 !important;
  border-color: #678283 !important;
}
.cid-tYo4KtOx29 .plan:hover .btn {
  background: white !important;
  color: black !important;
}
@media (max-width: 991px) {
  .cid-tYo4KtOx29 .plan {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tYo4KtOx29 ul {
    padding: 0.5rem 1rem;
  }
  .cid-tYo4KtOx29 .plan-header {
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-tYo4KtOx29 .plan-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-tYo4KtOx29 UL {
  text-align: left;
  color: #fa4529;
}
.cid-tYo4KtOx29 .price-text {
  text-align: left;
  color: #bbbbbb;
}
.cid-tYo4KtOx29 .mbr-section-subtitle {
  color: #666666;
}
.cid-tYo4KtOx29 .price,
.cid-tYo4KtOx29 .price-wrapper {
  text-align: center;
  color: #678283;
}
.cid-tYo4KtOx29 .mbr-section-title {
  color: #678283;
}
.cid-tYmsKtjwiW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-tYmsKtjwiW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYmsKtjwiW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYmsKtjwiW .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tYmsKtjwiW .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tYmsKtjwiW .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tYmsKtjwiW .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tYmsKtjwiW .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tYmsKtjwiW .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tYmsKtjwiW .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tYmsKtjwiW .mbr-section-title {
  color: #FFFFFF;
}
.cid-tYmsKtjwiW .mbr-desc {
  color: #FFFFFF;
}
.cid-tYmsKtjwiW .mbr-text {
  color: #FFFFFF;
}
.cid-tYmsKtPf0N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #87e4db;
}
@media (max-width: 992px) {
  .cid-tYmsKtPf0N .form-title,
  .cid-tYmsKtPf0N .form-wrapper {
    padding: 0;
  }
}
.cid-tYmsKtPf0N .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-tYmsKtPf0N .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-tYmsKtPf0N .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tYmsKtPf0N .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tYmsKtPf0N .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-tYmsKtPf0N .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-tYmsKtPf0N .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tYmsKtPf0N .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tYmsKtPf0N .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tYmsKtPf0N .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-tYmsKtPf0N .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-tYmsKtPf0N .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-tYmsKtPf0N .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-tYmsKtPf0N .mbr-form {
    margin: 0 30px;
  }
}
.cid-tYmsKtPf0N .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tYmsKtPf0N .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tYmsKtPf0N .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-tYmsKtPf0N .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-tYmsKtPf0N .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-tYmsKtPf0N .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-tYmsKtPf0N .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-tYmsKtPf0N .mbr-section-title {
  color: #00acb1;
}
.cid-tYmsKtPf0N .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-tYmsKuvDpl {
  background-color: #efefec;
}
.cid-tYmsKuvDpl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYmsKuvDpl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYmsKuvDpl .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tYmsKuvDpl .row {
  align-items: center;
}
.cid-tYmsKuvDpl .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tYmsKuvDpl .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tYmsKuvDpl .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tYmsKuvDpl .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tYmsKuvDpl .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tYmsKuvDpl .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tYmsKuvDpl .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tYmsKuvDpl .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tYmsKuvDpl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYmsKuvDpl .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tYmsKuvDpl .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tYmsKuvDpl .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tYmsKuvDpl .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tYmsKuvDpl .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tYmsKuvDpl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tYmsKuvDpl .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tYmsKuvDpl .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tYmsKuvDpl .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tYmsKuvDpl .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tYmsKuvDpl .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tYmsKuvDpl .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tYmsKuvDpl .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tYmsKuvDpl .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tYmsKuvDpl .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tYmsKuvDpl .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tYmsKuvDpl .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tYmsKuvDpl .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tYmsKuvDpl .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tYmsKuvDpl .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tYmsKuvDpl .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tYmsKuvDpl .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tYmsKuvDpl .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tYmsKuvDpl .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tYmsKuvDpl .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tYmsKuvDpl .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tYmsKuvDpl .contact-container {
    width: 100%;
  }
}
.cid-tYmsKuvDpl .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tYmsKuvDpl .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tYmsKuvDpl .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tYmsKuvDpl .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tYmsKuvDpl .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tYmsKuvDpl .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tYmsKuvDpl .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tYmsKuvDpl .copyright {
  color: #efefec;
}
.cid-tYmsKuvDpl .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tYmsKuvDpl .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tYmsKuvDpl .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-u28xz6ExTE {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-u28xz6ExTE .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-u28xz6ExTE nav.navbar {
  position: fixed;
}
.cid-u28xz6ExTE .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u28xz6ExTE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u28xz6ExTE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u28xz6ExTE .dropdown-item:hover,
.cid-u28xz6ExTE .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-u28xz6ExTE .dropdown-item:hover span {
  color: white;
}
.cid-u28xz6ExTE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u28xz6ExTE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u28xz6ExTE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u28xz6ExTE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u28xz6ExTE .nav-link {
  position: relative;
}
.cid-u28xz6ExTE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u28xz6ExTE .container {
    flex-wrap: nowrap;
  }
}
.cid-u28xz6ExTE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u28xz6ExTE .dropdown-menu,
.cid-u28xz6ExTE .navbar.opened {
  background: #ffffff !important;
}
.cid-u28xz6ExTE .nav-item:focus,
.cid-u28xz6ExTE .nav-link:focus {
  outline: none;
}
.cid-u28xz6ExTE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u28xz6ExTE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u28xz6ExTE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u28xz6ExTE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u28xz6ExTE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u28xz6ExTE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u28xz6ExTE .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u28xz6ExTE .navbar.opened {
  transition: all 0.3s;
}
.cid-u28xz6ExTE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u28xz6ExTE .navbar .navbar-logo img {
  width: auto;
}
.cid-u28xz6ExTE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u28xz6ExTE .navbar.collapsed {
  justify-content: center;
}
.cid-u28xz6ExTE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u28xz6ExTE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u28xz6ExTE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-u28xz6ExTE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u28xz6ExTE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u28xz6ExTE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u28xz6ExTE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u28xz6ExTE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u28xz6ExTE .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u28xz6ExTE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u28xz6ExTE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u28xz6ExTE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u28xz6ExTE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u28xz6ExTE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u28xz6ExTE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u28xz6ExTE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u28xz6ExTE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u28xz6ExTE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u28xz6ExTE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u28xz6ExTE .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u28xz6ExTE .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u28xz6ExTE .navbar.navbar-short {
  min-height: 80px;
}
.cid-u28xz6ExTE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u28xz6ExTE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u28xz6ExTE .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u28xz6ExTE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u28xz6ExTE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u28xz6ExTE .dropdown-item.active,
.cid-u28xz6ExTE .dropdown-item:active {
  background-color: transparent;
}
.cid-u28xz6ExTE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u28xz6ExTE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u28xz6ExTE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u28xz6ExTE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u28xz6ExTE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u28xz6ExTE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u28xz6ExTE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u28xz6ExTE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u28xz6ExTE button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u28xz6ExTE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-u28xz6ExTE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u28xz6ExTE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u28xz6ExTE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u28xz6ExTE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u28xz6ExTE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u28xz6ExTE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u28xz6ExTE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u28xz6ExTE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u28xz6ExTE .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u28xz6ExTE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u28xz6ExTE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u28xz6ExTE .navbar {
    height: 70px;
  }
  .cid-u28xz6ExTE .navbar.opened {
    height: auto;
  }
  .cid-u28xz6ExTE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u28xz7eife {
  background-image: url("../../../assets/images/portrait-healthcare-and-trust-with-a-nurse-woman-2023-11-27-05-29-37-utc-2000x1055.jpeg");
}
.cid-u28xz7eife .mbr-fallback-image.disabled {
  display: none;
}
.cid-u28xz7eife .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u28xz7eife .mbr-section-title {
  color: #FFFFFF;
}
.cid-u28xz7eife .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-u28xz7eife .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-u28xz7eife .mbr-section-btn {
  margin-top: 18px;
}
.cid-u28xz7eife .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-u28xz7eife .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-u28GioKXM1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u28GioKXM1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u28GioKXM1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-u28GioKXM1 .container {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .cid-u28GioKXM1 .container {
    padding: 0 4px;
  }
}
.cid-u28GioKXM1 .row {
  margin: 0;
}
.cid-u28GioKXM1 .row .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u28GioKXM1 .row .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-u28GioKXM1 .row .panel-group .card {
  border-bottom: 1px solid #838383;
  border-radius: 0 !important;
}
.cid-u28GioKXM1 .row .panel-group .card:first-child {
  border-top: 1px solid #838383;
}
.cid-u28GioKXM1 .row .panel-group .card .card-header {
  padding: 32px 0;
  border-bottom: none;
  background-color: transparent;
}
.cid-u28GioKXM1 .row .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-u28GioKXM1 .row .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  transform: rotate(-45deg);
}
.cid-u28GioKXM1 .row .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-u28GioKXM1 .row .panel-group .card .card-header .panel-title .mbr-iconfont {
  font-size: 24px;
  transition: all 0.3s ease-out;
}
.cid-u28GioKXM1 .row .panel-group .card .panel-collapse .panel-body {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u28GioKXM1 .row .panel-group .card .panel-collapse .panel-body {
    margin-bottom: 32px;
  }
}
.cid-u28GioKXM1 .row .panel-group .card .panel-collapse .panel-body .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u28GioKXM1 .row .panel-group .card .panel-collapse .panel-body .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-u28GioKXM1 .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-u28GioKXM1 .panel-title-edit,
.cid-u28GioKXM1 .mbr-iconfont {
  color: #00acb1;
}
.cid-u28GioKXM1 .mbr-text {
  color: #665f6f;
}
.cid-u28xz8eVjJ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u28xz8eVjJ .row {
    flex-direction: column-reverse;
  }
}
.cid-u28xz8eVjJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u28xz8eVjJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u28xz8eVjJ .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-u28xz8eVjJ .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-u28xz8eVjJ .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-u28xz8eVjJ .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-u28xz8eVjJ .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-u28xz8eVjJ .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-u28xz8eVjJ .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-u28xz8eVjJ .text-wrapper {
    margin: 0 30px;
  }
}
.cid-u28xz8eVjJ .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-u28xz8eVjJ .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-u28xz8eVjJ .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-u28xz8eVjJ .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-u28xz8eVjJ .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-u28xz8eVjJ .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u28xz8eVjJ .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-u28xz8eVjJ .image-wrapper img {
    min-height: 100%;
  }
}
.cid-u28xz8eVjJ .mbr-section-title {
  color: #000000;
}
.cid-u28xz8eVjJ .mbr-text {
  color: #000000;
}
.cid-u28xz8JUNT {
  background-color: #efefec;
}
.cid-u28xz8JUNT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u28xz8JUNT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u28xz8JUNT .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-u28xz8JUNT .row {
  align-items: center;
}
.cid-u28xz8JUNT .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-u28xz8JUNT .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-u28xz8JUNT .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-u28xz8JUNT .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-u28xz8JUNT .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-u28xz8JUNT .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u28xz8JUNT .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u28xz8JUNT .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-u28xz8JUNT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u28xz8JUNT .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u28xz8JUNT .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-u28xz8JUNT .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-u28xz8JUNT .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-u28xz8JUNT .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-u28xz8JUNT .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-u28xz8JUNT .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u28xz8JUNT .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-u28xz8JUNT .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-u28xz8JUNT .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-u28xz8JUNT .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-u28xz8JUNT .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-u28xz8JUNT .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-u28xz8JUNT .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-u28xz8JUNT .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-u28xz8JUNT .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-u28xz8JUNT .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-u28xz8JUNT .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-u28xz8JUNT .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-u28xz8JUNT .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-u28xz8JUNT .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-u28xz8JUNT .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-u28xz8JUNT .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-u28xz8JUNT .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-u28xz8JUNT .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u28xz8JUNT .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-u28xz8JUNT .contact-container {
    width: 100%;
  }
}
.cid-u28xz8JUNT .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-u28xz8JUNT .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-u28xz8JUNT .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-u28xz8JUNT .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-u28xz8JUNT .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-u28xz8JUNT .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-u28xz8JUNT .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-u28xz8JUNT .copyright {
  color: #efefec;
}
.cid-u28xz8JUNT .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-u28xz8JUNT .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-u28xz8JUNT .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-u35sNoZFvx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-u35sNoZFvx .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-u35sNoZFvx nav.navbar {
  position: fixed;
}
.cid-u35sNoZFvx .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u35sNoZFvx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u35sNoZFvx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u35sNoZFvx .dropdown-item:hover,
.cid-u35sNoZFvx .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-u35sNoZFvx .dropdown-item:hover span {
  color: white;
}
.cid-u35sNoZFvx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u35sNoZFvx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u35sNoZFvx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u35sNoZFvx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u35sNoZFvx .nav-link {
  position: relative;
}
.cid-u35sNoZFvx .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u35sNoZFvx .container {
    flex-wrap: nowrap;
  }
}
.cid-u35sNoZFvx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u35sNoZFvx .dropdown-menu,
.cid-u35sNoZFvx .navbar.opened {
  background: #ffffff !important;
}
.cid-u35sNoZFvx .nav-item:focus,
.cid-u35sNoZFvx .nav-link:focus {
  outline: none;
}
.cid-u35sNoZFvx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u35sNoZFvx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u35sNoZFvx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u35sNoZFvx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u35sNoZFvx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u35sNoZFvx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u35sNoZFvx .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u35sNoZFvx .navbar.opened {
  transition: all 0.3s;
}
.cid-u35sNoZFvx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u35sNoZFvx .navbar .navbar-logo img {
  width: auto;
}
.cid-u35sNoZFvx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u35sNoZFvx .navbar.collapsed {
  justify-content: center;
}
.cid-u35sNoZFvx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u35sNoZFvx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u35sNoZFvx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-u35sNoZFvx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u35sNoZFvx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u35sNoZFvx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u35sNoZFvx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u35sNoZFvx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u35sNoZFvx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u35sNoZFvx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u35sNoZFvx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u35sNoZFvx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u35sNoZFvx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u35sNoZFvx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u35sNoZFvx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u35sNoZFvx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u35sNoZFvx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u35sNoZFvx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u35sNoZFvx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u35sNoZFvx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u35sNoZFvx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u35sNoZFvx .navbar.navbar-short {
  min-height: 80px;
}
.cid-u35sNoZFvx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u35sNoZFvx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u35sNoZFvx .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u35sNoZFvx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u35sNoZFvx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u35sNoZFvx .dropdown-item.active,
.cid-u35sNoZFvx .dropdown-item:active {
  background-color: transparent;
}
.cid-u35sNoZFvx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u35sNoZFvx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u35sNoZFvx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u35sNoZFvx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u35sNoZFvx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u35sNoZFvx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u35sNoZFvx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u35sNoZFvx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u35sNoZFvx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u35sNoZFvx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-u35sNoZFvx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u35sNoZFvx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u35sNoZFvx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u35sNoZFvx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u35sNoZFvx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u35sNoZFvx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u35sNoZFvx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u35sNoZFvx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u35sNoZFvx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u35sNoZFvx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u35sNoZFvx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u35sNoZFvx .navbar {
    height: 70px;
  }
  .cid-u35sNoZFvx .navbar.opened {
    height: auto;
  }
  .cid-u35sNoZFvx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u35sNpxvfc {
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-u35sNpxvfc .mbr-fallback-image.disabled {
  display: none;
}
.cid-u35sNpxvfc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u35sNpxvfc .mbr-section-title {
  color: #FFFFFF;
}
.cid-u35sNpxvfc .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-u35sNpxvfc .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-u35sNpxvfc .mbr-section-btn {
  margin-top: 18px;
}
.cid-u35sNpxvfc .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-u35sNpxvfc .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-uVGOcrhOT8 {
  background-color: #eeeef7;
}
.cid-uVGOcrhOT8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVGOcrhOT8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVGOcrhOT8 .items-wrap {
  justify-content: space-between;
}
.cid-uVGOcrhOT8 .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 96px;
  background-color: #00acb1;
}
@media (max-width: 1440px) {
  .cid-uVGOcrhOT8 .content-wrapper {
    padding: 48px;
  }
}
@media (max-width: 992px) {
  .cid-uVGOcrhOT8 .content-wrapper {
    padding: 26px 22px 22px;
    margin-bottom: 12px;
  }
}
.cid-uVGOcrhOT8 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uVGOcrhOT8 .content-wrapper .content-wrap .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uVGOcrhOT8 .content-wrapper .content-wrap .list {
  margin-bottom: 50px;
  list-style-type: decimal;
  list-style-position: inside;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uVGOcrhOT8 .content-wrapper .content-wrap .list {
    margin-bottom: 22px;
  }
}
.cid-uVGOcrhOT8 .content-wrapper .content-wrap .list .item-wrap {
  margin-bottom: 22px;
}
.cid-uVGOcrhOT8 .content-wrapper .content-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uVGOcrhOT8 .content-wrapper .content-wrap .list .item-wrap::marker {
  font-weight: 700;
}
.cid-uVGOcrhOT8 .content-wrapper .content-wrap .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uVGOcrhOT8 .content-wrapper .number-wrapper_1 {
  margin-top: 250px;
}
@media (max-width: 1440px) {
  .cid-uVGOcrhOT8 .content-wrapper .number-wrapper_1 {
    margin-top: 150px;
  }
}
@media (max-width: 992px) {
  .cid-uVGOcrhOT8 .content-wrapper .number-wrapper_1 {
    margin-top: 60px;
  }
}
.cid-uVGOcrhOT8 .content-wrapper .number-wrapper_1 .mbr-number_1 {
  margin-bottom: 0;
}
.cid-uVGOcrhOT8 .image-wrapper {
  position: relative;
  border: 3px solid #00acb1;
  background-color: #00acb1;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uVGOcrhOT8 .image-wrapper {
    height: 350px;
  }
}
.cid-uVGOcrhOT8 .image-wrapper .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uVGOcrhOT8 .image-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uVGOcrhOT8 .image-wrapper .number-wrapper_2 {
  position: relative;
  z-index: 1;
  padding: 48px;
}
@media (max-width: 992px) {
  .cid-uVGOcrhOT8 .image-wrapper .number-wrapper_2 {
    padding: 22px;
  }
}
.cid-uVGOcrhOT8 .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: #00acb1;
  margin-bottom: 0;
}
.cid-uVGOcrhOT8 .mbr-section-title {
  color: #191c25;
}
.cid-uVGOcrhOT8 .list {
  color: #191c25;
}
.cid-uVGOcrhOT8 .mbr-number_1 {
  color: #191c25;
}
.cid-uVGOcrhOT8 .mbr-number_2,
.cid-uVGOcrhOT8 .number-wrapper_2 {
  color: #191c25;
  text-align: right;
}
.cid-uVGOcrhOT8 .mbr-section-title,
.cid-uVGOcrhOT8 .mbr-section-btn {
  color: #ffffff;
}
.cid-uVGOcrhOT8 .list,
.cid-uVGOcrhOT8 .item-wrap {
  color: #ffffff;
}
.cid-ukytYVn7Ek {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpeg");
}
.cid-ukytYVn7Ek .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-ukytYVn7Ek .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-ukytYVn7Ek .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-ukytYVn7Ek .container {
    padding: 0 24px;
  }
}
.cid-ukytYVn7Ek .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ukytYVn7Ek .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-ukytYVn7Ek .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ukytYVn7Ek .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ukytYVn7Ek .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-ukytYVn7Ek .mbr-section-btn {
    text-align: left;
  }
}
.cid-ukytYVn7Ek .mbr-section-title {
  color: #F9F6E0;
}
.cid-ukytYVn7Ek .mbr-text {
  color: #ffffff;
}
.cid-ukytYVn7Ek .mbr-section-title,
.cid-ukytYVn7Ek .mbr-section-btn {
  color: #ffffff;
}
.cid-uVGPFr8a5q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uVGPFr8a5q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVGPFr8a5q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVGPFr8a5q .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 0;
  border: 1px solid #e4ed64;
}
@media (max-width: 992px) {
  .cid-uVGPFr8a5q .label-wrapper .mbr-label {
    margin-bottom: 20px;
  }
}
.cid-uVGPFr8a5q .mbr-section-title {
  margin-bottom: 50px;
  color: #186366;
}
@media (max-width: 992px) {
  .cid-uVGPFr8a5q .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uVGPFr8a5q .items-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uVGPFr8a5q .items-wrapper {
    display: block;
  }
}
.cid-uVGPFr8a5q .item {
  width: 50%;
  padding-right: 40px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uVGPFr8a5q .item {
    padding-right: 0;
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-uVGPFr8a5q .item .item-wrapper .card-box .title-wrapper {
  margin-bottom: 15px;
}
.cid-uVGPFr8a5q .item .item-wrapper .card-box .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uVGPFr8a5q .item .item-wrapper .card-box .title-wrapper .title-wrap .iconfont-wrapper {
  display: inline-flex;
  margin-right: 15px;
}
.cid-uVGPFr8a5q .item .item-wrapper .card-box .title-wrapper .title-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 36px;
  color: #00acb1;
  display: inline-flex;
}
@media (max-width: 992px) {
  .cid-uVGPFr8a5q .item .item-wrapper .card-box .title-wrapper .title-wrap .iconfont-wrapper .mbr-iconfont {
    font-size: 26px;
  }
}
.cid-uVGPFr8a5q .item .item-wrapper .card-box .title-wrapper .card-title {
  margin-bottom: 0;
}
.cid-uVGPFr8a5q .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uVGPFr8a5q .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 20px;
}
.cid-uVGPFr8a5q .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uVGPFr8a5q .mbr-label {
  color: #000000;
}
.cid-uVGPFr8a5q .card-title {
  color: #000000;
}
.cid-uVGPFr8a5q .card-text {
  color: #8a8a8a;
}
.cid-uVGPFr8a5q .card-text,
.cid-uVGPFr8a5q .mbr-section-btn {
  color: #000000;
}
.cid-uVGY0UQD0H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-uVGY0UQD0H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVGY0UQD0H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVGY0UQD0H .row {
  justify-content: space-between;
}
.cid-uVGY0UQD0H .title-wrapper .mbr-section-title {
  margin-bottom: 22px;
}
.cid-uVGY0UQD0H .items-wrapper .item {
  margin-bottom: 32px;
}
.cid-uVGY0UQD0H .items-wrapper .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uVGY0UQD0H .items-wrapper .item {
    margin-bottom: 22px;
  }
}
.cid-uVGY0UQD0H .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uVGY0UQD0H .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-uVGY0UQD0H .items-wrapper .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 16px;
}
.cid-uVGY0UQD0H .mbr-section-title {
  color: #ffffff;
}
.cid-uVGY0UQD0H .item-title {
  color: #ffffff;
}
.cid-uVGY0UQD0H .item-text {
  color: #ffffff;
}
.cid-uVN4pEHgjR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uVN4pEHgjR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVN4pEHgjR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVN4pEHgjR .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uVN4pEHgjR .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uVN4pEHgjR .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uVN4pEHgjR .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uVN4pEHgjR .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 0;
}
.cid-uVN4pEHgjR .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-uVN4pEHgjR .mbr-section-title {
  color: #111111;
}
.cid-uVN4pEHgjR .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-uVN4pEHgjR .mbr-text,
.cid-uVN4pEHgjR .text-wrapper {
  color: #666666;
}
.cid-uVN4pEHgjR .mbr-section-title,
.cid-uVN4pEHgjR .mbr-section-btn {
  color: #00acb1;
}
.cid-u35t5hsih1 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u35t5hsih1 img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(79, 110, 173, 0.1);
}
.cid-u35t5hsih1 .mbr-section-title {
  text-align: left;
  color: #00acb1;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-u35t5hsih1 .mbr-text {
  color: #6d7a8c;
  line-height: 1.5;
}
.cid-u35t5hsih1 .mbr-list {
  margin-top: 35px;
  color: #6d7a8c;
}
.cid-u35t5hsih1 .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u35t5hsih1 .mbr-list .list li {
  margin-bottom: 1rem;
}
.cid-u35t5hsih1 .mbr-list .list li:before {
  font-weight: 900;
  color: #4f87fb;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-u35sNr6TC4 {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u35sNr6TC4 .link {
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.cid-u35sNr6TC4 .link .mbr-iconfont {
  font-size: 16px;
  width: 16px;
  margin-right: 10px;
  vertical-align: middle;
}
.cid-u35sNr6TC4 .link:hover {
  transform: translatex(10px);
}
.cid-u35sNr6TC4 .card {
  margin-bottom: 4rem;
}
.cid-u35sNr6TC4 img {
  height: 200px;
  object-fit: cover;
}
.cid-u35sNr6TC4 .mbr-text {
  text-align: left;
  color: #00acb1;
}
.cid-u35tctbLPF {
  padding-top: 90px;
  padding-bottom: 105px;
  background: #e6ecf2;
}
.cid-u35tctbLPF .top-info-wrap .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-u35tctbLPF .top-info-wrap .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-u35tctbLPF .top-info-wrap .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-u35tctbLPF .top-info-wrap .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-u35tctbLPF .top-info-wrap .mbr-text {
  margin: 1.5rem 0;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-u35tctbLPF .top-info-wrap .mbr-text.display-7 {
  line-height: 1.5;
  letter-spacing: 0;
}
.cid-u35tctbLPF .card-wrap {
  position: relative;
  margin-bottom: 8rem;
  height: 320px;
}
.cid-u35tctbLPF .card-wrap .image-wrap {
  position: relative;
  height: 100%;
}
.cid-u35tctbLPF .card-wrap .image-wrap img {
  width: 100%;
  z-index: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  height: 100%;
  border-radius: 4px;
}
.cid-u35tctbLPF .card-wrap .card-bottom {
  background-color: #ffffff;
  position: absolute;
  bottom: -76px;
  padding: 20px 30px 10px 25px;
  width: calc(100% - 60px);
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-radius: 4px;
  border-bottom: 3px solid transparent;
  margin: -30px 15px 0;
  overflow: hidden;
  bottom: -60px;
}
.cid-u35tctbLPF .card-wrap .card-bottom .mbr-role {
  color: #4f87fb;
  letter-spacing: 1px;
  font-weight: 700;
}
.cid-u35tctbLPF .card-wrap .card-bottom .mbr-section-title {
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  font-weight: 700;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.cid-u35tctbLPF .card-wrap .card-bottom .mbr-section-title:hover {
  color: #4f87fb;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u35tctbLPF .card-wrap .card-bottom .social-media {
  list-style-type: none;
  width: 100%;
  z-index: 1;
  height: 0px;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cid-u35tctbLPF .card-wrap .card-bottom .social-media ul {
  height: 0px;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cid-u35tctbLPF .card-wrap .card-bottom .social-media ul li {
  margin-right: 0.6rem;
  display: inline-block;
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cid-u35tctbLPF .card-wrap .card-bottom:hover {
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.cid-u35tctbLPF .card-wrap .card-bottom:hover .social-media {
  height: 32px;
  opacity: 1;
}
.cid-u35tctbLPF .card-wrap .card-bottom .display-4 {
  font-size: 13px !important;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 1.5;
}
.cid-u35tctbLPF .card-wrap .card-bottom .display-7 {
  font-size: 20px !important;
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.cid-u35tctbLPF .mbr-section-title {
  margin-bottom: 0;
}
.cid-u35tctbLPF .mbr-iconfont {
  color: #777777;
  font-size: 1rem;
}
.cid-u35tctbLPF .mbr-iconfont:hover {
  color: #4f87fb;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u35tctbLPF .card-wrap .card-bottom .bottom-wrap .mbr-section-title,
.cid-u35tctbLPF .social-media {
  text-align: center;
}
.cid-u35sNtDYtS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u35sNtDYtS .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #87e4db none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-u35sNtDYtS .mbr-iconfont {
  align-items: center;
}
.cid-u35sNtDYtS .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-u35sNtDYtS .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-u35sNtDYtS .icon-transition span:hover {
  background-color: #000000;
  color: #87e4db;
}
.cid-u35sNtDYtS .social-media {
  padding: 0;
}
.cid-u35sNtDYtS .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-u35sNtDYtS .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-u35sNtDYtS .mbr-list,
.cid-u35sNtDYtS .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-u35sNtDYtS .social-list {
    text-align: center !important;
  }
}
.cid-u35sNtDYtS .mbr-section-title,
.cid-u35sNtDYtS .social-list {
  color: #00acb1;
}
.cid-u35sNugtSK {
  background-color: #efefec;
}
.cid-u35sNugtSK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u35sNugtSK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u35sNugtSK .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-u35sNugtSK .row {
  align-items: center;
}
.cid-u35sNugtSK .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-u35sNugtSK .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-u35sNugtSK .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-u35sNugtSK .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-u35sNugtSK .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-u35sNugtSK .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u35sNugtSK .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u35sNugtSK .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-u35sNugtSK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u35sNugtSK .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u35sNugtSK .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-u35sNugtSK .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-u35sNugtSK .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-u35sNugtSK .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-u35sNugtSK .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-u35sNugtSK .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u35sNugtSK .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-u35sNugtSK .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-u35sNugtSK .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-u35sNugtSK .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-u35sNugtSK .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-u35sNugtSK .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-u35sNugtSK .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-u35sNugtSK .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-u35sNugtSK .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-u35sNugtSK .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-u35sNugtSK .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-u35sNugtSK .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-u35sNugtSK .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-u35sNugtSK .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-u35sNugtSK .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-u35sNugtSK .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-u35sNugtSK .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-u35sNugtSK .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u35sNugtSK .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-u35sNugtSK .contact-container {
    width: 100%;
  }
}
.cid-u35sNugtSK .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-u35sNugtSK .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-u35sNugtSK .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-u35sNugtSK .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-u35sNugtSK .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-u35sNugtSK .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-u35sNugtSK .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-u35sNugtSK .copyright {
  color: #efefec;
}
.cid-u35sNugtSK .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-u35sNugtSK .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-u35sNugtSK .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-u66vmbF70u {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-u66vmbF70u .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-u66vmbF70u nav.navbar {
  position: fixed;
}
.cid-u66vmbF70u .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u66vmbF70u .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u66vmbF70u .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u66vmbF70u .dropdown-item:hover,
.cid-u66vmbF70u .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-u66vmbF70u .dropdown-item:hover span {
  color: white;
}
.cid-u66vmbF70u .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u66vmbF70u .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u66vmbF70u .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u66vmbF70u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u66vmbF70u .nav-link {
  position: relative;
}
.cid-u66vmbF70u .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u66vmbF70u .container {
    flex-wrap: nowrap;
  }
}
.cid-u66vmbF70u .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u66vmbF70u .dropdown-menu,
.cid-u66vmbF70u .navbar.opened {
  background: #ffffff !important;
}
.cid-u66vmbF70u .nav-item:focus,
.cid-u66vmbF70u .nav-link:focus {
  outline: none;
}
.cid-u66vmbF70u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u66vmbF70u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u66vmbF70u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u66vmbF70u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u66vmbF70u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u66vmbF70u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u66vmbF70u .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u66vmbF70u .navbar.opened {
  transition: all 0.3s;
}
.cid-u66vmbF70u .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u66vmbF70u .navbar .navbar-logo img {
  width: auto;
}
.cid-u66vmbF70u .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u66vmbF70u .navbar.collapsed {
  justify-content: center;
}
.cid-u66vmbF70u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u66vmbF70u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u66vmbF70u .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-u66vmbF70u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u66vmbF70u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u66vmbF70u .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u66vmbF70u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u66vmbF70u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u66vmbF70u .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u66vmbF70u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u66vmbF70u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u66vmbF70u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u66vmbF70u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u66vmbF70u .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u66vmbF70u .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u66vmbF70u .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u66vmbF70u .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u66vmbF70u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u66vmbF70u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u66vmbF70u .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u66vmbF70u .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u66vmbF70u .navbar.navbar-short {
  min-height: 80px;
}
.cid-u66vmbF70u .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u66vmbF70u .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u66vmbF70u .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u66vmbF70u .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u66vmbF70u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u66vmbF70u .dropdown-item.active,
.cid-u66vmbF70u .dropdown-item:active {
  background-color: transparent;
}
.cid-u66vmbF70u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u66vmbF70u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u66vmbF70u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u66vmbF70u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u66vmbF70u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u66vmbF70u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u66vmbF70u ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u66vmbF70u .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u66vmbF70u button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u66vmbF70u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-u66vmbF70u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u66vmbF70u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u66vmbF70u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u66vmbF70u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u66vmbF70u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u66vmbF70u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u66vmbF70u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u66vmbF70u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u66vmbF70u .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u66vmbF70u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u66vmbF70u .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u66vmbF70u .navbar {
    height: 70px;
  }
  .cid-u66vmbF70u .navbar.opened {
    height: auto;
  }
  .cid-u66vmbF70u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u66vmcBJeB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpeg");
  display: flex;
  align-items: center;
  min-height: 670px;
}
@media (max-width: 767px) {
  .cid-u66vmcBJeB {
    background-size: 200% 100%;
    background-position: left center;
  }
}
.cid-u66vmcBJeB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u66vmcBJeB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 1024px) {
  .cid-u66vmcBJeB {
    min-height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-u66vmcBJeB {
    min-height: 0;
  }
}
.cid-u66vmcBJeB .container {
  max-width: 100%;
  width: 100%;
  padding-left: 8%;
  padding-right: 46%;
}
@media (max-width: 991px) {
  .cid-u66vmcBJeB .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-u66vmcBJeB .row {
  margin-left: -20px;
  margin-right: -20px;
}
.cid-u66vmcBJeB .row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-u66vmcBJeB .content-container {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-u66vmcBJeB .content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-u66vmcBJeB .content-container {
    padding-right: 200px;
  }
}
.cid-u66vmcBJeB .mbr-section-title {
  color: #ffffff;
  margin-bottom: 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .cid-u66vmcBJeB .mbr-section-title {
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .cid-u66vmcBJeB .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-u66vmcBJeB .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
  width: 100%;
}
.cid-u66vmcBJeB .mbr-text {
  color: #112B6D;
  margin-bottom: 0.9rem;
  width: 100%;
}
.cid-u66vmcBJeB .mbr-section-btn {
  margin-top: 10px;
}
.cid-u66vmdj5B8 {
  background-color: #fbfbfb;
}
.cid-u66vmdj5B8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u66vmdj5B8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u66vmdj5B8 .row {
  justify-content: flex-start;
}
.cid-u66vmdj5B8 .mbr-section-title {
  color: #000000;
  width: 100%;
  margin-bottom: 4rem;
}
.cid-u66vmdj5B8 .item-wrap {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-u66vmdj5B8 .mbr-section-subtitle {
  color: #00acb1;
  width: 100%;
}
.cid-u66vmdj5B8 .mbr-text {
  color: #000000;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cid-u66vmdj5B8 .mbr-section-title,
.cid-u66vmdj5B8 .mbr-section-btn {
  color: #00acb1;
}
.cid-u66vmeCI0i {
  background-color: #fbfbfb;
}
.cid-u66vmeCI0i .mbr-fallback-image.disabled {
  display: none;
}
.cid-u66vmeCI0i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u66vmeCI0i .row {
  justify-content: flex-start;
}
.cid-u66vmeCI0i .mbr-section-title {
  color: #000000;
  width: 100%;
  margin-bottom: 4rem;
}
.cid-u66vmeCI0i .item-wrap {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-u66vmeCI0i .mbr-section-subtitle {
  color: #00acb1;
  width: 100%;
}
.cid-u66vmeCI0i .mbr-text {
  color: #000000;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cid-u66vmeCI0i .mbr-section-title,
.cid-u66vmeCI0i .mbr-section-btn {
  color: #00acb1;
}
.cid-u66vmfapYU {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #00acb1;
}
.cid-u66vmfapYU .mbr-fallback-image.disabled {
  display: none;
}
.cid-u66vmfapYU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u66vmfapYU .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-u66vmfapYU .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-u66vmfapYU .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-u66vmfapYU .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-u66vmfapYU .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-u66vmfapYU .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-u66vmfapYU .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-u66vmfapYU .text-wrapper {
    margin: 0 30px;
  }
}
.cid-u66vmfapYU .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-u66vmfapYU .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-u66vmfapYU .mbr-section-title {
  color: #FFFFFF;
}
.cid-u66vmfapYU .mbr-section-title,
.cid-u66vmfapYU .mbr-section-btn {
  text-align: center;
}
#custom-html-6d {
  /* Type valid CSS here */
}
#custom-html-6d div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-6d p {
  font-size: 60px;
  color: #777;
}
.cid-u66vmg2Lfc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}
.cid-u66vmg2Lfc .title-col {
  width: 25%;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-u66vmg2Lfc .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-u66vmg2Lfc .title-col {
    width: 100%;
    padding: 0 0 12px 0 !important;
  }
}
.cid-u66vmg2Lfc .text-col {
  width: 75%;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-u66vmg2Lfc .text-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-u66vmg2Lfc .mbr-section-title {
  color: #00acb1;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-u66vmg2Lfc .mbr-section-title {
    width: 100%;
  }
}
.cid-u66vmg2Lfc .mbr-section-subtitle {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-u66vmg2Lfc .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-u66vmg2Lfc .mbr-text {
  color: #000000;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-u66vmg2Lfc .mbr-text {
    width: 100%;
  }
}
.cid-u66vmgu1FA {
  background-color: #efefec;
}
.cid-u66vmgu1FA .mbr-fallback-image.disabled {
  display: none;
}
.cid-u66vmgu1FA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u66vmgu1FA .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-u66vmgu1FA .row {
  align-items: center;
}
.cid-u66vmgu1FA .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-u66vmgu1FA .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-u66vmgu1FA .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-u66vmgu1FA .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-u66vmgu1FA .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-u66vmgu1FA .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u66vmgu1FA .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u66vmgu1FA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-u66vmgu1FA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u66vmgu1FA .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u66vmgu1FA .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-u66vmgu1FA .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-u66vmgu1FA .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-u66vmgu1FA .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-u66vmgu1FA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-u66vmgu1FA .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u66vmgu1FA .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-u66vmgu1FA .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-u66vmgu1FA .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-u66vmgu1FA .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-u66vmgu1FA .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-u66vmgu1FA .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-u66vmgu1FA .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-u66vmgu1FA .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-u66vmgu1FA .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-u66vmgu1FA .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-u66vmgu1FA .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-u66vmgu1FA .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-u66vmgu1FA .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-u66vmgu1FA .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-u66vmgu1FA .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-u66vmgu1FA .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-u66vmgu1FA .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-u66vmgu1FA .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u66vmgu1FA .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-u66vmgu1FA .contact-container {
    width: 100%;
  }
}
.cid-u66vmgu1FA .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-u66vmgu1FA .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-u66vmgu1FA .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-u66vmgu1FA .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-u66vmgu1FA .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-u66vmgu1FA .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-u66vmgu1FA .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-u66vmgu1FA .copyright {
  color: #efefec;
}
.cid-u66vmgu1FA .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-u66vmgu1FA .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-u66vmgu1FA .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-u8cprvOwzD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-u8cprvOwzD .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-u8cprvOwzD nav.navbar {
  position: fixed;
}
.cid-u8cprvOwzD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8cprvOwzD .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u8cprvOwzD .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u8cprvOwzD .dropdown-item:hover,
.cid-u8cprvOwzD .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-u8cprvOwzD .dropdown-item:hover span {
  color: white;
}
.cid-u8cprvOwzD .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u8cprvOwzD .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u8cprvOwzD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u8cprvOwzD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u8cprvOwzD .nav-link {
  position: relative;
}
.cid-u8cprvOwzD .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u8cprvOwzD .container {
    flex-wrap: nowrap;
  }
}
.cid-u8cprvOwzD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u8cprvOwzD .dropdown-menu,
.cid-u8cprvOwzD .navbar.opened {
  background: #ffffff !important;
}
.cid-u8cprvOwzD .nav-item:focus,
.cid-u8cprvOwzD .nav-link:focus {
  outline: none;
}
.cid-u8cprvOwzD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u8cprvOwzD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u8cprvOwzD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u8cprvOwzD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u8cprvOwzD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u8cprvOwzD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u8cprvOwzD .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u8cprvOwzD .navbar.opened {
  transition: all 0.3s;
}
.cid-u8cprvOwzD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u8cprvOwzD .navbar .navbar-logo img {
  width: auto;
}
.cid-u8cprvOwzD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u8cprvOwzD .navbar.collapsed {
  justify-content: center;
}
.cid-u8cprvOwzD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u8cprvOwzD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u8cprvOwzD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-u8cprvOwzD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u8cprvOwzD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u8cprvOwzD .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u8cprvOwzD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u8cprvOwzD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u8cprvOwzD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u8cprvOwzD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u8cprvOwzD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u8cprvOwzD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u8cprvOwzD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u8cprvOwzD .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u8cprvOwzD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u8cprvOwzD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u8cprvOwzD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u8cprvOwzD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u8cprvOwzD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u8cprvOwzD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u8cprvOwzD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u8cprvOwzD .navbar.navbar-short {
  min-height: 80px;
}
.cid-u8cprvOwzD .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u8cprvOwzD .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u8cprvOwzD .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u8cprvOwzD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u8cprvOwzD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8cprvOwzD .dropdown-item.active,
.cid-u8cprvOwzD .dropdown-item:active {
  background-color: transparent;
}
.cid-u8cprvOwzD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u8cprvOwzD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u8cprvOwzD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u8cprvOwzD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u8cprvOwzD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u8cprvOwzD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u8cprvOwzD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u8cprvOwzD .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u8cprvOwzD button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u8cprvOwzD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-u8cprvOwzD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u8cprvOwzD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8cprvOwzD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u8cprvOwzD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u8cprvOwzD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8cprvOwzD nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u8cprvOwzD nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u8cprvOwzD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u8cprvOwzD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u8cprvOwzD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8cprvOwzD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u8cprvOwzD .navbar {
    height: 70px;
  }
  .cid-u8cprvOwzD .navbar.opened {
    height: auto;
  }
  .cid-u8cprvOwzD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u8cB31uYYS {
  display: flex;
  background-image: url("../../../assets/images/top-view-of-paramedic-team-moving-man-on-ambulance-kzxb82h-1500x1001.jpg");
}
.cid-u8cB31uYYS .mbr-overlay {
  background-color: #000000;
  opacity: 0.2;
}
.cid-u8cB31uYYS .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8cB31uYYS .line {
  width: 100%;
  height: 1px;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-u8cB31uYYS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8cB31uYYS p {
  max-width: 600px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-u8cB31uYYS {
    align-items: center;
  }
  .cid-u8cB31uYYS .row {
    justify-content: flex-start;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-u8cB31uYYS .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-u8cB31uYYS {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-u8cB31uYYS .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-u8cB31uYYS .content-wrap {
    width: 100%;
  }
}
.cid-u8cB31uYYS .mbr-section-subtitle,
.cid-u8cB31uYYS .line {
  color: #ffffff;
}
.cid-u8cB31uYYS .mbr-text,
.cid-u8cB31uYYS .mbr-section-btn {
  text-align: left;
}
.cid-u8cr8hDbip {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-u8cr8hDbip .container {
  max-width: 1500px;
}
.cid-u8cr8hDbip .row {
  background: #f5f7fa;
}
.cid-u8cr8hDbip .img-col {
  padding: 0;
}
.cid-u8cr8hDbip .title-col {
  padding: 4rem 8rem;
}
.cid-u8cr8hDbip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-u8cr8hDbip h2 {
  padding: 0;
  margin: 0;
}
.cid-u8cr8hDbip .text-wrap {
  margin: auto;
}
.cid-u8cr8hDbip .mbr-text {
  color: #333333;
}
@media (max-width: 1200px) {
  .cid-u8cr8hDbip .row {
    margin: 2rem;
  }
  .cid-u8cr8hDbip .title-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-u8cr8hDbip .row {
    margin: 0rem;
  }
  .cid-u8cr8hDbip .title-col {
    padding: 2rem 1rem;
  }
}
.cid-u8cr8hDbip H2 {
  color: #333333;
}
.cid-u8LHtS6O5s {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u8LHtS6O5s .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-u8LHtS6O5s .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-u8LHtS6O5s .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1.85;
}
.cid-u8LHtS6O5s .contents .mbr-section-title {
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #130947;
}
.cid-u8LHtS6O5s .contents .mbr-section-text {
  margin-top: 20px;
  color: #6d7a8c;
  letter-spacing: 0;
  line-height: 1.5;
}
.cid-u8LHtS6O5s .card-wrapper {
  height: 100%;
}
.cid-u8LHtS6O5s .card-wrapper .card-box {
  padding-top: 2rem;
}
.cid-u8LHtS6O5s .card-wrapper .card-box .card-title {
  color: #28303f;
  transition: 0.3s all;
  font-weight: 700;
  margin-bottom: 10px;
}
.cid-u8LHtS6O5s .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  transition: 0.3s all;
}
.cid-u8LHtS6O5s .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.27;
  letter-spacing: -0.5px;
}
.cid-u8LHtS6O5s .card-wrapper .card-box .card-subtitle {
  color: #a0a9b6;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cid-u8LHtS6O5s .card-wrapper .card-box .card-subtitle.display-4 {
  font-size: 12px;
}
.cid-u8LHtS6O5s .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-u8LHtS6O5s .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-u8LHtS6O5s .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-u8LHtS6O5s .card-wrapper .card-img {
  position: relative;
}
.cid-u8LHtS6O5s .card-wrapper .card-img img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-u8LHtS6O5s .card-wrapper .card-img .meta-category {
  background-color: #87e4db;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  bottom: -15px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-u8LHtS6O5s .card-wrapper .card-img .meta-category .btn {
  font-weight: 600 !important;
}
.cid-u8LHtS6O5s .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-u8LHtS6O5s .card-wrapper .mbr-link-btn .btn {
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1px;
}
.cid-u8LHtS6O5s .card-wrapper .mbr-link-btn .btn.display-4 {
  font-size: 12px;
}
.cid-u8LHtS6O5s .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-u8LHtS6O5s .btn[class*='-outline'] span {
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  transition: padding 0.3s !important;
}
.cid-u8LHtS6O5s .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-u8LHtS6O5s .btn[class*='-outline']:hover {
  background-color: transparent !important;
  color: #4f87fb !important;
  box-shadow: none !important;
}
.cid-u8LHtS6O5s .btn[class*='-outline']:active,
.cid-u8LHtS6O5s .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-u8LHtS6O5s .contents .mbr-section-text {
  text-align: left;
  color: #333333;
}
.cid-u8LHtS6O5s .card-wrapper .card-box .mbr-text,
.cid-u8LHtS6O5s .mbr-link-btn {
  color: #333333;
}
.cid-u8cprBBtTT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u8cprBBtTT .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #87e4db none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-u8cprBBtTT .mbr-iconfont {
  align-items: center;
}
.cid-u8cprBBtTT .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-u8cprBBtTT .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-u8cprBBtTT .icon-transition span:hover {
  background-color: #000000;
  color: #87e4db;
}
.cid-u8cprBBtTT .social-media {
  padding: 0;
}
.cid-u8cprBBtTT .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-u8cprBBtTT .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-u8cprBBtTT .mbr-list,
.cid-u8cprBBtTT .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-u8cprBBtTT .social-list {
    text-align: center !important;
  }
}
.cid-u8cprBBtTT .mbr-section-title,
.cid-u8cprBBtTT .social-list {
  color: #00acb1;
}
.cid-u8cprCiV5l {
  background-color: #efefec;
}
.cid-u8cprCiV5l .mbr-fallback-image.disabled {
  display: none;
}
.cid-u8cprCiV5l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u8cprCiV5l .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-u8cprCiV5l .row {
  align-items: center;
}
.cid-u8cprCiV5l .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-u8cprCiV5l .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-u8cprCiV5l .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-u8cprCiV5l .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-u8cprCiV5l .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-u8cprCiV5l .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u8cprCiV5l .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u8cprCiV5l .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-u8cprCiV5l .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u8cprCiV5l .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u8cprCiV5l .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-u8cprCiV5l .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-u8cprCiV5l .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-u8cprCiV5l .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-u8cprCiV5l .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-u8cprCiV5l .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u8cprCiV5l .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-u8cprCiV5l .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-u8cprCiV5l .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-u8cprCiV5l .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-u8cprCiV5l .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-u8cprCiV5l .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-u8cprCiV5l .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-u8cprCiV5l .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-u8cprCiV5l .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-u8cprCiV5l .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-u8cprCiV5l .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-u8cprCiV5l .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-u8cprCiV5l .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-u8cprCiV5l .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-u8cprCiV5l .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-u8cprCiV5l .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-u8cprCiV5l .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-u8cprCiV5l .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u8cprCiV5l .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-u8cprCiV5l .contact-container {
    width: 100%;
  }
}
.cid-u8cprCiV5l .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-u8cprCiV5l .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-u8cprCiV5l .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-u8cprCiV5l .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-u8cprCiV5l .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-u8cprCiV5l .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-u8cprCiV5l .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-u8cprCiV5l .copyright {
  color: #efefec;
}
.cid-u8cprCiV5l .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-u8cprCiV5l .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-u8cprCiV5l .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-u73b3Ff1es {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-u73b3Ff1es .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-u73b3Ff1es nav.navbar {
  position: fixed;
}
.cid-u73b3Ff1es .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u73b3Ff1es .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-u73b3Ff1es .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-u73b3Ff1es .dropdown-item:hover,
.cid-u73b3Ff1es .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-u73b3Ff1es .dropdown-item:hover span {
  color: white;
}
.cid-u73b3Ff1es .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-u73b3Ff1es .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-u73b3Ff1es .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-u73b3Ff1es .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-u73b3Ff1es .nav-link {
  position: relative;
}
.cid-u73b3Ff1es .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-u73b3Ff1es .container {
    flex-wrap: nowrap;
  }
}
.cid-u73b3Ff1es .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-u73b3Ff1es .dropdown-menu,
.cid-u73b3Ff1es .navbar.opened {
  background: #ffffff !important;
}
.cid-u73b3Ff1es .nav-item:focus,
.cid-u73b3Ff1es .nav-link:focus {
  outline: none;
}
.cid-u73b3Ff1es .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u73b3Ff1es .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u73b3Ff1es .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u73b3Ff1es .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u73b3Ff1es .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u73b3Ff1es .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u73b3Ff1es .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-u73b3Ff1es .navbar.opened {
  transition: all 0.3s;
}
.cid-u73b3Ff1es .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-u73b3Ff1es .navbar .navbar-logo img {
  width: auto;
}
.cid-u73b3Ff1es .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-u73b3Ff1es .navbar.collapsed {
  justify-content: center;
}
.cid-u73b3Ff1es .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u73b3Ff1es .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-u73b3Ff1es .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-u73b3Ff1es .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u73b3Ff1es .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u73b3Ff1es .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-u73b3Ff1es .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u73b3Ff1es .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-u73b3Ff1es .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-u73b3Ff1es .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u73b3Ff1es .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u73b3Ff1es .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u73b3Ff1es .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u73b3Ff1es .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-u73b3Ff1es .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u73b3Ff1es .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u73b3Ff1es .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u73b3Ff1es .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u73b3Ff1es .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u73b3Ff1es .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-u73b3Ff1es .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-u73b3Ff1es .navbar.navbar-short {
  min-height: 80px;
}
.cid-u73b3Ff1es .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u73b3Ff1es .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u73b3Ff1es .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u73b3Ff1es .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u73b3Ff1es .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u73b3Ff1es .dropdown-item.active,
.cid-u73b3Ff1es .dropdown-item:active {
  background-color: transparent;
}
.cid-u73b3Ff1es .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u73b3Ff1es .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u73b3Ff1es .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u73b3Ff1es .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u73b3Ff1es .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u73b3Ff1es .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u73b3Ff1es ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-u73b3Ff1es .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u73b3Ff1es button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-u73b3Ff1es button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-u73b3Ff1es button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u73b3Ff1es button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u73b3Ff1es button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u73b3Ff1es button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u73b3Ff1es nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u73b3Ff1es nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u73b3Ff1es nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u73b3Ff1es nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u73b3Ff1es .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-u73b3Ff1es a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u73b3Ff1es .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u73b3Ff1es .navbar {
    height: 70px;
  }
  .cid-u73b3Ff1es .navbar.opened {
    height: auto;
  }
  .cid-u73b3Ff1es .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u73b3FTqYk {
  background-image: url("../../../assets/images/toxic-waste-with-asbestos-from-piled-up-asbestos-s-2022-04-20-18-26-37-utc1-2000x1333.jpg");
}
.cid-u73b3FTqYk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u73b3FTqYk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u73b3FTqYk .mbr-section-title {
  color: #FFFFFF;
}
.cid-u73b3FTqYk .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-u73b3FTqYk .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-u73b3FTqYk .mbr-section-btn {
  margin-top: 18px;
}
.cid-u73b3FTqYk .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-u73b3FTqYk .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-um9r8vV64l {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1318.jpeg");
}
.cid-um9r8vV64l .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-um9r8vV64l .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-um9r8vV64l .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-um9r8vV64l .container {
    padding: 0 24px;
  }
}
.cid-um9r8vV64l .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-um9r8vV64l .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-um9r8vV64l .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-um9r8vV64l .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-um9r8vV64l .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-um9r8vV64l .mbr-section-btn {
    text-align: left;
  }
}
.cid-um9r8vV64l .mbr-section-title {
  color: #F9F6E0;
}
.cid-um9r8vV64l .mbr-text {
  color: #ffffff;
}
.cid-um9r8vV64l .mbr-section-title,
.cid-um9r8vV64l .mbr-section-btn {
  color: #ffffff;
}
.cid-ujdgK1H1jj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-ujdgK1H1jj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujdgK1H1jj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujdgK1H1jj .container-fluid {
  padding: 0 48px;
}
@media (max-width: 992px) {
  .cid-ujdgK1H1jj .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ujdgK1H1jj .container {
    padding: 0 16px;
  }
}
.cid-ujdgK1H1jj .row {
  justify-content: center;
}
.cid-ujdgK1H1jj .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ujdgK1H1jj .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ujdgK1H1jj .content-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ujdgK1H1jj .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-primary:hover,
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-secondary:hover,
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-success:hover,
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-info:hover,
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-warning:hover,
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-danger:hover,
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-black:hover,
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-white:hover,
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-primary:focus,
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-secondary:focus,
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-success:focus,
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-info:focus,
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-warning:focus,
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-danger:focus,
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-black:focus,
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
  border-color: #73c4bd !important;
}
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #87e4db !important;
  color: #16324f !important;
}
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
}
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #87e4da !important;
  color: #16324f !important;
}
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #16324f !important;
  color: #73c4bd !important;
  border-color: #16324f !important;
}
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #f4f7f8 !important;
  color: #16324f !important;
}
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
}
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.cid-ujdgK1H1jj .content-wrapper .mbr-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.cid-ujdgK1H1jj .mbr-desc {
  color: #706cff;
}
.cid-ujdgK1H1jj .mbr-section-title {
  color: #000000;
}
.cid-ujdgK1H1jj .mbr-text {
  color: #000000;
}
.cid-ujdgK1H1jj .mbr-section-btn {
  text-align: center;
}
.cid-um9r6SKUCX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1318.jpeg");
}
.cid-um9r6SKUCX .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-um9r6SKUCX .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-um9r6SKUCX .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-um9r6SKUCX .container {
    padding: 0 24px;
  }
}
.cid-um9r6SKUCX .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-um9r6SKUCX .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-um9r6SKUCX .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-um9r6SKUCX .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-um9r6SKUCX .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-um9r6SKUCX .mbr-section-btn {
    text-align: left;
  }
}
.cid-um9r6SKUCX .mbr-section-title {
  color: #F9F6E0;
}
.cid-um9r6SKUCX .mbr-text {
  color: #ffffff;
}
.cid-um9r6SKUCX .mbr-section-title,
.cid-um9r6SKUCX .mbr-section-btn {
  color: #ffffff;
}
.cid-u73b3GrDJN {
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #e8e8e8;
}
.cid-u73b3GrDJN .mbr-fallback-image.disabled {
  display: none;
}
.cid-u73b3GrDJN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u73b3GrDJN .container-fluid {
  margin: 0;
  padding: 0 72px;
}
@media (max-width: 992px) {
  .cid-u73b3GrDJN .container-fluid {
    padding: 0 20px;
  }
}
.cid-u73b3GrDJN .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-u73b3GrDJN .container {
    padding: 0 20px;
  }
  .cid-u73b3GrDJN .container .row {
    padding: 0;
  }
}
.cid-u73b3GrDJN .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-u73b3GrDJN .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-u73b3GrDJN .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-u73b3GrDJN .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-u73b3GrDJN .title-wrapper .mbr-section-btn .btn .mbr-iconfont {
  color: #c6a38f;
}
.cid-u73b3GrDJN .video-block .video-wrapper .app-video-wrapper img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-u73b3GrDJN .video-block .video-wrapper .app-video-wrapper img {
    height: 300px;
  }
}
.cid-u73b3GrDJN .video-block .video-wrapper .app-video-wrapper:before {
  color: #222222;
  text-shadow: none;
}
.cid-u73b3GrDJN .mbr-section-title {
  color: #222222;
}
.cid-u73b3GrDJN .mbr-text {
  color: #222222;
}
.cid-u73b3GZRxN {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-u73b3GZRxN img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(79, 110, 173, 0.1);
}
.cid-u73b3GZRxN .mbr-section-title {
  text-align: left;
  color: #130947;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-u73b3GZRxN .mbr-text {
  color: #6d7a8c;
  line-height: 1.5;
}
.cid-u73b3GZRxN .mbr-list {
  margin-top: 35px;
  color: #6d7a8c;
}
.cid-u73b3GZRxN .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u73b3GZRxN .mbr-list .list li {
  margin-bottom: 1rem;
}
.cid-u73b3GZRxN .mbr-list .list li:before {
  font-weight: 900;
  color: #4f87fb;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-um9raA4tU6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1318.jpeg");
}
.cid-um9raA4tU6 .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-um9raA4tU6 .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-um9raA4tU6 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-um9raA4tU6 .container {
    padding: 0 24px;
  }
}
.cid-um9raA4tU6 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-um9raA4tU6 .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-um9raA4tU6 .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-um9raA4tU6 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-um9raA4tU6 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-um9raA4tU6 .mbr-section-btn {
    text-align: left;
  }
}
.cid-um9raA4tU6 .mbr-section-title {
  color: #F9F6E0;
}
.cid-um9raA4tU6 .mbr-text {
  color: #ffffff;
}
.cid-um9raA4tU6 .mbr-section-title,
.cid-um9raA4tU6 .mbr-section-btn {
  color: #ffffff;
}
.cid-u73b3HwXio {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-u73b3HwXio .mbr-fallback-image.disabled {
  display: none;
}
.cid-u73b3HwXio .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u73b3HwXio .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-u73b3HwXio .text-wrapper {
    margin: 0 30px;
  }
}
.cid-u73b3HwXio .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-u73b3HwXio .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-u73b3HwXio .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u73b3HwXio .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-u73b3HwXio .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-u73b3HwXio .mbr-section-title {
  color: #FFFFFF;
}
.cid-u73b3HwXio .mbr-desc {
  color: #FFFFFF;
}
.cid-u73b3HwXio .mbr-text {
  color: #FFFFFF;
}
.cid-u73b3I4fkq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u73b3I4fkq .row {
    flex-direction: column-reverse;
  }
}
.cid-u73b3I4fkq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u73b3I4fkq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u73b3I4fkq .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-u73b3I4fkq .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-u73b3I4fkq .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-u73b3I4fkq .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-u73b3I4fkq .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-u73b3I4fkq .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-u73b3I4fkq .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-u73b3I4fkq .text-wrapper {
    margin: 0 30px;
  }
}
.cid-u73b3I4fkq .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-u73b3I4fkq .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-u73b3I4fkq .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-u73b3I4fkq .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-u73b3I4fkq .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-u73b3I4fkq .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u73b3I4fkq .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-u73b3I4fkq .image-wrapper img {
    min-height: 100%;
  }
}
.cid-u73b3I4fkq .mbr-section-title {
  color: #000000;
}
.cid-u73b3I4fkq .mbr-text {
  color: #000000;
}
.cid-u73b3IC65z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-u73b3IC65z .mbr-fallback-image.disabled {
  display: none;
}
.cid-u73b3IC65z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u73b3IC65z .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-u73b3IC65z .text-wrapper {
    margin: 0 30px;
  }
}
.cid-u73b3IC65z .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-u73b3IC65z .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-u73b3IC65z .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u73b3IC65z .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-u73b3IC65z .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-u73b3IC65z .mbr-section-title {
  color: #FFFFFF;
}
.cid-u73b3IC65z .mbr-desc {
  color: #FFFFFF;
}
.cid-u73b3IC65z .mbr-text {
  color: #FFFFFF;
}
.cid-u73b3JWj8s {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u73b3JWj8s .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-u73b3JWj8s .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-u73b3JWj8s .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1.85;
}
.cid-u73b3JWj8s .contents .mbr-section-title {
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #130947;
}
.cid-u73b3JWj8s .contents .mbr-section-text {
  margin-top: 20px;
  color: #6d7a8c;
  letter-spacing: 0;
  line-height: 1.5;
}
.cid-u73b3JWj8s .card-wrapper {
  height: 100%;
}
.cid-u73b3JWj8s .card-wrapper .card-box {
  padding-top: 2rem;
}
.cid-u73b3JWj8s .card-wrapper .card-box .card-title {
  color: #28303f;
  transition: 0.3s all;
  font-weight: 700;
  margin-bottom: 10px;
}
.cid-u73b3JWj8s .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  transition: 0.3s all;
}
.cid-u73b3JWj8s .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.27;
  letter-spacing: -0.5px;
}
.cid-u73b3JWj8s .card-wrapper .card-box .card-subtitle {
  color: #a0a9b6;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cid-u73b3JWj8s .card-wrapper .card-box .card-subtitle.display-4 {
  font-size: 12px;
}
.cid-u73b3JWj8s .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-u73b3JWj8s .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-u73b3JWj8s .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-u73b3JWj8s .card-wrapper .card-img {
  position: relative;
}
.cid-u73b3JWj8s .card-wrapper .card-img img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-u73b3JWj8s .card-wrapper .card-img .meta-category {
  background-color: #87e4db;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  bottom: -15px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-u73b3JWj8s .card-wrapper .card-img .meta-category .btn {
  font-weight: 600 !important;
}
.cid-u73b3JWj8s .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-u73b3JWj8s .card-wrapper .mbr-link-btn .btn {
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1px;
}
.cid-u73b3JWj8s .card-wrapper .mbr-link-btn .btn.display-4 {
  font-size: 12px;
}
.cid-u73b3JWj8s .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-u73b3JWj8s .btn[class*='-outline'] span {
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  transition: padding 0.3s !important;
}
.cid-u73b3JWj8s .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-u73b3JWj8s .btn[class*='-outline']:hover {
  background-color: transparent !important;
  color: #4f87fb !important;
  box-shadow: none !important;
}
.cid-u73b3JWj8s .btn[class*='-outline']:active,
.cid-u73b3JWj8s .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-u73b3JWj8s .contents .mbr-section-text {
  text-align: left;
  color: #333333;
}
.cid-u73b3JWj8s .card-wrapper .card-box .mbr-text,
.cid-u73b3JWj8s .mbr-link-btn {
  color: #333333;
}
.cid-u9wtcaUmSd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u9wtcaUmSd .row {
    flex-direction: column-reverse;
  }
}
.cid-u9wtcaUmSd .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9wtcaUmSd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9wtcaUmSd .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-u9wtcaUmSd .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-u9wtcaUmSd .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-u9wtcaUmSd .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-u9wtcaUmSd .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-u9wtcaUmSd .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-u9wtcaUmSd .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-u9wtcaUmSd .text-wrapper {
    margin: 0 30px;
  }
}
.cid-u9wtcaUmSd .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-u9wtcaUmSd .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-u9wtcaUmSd .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-u9wtcaUmSd .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-u9wtcaUmSd .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-u9wtcaUmSd .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u9wtcaUmSd .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-u9wtcaUmSd .image-wrapper img {
    min-height: 100%;
  }
}
.cid-u9wtcaUmSd .mbr-section-title {
  color: #000000;
}
.cid-u9wtcaUmSd .mbr-text {
  color: #000000;
}
.cid-um9rf77QC4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1318.jpeg");
}
.cid-um9rf77QC4 .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-um9rf77QC4 .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-um9rf77QC4 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-um9rf77QC4 .container {
    padding: 0 24px;
  }
}
.cid-um9rf77QC4 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-um9rf77QC4 .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-um9rf77QC4 .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-um9rf77QC4 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-um9rf77QC4 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-um9rf77QC4 .mbr-section-btn {
    text-align: left;
  }
}
.cid-um9rf77QC4 .mbr-section-title {
  color: #F9F6E0;
}
.cid-um9rf77QC4 .mbr-text {
  color: #ffffff;
}
.cid-um9rf77QC4 .mbr-section-title,
.cid-um9rf77QC4 .mbr-section-btn {
  color: #ffffff;
}
.cid-u9wuiJTk7i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u9wuiJTk7i .row {
    flex-direction: column-reverse;
  }
}
.cid-u9wuiJTk7i .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9wuiJTk7i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9wuiJTk7i .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-u9wuiJTk7i .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-u9wuiJTk7i .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-u9wuiJTk7i .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-u9wuiJTk7i .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-u9wuiJTk7i .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-u9wuiJTk7i .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-u9wuiJTk7i .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-u9wuiJTk7i .text-wrapper {
    margin: 0 30px;
  }
}
.cid-u9wuiJTk7i .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-u9wuiJTk7i .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-u9wuiJTk7i .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-u9wuiJTk7i .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-u9wuiJTk7i .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-u9wuiJTk7i .image-wrapper {
    margin: 30px;
  }
}
.cid-u9wuiJTk7i .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-u9wuiJTk7i .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-u9wuiJTk7i .image-wrapper img {
    min-height: 100%;
  }
}
.cid-u9wuiJTk7i .mbr-section-title {
  color: #000000;
}
.cid-u9wuiJTk7i .mbr-text {
  color: #000000;
}
.cid-viTDnqSx3V {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-viTDnqSx3V .mbr-fallback-image.disabled {
  display: none;
}
.cid-viTDnqSx3V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viTDnqSx3V .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-viTDnqSx3V .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-viTDnqSx3V .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-viTDnqSx3V .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-viTDnqSx3V .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-viTDnqSx3V .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-viTDnqSx3V .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-viTDnqSx3V .text-wrapper {
    margin: 0 30px;
  }
}
.cid-viTDnqSx3V .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-viTDnqSx3V .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-viTDnqSx3V .mbr-section-title {
  color: #FFFFFF;
}
.cid-viTDnqSx3V .mbr-section-title,
.cid-viTDnqSx3V .mbr-section-btn {
  text-align: center;
}
#custom-html-qb {
  /* Type valid CSS here 
Be sure to add this line before </form>

<input type="hidden" id="zc_gad" name="zc_gad" value="">

*/
  /* Zoho CRM form - Persona Health styling */
  /* Form container */
  /* Labels and field text */
  /* Keep Zoho row spacing sane */
  /* Remove any unwanted padding from Zoho internal divs */
  /* Label column */
  /* Field column */
  /* Input fields */
  /* Message box */
  /* Buttons */
}
#custom-html-qb #crmWebToEntityForm .zoho-form-title {
  font-family: 'Exo', Arial, sans-serif !important;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
  margin: 0 0 25px 0;
  padding: 0;
}
#custom-html-qb #crmWebToEntityForm {
  font-family: 'Exo', sans-serif !important;
  color: #ffffff;
  text-align: left !important;
}
#custom-html-qb #crmWebToEntityForm label,
#custom-html-qb #crmWebToEntityForm input,
#custom-html-qb #crmWebToEntityForm textarea,
#custom-html-qb #crmWebToEntityForm select,
#custom-html-qb #crmWebToEntityForm option,
#custom-html-qb #crmWebToEntityForm .zcwf_button,
#custom-html-qb #crmWebToEntityForm .formsubmit {
  font-family: 'Exo', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
#custom-html-qb #crmWebToEntityForm .zcwf_row {
  margin: 12px 0 !important;
}
#custom-html-qb #crmWebToEntityForm div {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  text-align: left !important;
}
#custom-html-qb #crmWebToEntityForm .zcwf_col_lab {
  line-height: 1.3 !important;
  margin-top: 5px !important;
}
#custom-html-qb #crmWebToEntityForm .zcwf_col_fld {
  margin-top: 5px !important;
}
#custom-html-qb #crmWebToEntityForm input,
#custom-html-qb #crmWebToEntityForm select,
#custom-html-qb #crmWebToEntityForm textarea {
  line-height: 1.3 !important;
  padding: 4px 6px !important;
  color: #313949;
}
#custom-html-qb #crmWebToEntityForm textarea {
  min-height: 90px;
}
#custom-html-qb #crmWebToEntityForm .zcwf_button {
  cursor: pointer;
}
.cid-viTDmD1vDQ {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-viTDmD1vDQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-viTDmD1vDQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viTDmD1vDQ .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-viTDmD1vDQ .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-viTDmD1vDQ .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-viTDmD1vDQ .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-viTDmD1vDQ .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-viTDmD1vDQ .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-viTDmD1vDQ .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-viTDmD1vDQ .text-wrapper {
    margin: 0 30px;
  }
}
.cid-viTDmD1vDQ .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-viTDmD1vDQ .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-viTDmD1vDQ .mbr-section-title {
  color: #FFFFFF;
}
.cid-viTDmD1vDQ .mbr-section-title,
.cid-viTDmD1vDQ .mbr-section-btn {
  text-align: center;
}
.cid-viTDoLUopb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-viTDoLUopb .mbr-fallback-image.disabled {
  display: none;
}
.cid-viTDoLUopb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viTDoLUopb .row {
  justify-content: space-between;
}
.cid-viTDoLUopb .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #e4ed64;
}
@media (max-width: 992px) {
  .cid-viTDoLUopb .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-viTDoLUopb .content-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-viTDoLUopb .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-viTDoLUopb .content-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-viTDoLUopb .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-viTDoLUopb .mbr-label {
  color: #000000;
}
.cid-viTDoLUopb .mbr-section-title {
  color: #16324f;
}
.cid-viTDoLUopb .mbr-desc {
  color: #000000;
}
.cid-viTDoLUopb .mbr-text {
  color: #8a8a8a;
}
.cid-viTDoLUopb .mbr-text,
.cid-viTDoLUopb .mbr-section-btn {
  color: #16324f;
}
.cid-um9rcJfH5k {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1318.jpeg");
}
.cid-um9rcJfH5k .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-um9rcJfH5k .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-um9rcJfH5k .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-um9rcJfH5k .container {
    padding: 0 24px;
  }
}
.cid-um9rcJfH5k .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-um9rcJfH5k .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-um9rcJfH5k .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-um9rcJfH5k .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-um9rcJfH5k .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-um9rcJfH5k .mbr-section-btn {
    text-align: left;
  }
}
.cid-um9rcJfH5k .mbr-section-title {
  color: #F9F6E0;
}
.cid-um9rcJfH5k .mbr-text {
  color: #ffffff;
}
.cid-um9rcJfH5k .mbr-section-title,
.cid-um9rcJfH5k .mbr-section-btn {
  color: #ffffff;
}
.cid-u73b3KRvlj {
  background-color: #efefec;
}
.cid-u73b3KRvlj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u73b3KRvlj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u73b3KRvlj .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-u73b3KRvlj .row {
  align-items: center;
}
.cid-u73b3KRvlj .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-u73b3KRvlj .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-u73b3KRvlj .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-u73b3KRvlj .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-u73b3KRvlj .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-u73b3KRvlj .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u73b3KRvlj .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u73b3KRvlj .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-u73b3KRvlj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u73b3KRvlj .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u73b3KRvlj .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-u73b3KRvlj .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-u73b3KRvlj .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-u73b3KRvlj .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-u73b3KRvlj .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-u73b3KRvlj .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u73b3KRvlj .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-u73b3KRvlj .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-u73b3KRvlj .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-u73b3KRvlj .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-u73b3KRvlj .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-u73b3KRvlj .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-u73b3KRvlj .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-u73b3KRvlj .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-u73b3KRvlj .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-u73b3KRvlj .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-u73b3KRvlj .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-u73b3KRvlj .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-u73b3KRvlj .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-u73b3KRvlj .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-u73b3KRvlj .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-u73b3KRvlj .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-u73b3KRvlj .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-u73b3KRvlj .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-u73b3KRvlj .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-u73b3KRvlj .contact-container {
    width: 100%;
  }
}
.cid-u73b3KRvlj .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-u73b3KRvlj .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-u73b3KRvlj .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-u73b3KRvlj .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-u73b3KRvlj .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-u73b3KRvlj .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-u73b3KRvlj .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-u73b3KRvlj .copyright {
  color: #efefec;
}
.cid-u73b3KRvlj .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-u73b3KRvlj .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-u73b3KRvlj .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uaDRfa4Woq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uaDRfa4Woq .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uaDRfa4Woq nav.navbar {
  position: fixed;
}
.cid-uaDRfa4Woq .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uaDRfa4Woq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uaDRfa4Woq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uaDRfa4Woq .dropdown-item:hover,
.cid-uaDRfa4Woq .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uaDRfa4Woq .dropdown-item:hover span {
  color: white;
}
.cid-uaDRfa4Woq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uaDRfa4Woq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uaDRfa4Woq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uaDRfa4Woq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uaDRfa4Woq .nav-link {
  position: relative;
}
.cid-uaDRfa4Woq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uaDRfa4Woq .container {
    flex-wrap: nowrap;
  }
}
.cid-uaDRfa4Woq .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uaDRfa4Woq .dropdown-menu,
.cid-uaDRfa4Woq .navbar.opened {
  background: #ffffff !important;
}
.cid-uaDRfa4Woq .nav-item:focus,
.cid-uaDRfa4Woq .nav-link:focus {
  outline: none;
}
.cid-uaDRfa4Woq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uaDRfa4Woq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uaDRfa4Woq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uaDRfa4Woq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uaDRfa4Woq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uaDRfa4Woq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uaDRfa4Woq .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uaDRfa4Woq .navbar.opened {
  transition: all 0.3s;
}
.cid-uaDRfa4Woq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uaDRfa4Woq .navbar .navbar-logo img {
  width: auto;
}
.cid-uaDRfa4Woq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uaDRfa4Woq .navbar.collapsed {
  justify-content: center;
}
.cid-uaDRfa4Woq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uaDRfa4Woq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uaDRfa4Woq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uaDRfa4Woq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uaDRfa4Woq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uaDRfa4Woq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uaDRfa4Woq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uaDRfa4Woq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uaDRfa4Woq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uaDRfa4Woq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uaDRfa4Woq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uaDRfa4Woq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uaDRfa4Woq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uaDRfa4Woq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uaDRfa4Woq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uaDRfa4Woq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uaDRfa4Woq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uaDRfa4Woq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uaDRfa4Woq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uaDRfa4Woq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uaDRfa4Woq .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uaDRfa4Woq .navbar.navbar-short {
  min-height: 80px;
}
.cid-uaDRfa4Woq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uaDRfa4Woq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uaDRfa4Woq .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uaDRfa4Woq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uaDRfa4Woq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uaDRfa4Woq .dropdown-item.active,
.cid-uaDRfa4Woq .dropdown-item:active {
  background-color: transparent;
}
.cid-uaDRfa4Woq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uaDRfa4Woq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uaDRfa4Woq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uaDRfa4Woq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uaDRfa4Woq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uaDRfa4Woq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uaDRfa4Woq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uaDRfa4Woq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uaDRfa4Woq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uaDRfa4Woq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uaDRfa4Woq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uaDRfa4Woq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uaDRfa4Woq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uaDRfa4Woq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uaDRfa4Woq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uaDRfa4Woq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uaDRfa4Woq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uaDRfa4Woq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uaDRfa4Woq .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uaDRfa4Woq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uaDRfa4Woq .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uaDRfa4Woq .navbar {
    height: 70px;
  }
  .cid-uaDRfa4Woq .navbar.opened {
    height: auto;
  }
  .cid-uaDRfa4Woq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uaDRfaRSCl {
  background-image: url("../../../assets/images/portrait-healthcare-and-trust-with-a-nurse-woman-2023-11-27-05-29-37-utc-2000x1055.jpeg");
}
.cid-uaDRfaRSCl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaDRfaRSCl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaDRfaRSCl .mbr-section-title {
  color: #FFFFFF;
}
.cid-uaDRfaRSCl .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-uaDRfaRSCl .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-uaDRfaRSCl .mbr-section-btn {
  margin-top: 18px;
}
.cid-uaDRfaRSCl .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-uaDRfaRSCl .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-uaDRfc7xIa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uaDRfc7xIa .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaDRfc7xIa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uaDRfc7xIa .container {
    padding: 0 22px;
  }
}
.cid-uaDRfc7xIa .row {
  justify-content: center;
}
.cid-uaDRfc7xIa .content-wrapper .line-wrapper {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uaDRfc7xIa .content-wrapper .line-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uaDRfc7xIa .content-wrapper .line-wrapper .line-wrap {
  display: inline-flex;
  width: 1px;
  height: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uaDRfc7xIa .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uaDRfc7xIa .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uaDRfc7xIa .title-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #ffffff;
}
.cid-uaDRfc7xIa .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uaDRfc7xIa .mbr-section-title {
  color: #ffffff;
}
.cid-uaDRfc7xIa .mbr-text {
  color: #665f6f;
}
.cid-uaDRfc7xIa .mbr-section-title,
.cid-uaDRfc7xIa .icon-wrapper {
  color: #00acb1;
}
.cid-uaDRfcKQQu {
  background-color: #efefec;
}
.cid-uaDRfcKQQu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uaDRfcKQQu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uaDRfcKQQu .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uaDRfcKQQu .row {
  align-items: center;
}
.cid-uaDRfcKQQu .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uaDRfcKQQu .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uaDRfcKQQu .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uaDRfcKQQu .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uaDRfcKQQu .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uaDRfcKQQu .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uaDRfcKQQu .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uaDRfcKQQu .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uaDRfcKQQu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uaDRfcKQQu .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uaDRfcKQQu .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uaDRfcKQQu .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uaDRfcKQQu .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uaDRfcKQQu .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uaDRfcKQQu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uaDRfcKQQu .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uaDRfcKQQu .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uaDRfcKQQu .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uaDRfcKQQu .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uaDRfcKQQu .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uaDRfcKQQu .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uaDRfcKQQu .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uaDRfcKQQu .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uaDRfcKQQu .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uaDRfcKQQu .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uaDRfcKQQu .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uaDRfcKQQu .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uaDRfcKQQu .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uaDRfcKQQu .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uaDRfcKQQu .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uaDRfcKQQu .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uaDRfcKQQu .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uaDRfcKQQu .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uaDRfcKQQu .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uaDRfcKQQu .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uaDRfcKQQu .contact-container {
    width: 100%;
  }
}
.cid-uaDRfcKQQu .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uaDRfcKQQu .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uaDRfcKQQu .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uaDRfcKQQu .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uaDRfcKQQu .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uaDRfcKQQu .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uaDRfcKQQu .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uaDRfcKQQu .copyright {
  color: #efefec;
}
.cid-uaDRfcKQQu .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uaDRfcKQQu .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uaDRfcKQQu .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uabHglvrp1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uabHglvrp1 .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uabHglvrp1 nav.navbar {
  position: fixed;
}
.cid-uabHglvrp1 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uabHglvrp1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uabHglvrp1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uabHglvrp1 .dropdown-item:hover,
.cid-uabHglvrp1 .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uabHglvrp1 .dropdown-item:hover span {
  color: white;
}
.cid-uabHglvrp1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uabHglvrp1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uabHglvrp1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uabHglvrp1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uabHglvrp1 .nav-link {
  position: relative;
}
.cid-uabHglvrp1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uabHglvrp1 .container {
    flex-wrap: nowrap;
  }
}
.cid-uabHglvrp1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uabHglvrp1 .dropdown-menu,
.cid-uabHglvrp1 .navbar.opened {
  background: #ffffff !important;
}
.cid-uabHglvrp1 .nav-item:focus,
.cid-uabHglvrp1 .nav-link:focus {
  outline: none;
}
.cid-uabHglvrp1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uabHglvrp1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uabHglvrp1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uabHglvrp1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uabHglvrp1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uabHglvrp1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uabHglvrp1 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uabHglvrp1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uabHglvrp1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uabHglvrp1 .navbar .navbar-logo img {
  width: auto;
}
.cid-uabHglvrp1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uabHglvrp1 .navbar.collapsed {
  justify-content: center;
}
.cid-uabHglvrp1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uabHglvrp1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uabHglvrp1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uabHglvrp1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uabHglvrp1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uabHglvrp1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uabHglvrp1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uabHglvrp1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uabHglvrp1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uabHglvrp1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uabHglvrp1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uabHglvrp1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uabHglvrp1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uabHglvrp1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uabHglvrp1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uabHglvrp1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uabHglvrp1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uabHglvrp1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uabHglvrp1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uabHglvrp1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uabHglvrp1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uabHglvrp1 .navbar.navbar-short {
  min-height: 80px;
}
.cid-uabHglvrp1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uabHglvrp1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uabHglvrp1 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uabHglvrp1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uabHglvrp1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uabHglvrp1 .dropdown-item.active,
.cid-uabHglvrp1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uabHglvrp1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uabHglvrp1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uabHglvrp1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uabHglvrp1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uabHglvrp1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uabHglvrp1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uabHglvrp1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uabHglvrp1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uabHglvrp1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uabHglvrp1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uabHglvrp1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uabHglvrp1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uabHglvrp1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uabHglvrp1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uabHglvrp1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uabHglvrp1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uabHglvrp1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uabHglvrp1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uabHglvrp1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uabHglvrp1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uabHglvrp1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uabHglvrp1 .navbar {
    height: 70px;
  }
  .cid-uabHglvrp1 .navbar.opened {
    height: auto;
  }
  .cid-uabHglvrp1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uabHgm5RaI {
  background-image: url("../../../assets/images/portrait-healthcare-and-trust-with-a-nurse-woman-2023-11-27-05-29-37-utc-2000x1055.jpeg");
}
.cid-uabHgm5RaI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uabHgm5RaI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uabHgm5RaI .mbr-section-title {
  color: #FFFFFF;
}
.cid-uabHgm5RaI .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-uabHgm5RaI .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-uabHgm5RaI .mbr-section-btn {
  margin-top: 18px;
}
.cid-uabHgm5RaI .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-uabHgm5RaI .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-uac0tDAC5N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uac0tDAC5N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uac0tDAC5N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uac0tDAC5N .container {
    padding: 0 22px;
  }
}
.cid-uac0tDAC5N .row {
  justify-content: center;
}
.cid-uac0tDAC5N .content-wrapper .line-wrapper {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uac0tDAC5N .content-wrapper .line-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uac0tDAC5N .content-wrapper .line-wrapper .line-wrap {
  display: inline-flex;
  width: 1px;
  height: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uac0tDAC5N .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uac0tDAC5N .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uac0tDAC5N .title-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #ffffff;
}
.cid-uac0tDAC5N .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uac0tDAC5N .mbr-section-title {
  color: #ffffff;
}
.cid-uac0tDAC5N .mbr-text {
  color: #665f6f;
}
.cid-uac0tDAC5N .mbr-section-title,
.cid-uac0tDAC5N .icon-wrapper {
  color: #00acb1;
}
.cid-uac0UPmyrB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uac0UPmyrB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uac0UPmyrB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uac0UPmyrB .container {
    padding: 0 22px;
  }
}
.cid-uac0UPmyrB .row {
  justify-content: center;
}
.cid-uac0UPmyrB .content-wrapper .line-wrapper {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uac0UPmyrB .content-wrapper .line-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uac0UPmyrB .content-wrapper .line-wrapper .line-wrap {
  display: inline-flex;
  width: 1px;
  height: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uac0UPmyrB .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-uac0UPmyrB .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uac0UPmyrB .title-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #ffffff;
}
.cid-uac0UPmyrB .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uac0UPmyrB .mbr-section-title {
  color: #ffffff;
}
.cid-uac0UPmyrB .mbr-text {
  color: #665f6f;
}
.cid-uac0UPmyrB .mbr-section-title,
.cid-uac0UPmyrB .icon-wrapper {
  color: #00acb1;
}
.cid-ujdXLjCJEp {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #00acb1;
}
.cid-ujdXLjCJEp .item-subtitle {
  line-height: 1.2;
  color: #fafafa;
  text-align: left;
}
.cid-ujdXLjCJEp img,
.cid-ujdXLjCJEp .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-ujdXLjCJEp .item:focus,
.cid-ujdXLjCJEp span:focus {
  outline: none;
}
.cid-ujdXLjCJEp .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ujdXLjCJEp .item {
    margin-bottom: 1rem;
  }
}
.cid-ujdXLjCJEp .item-wrapper {
  position: relative;
  border-radius: 4px;
  display: flex;
  flex-flow: column nowrap;
}
.cid-ujdXLjCJEp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ujdXLjCJEp .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-ujdXLjCJEp .mbr-text,
.cid-ujdXLjCJEp .mbr-section-btn {
  color: #838383;
  text-align: left;
}
.cid-ujdXLjCJEp .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-ujdXLjCJEp .mbr-section-subtitle {
  color: #838383;
  text-align: left;
}
.cid-uje1DMDTBX {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #00acb1;
}
.cid-uje1DMDTBX .item-subtitle {
  line-height: 1.2;
  color: #fafafa;
  text-align: left;
}
.cid-uje1DMDTBX img,
.cid-uje1DMDTBX .item-img {
  width: 100%;
}
.cid-uje1DMDTBX .item:focus,
.cid-uje1DMDTBX span:focus {
  outline: none;
}
.cid-uje1DMDTBX .item {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uje1DMDTBX .item {
    margin-bottom: 1rem;
  }
}
.cid-uje1DMDTBX .item-wrapper {
  position: relative;
  border-radius: 4px;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uje1DMDTBX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uje1DMDTBX .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-uje1DMDTBX .mbr-text,
.cid-uje1DMDTBX .mbr-section-btn {
  color: #838383;
  text-align: left;
}
.cid-uje1DMDTBX .item-title {
  color: #ffffff;
  text-align: left;
}
.cid-uje1DMDTBX .mbr-section-subtitle {
  color: #838383;
  text-align: left;
}
.cid-uabHgnWqGf {
  background-color: #efefec;
}
.cid-uabHgnWqGf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uabHgnWqGf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uabHgnWqGf .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uabHgnWqGf .row {
  align-items: center;
}
.cid-uabHgnWqGf .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uabHgnWqGf .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uabHgnWqGf .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uabHgnWqGf .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uabHgnWqGf .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uabHgnWqGf .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uabHgnWqGf .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uabHgnWqGf .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uabHgnWqGf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uabHgnWqGf .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uabHgnWqGf .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uabHgnWqGf .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uabHgnWqGf .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uabHgnWqGf .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uabHgnWqGf .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uabHgnWqGf .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uabHgnWqGf .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uabHgnWqGf .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uabHgnWqGf .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uabHgnWqGf .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uabHgnWqGf .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uabHgnWqGf .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uabHgnWqGf .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uabHgnWqGf .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uabHgnWqGf .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uabHgnWqGf .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uabHgnWqGf .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uabHgnWqGf .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uabHgnWqGf .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uabHgnWqGf .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uabHgnWqGf .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uabHgnWqGf .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uabHgnWqGf .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uabHgnWqGf .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uabHgnWqGf .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uabHgnWqGf .contact-container {
    width: 100%;
  }
}
.cid-uabHgnWqGf .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uabHgnWqGf .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uabHgnWqGf .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uabHgnWqGf .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uabHgnWqGf .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uabHgnWqGf .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uabHgnWqGf .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uabHgnWqGf .copyright {
  color: #efefec;
}
.cid-uabHgnWqGf .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uabHgnWqGf .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uabHgnWqGf .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-ueqcx73iP2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-ueqcx73iP2 .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-ueqcx73iP2 nav.navbar {
  position: fixed;
}
.cid-ueqcx73iP2 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ueqcx73iP2 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ueqcx73iP2 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ueqcx73iP2 .dropdown-item:hover,
.cid-ueqcx73iP2 .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-ueqcx73iP2 .dropdown-item:hover span {
  color: white;
}
.cid-ueqcx73iP2 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ueqcx73iP2 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ueqcx73iP2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ueqcx73iP2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ueqcx73iP2 .nav-link {
  position: relative;
}
.cid-ueqcx73iP2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ueqcx73iP2 .container {
    flex-wrap: nowrap;
  }
}
.cid-ueqcx73iP2 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ueqcx73iP2 .dropdown-menu,
.cid-ueqcx73iP2 .navbar.opened {
  background: #ffffff !important;
}
.cid-ueqcx73iP2 .nav-item:focus,
.cid-ueqcx73iP2 .nav-link:focus {
  outline: none;
}
.cid-ueqcx73iP2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ueqcx73iP2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ueqcx73iP2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ueqcx73iP2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ueqcx73iP2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ueqcx73iP2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ueqcx73iP2 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ueqcx73iP2 .navbar.opened {
  transition: all 0.3s;
}
.cid-ueqcx73iP2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ueqcx73iP2 .navbar .navbar-logo img {
  width: auto;
}
.cid-ueqcx73iP2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ueqcx73iP2 .navbar.collapsed {
  justify-content: center;
}
.cid-ueqcx73iP2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ueqcx73iP2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ueqcx73iP2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-ueqcx73iP2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ueqcx73iP2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ueqcx73iP2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ueqcx73iP2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ueqcx73iP2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ueqcx73iP2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ueqcx73iP2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ueqcx73iP2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ueqcx73iP2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ueqcx73iP2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ueqcx73iP2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ueqcx73iP2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ueqcx73iP2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ueqcx73iP2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ueqcx73iP2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ueqcx73iP2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ueqcx73iP2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ueqcx73iP2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ueqcx73iP2 .navbar.navbar-short {
  min-height: 80px;
}
.cid-ueqcx73iP2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ueqcx73iP2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ueqcx73iP2 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ueqcx73iP2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ueqcx73iP2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ueqcx73iP2 .dropdown-item.active,
.cid-ueqcx73iP2 .dropdown-item:active {
  background-color: transparent;
}
.cid-ueqcx73iP2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ueqcx73iP2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ueqcx73iP2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ueqcx73iP2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ueqcx73iP2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ueqcx73iP2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ueqcx73iP2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ueqcx73iP2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ueqcx73iP2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ueqcx73iP2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-ueqcx73iP2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ueqcx73iP2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ueqcx73iP2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ueqcx73iP2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ueqcx73iP2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ueqcx73iP2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ueqcx73iP2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ueqcx73iP2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ueqcx73iP2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ueqcx73iP2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ueqcx73iP2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ueqcx73iP2 .navbar {
    height: 70px;
  }
  .cid-ueqcx73iP2 .navbar.opened {
    height: auto;
  }
  .cid-ueqcx73iP2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ueqcS4ZXs5 {
  padding-top: 225px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/03-1.jpg");
}
.cid-ueqcS4ZXs5 .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-ueqcS4ZXs5 .mbr-section-title {
  color: #130947;
  font-weight: 900;
  line-height: 1.09;
  letter-spacing: -1px;
}
.cid-ueqcS4ZXs5 .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-ueqcS4ZXs5 .mbr-text {
  color: #6d7a8c;
}
.cid-ueqcS4ZXs5 .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
  margin-left: 0.6rem;
}
.cid-ueqcS4ZXs5 .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-ueqcS4ZXs5 .mbr-section-btn {
  display: flex;
}
.cid-ueqcS4ZXs5 .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 2;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-ueqcS4ZXs5 .mbr-section-btn.display-4,
.cid-ueqcS4ZXs5 .btn.display-4 {
  font-size: 12px !important;
}
.cid-ueqcS4ZXs5 .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-ueqcS4ZXs5 .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-ueqcS4ZXs5 .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #4f87fb;
  position: absolute;
  top: 50%;
  left: 55 %;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-ueqcS4ZXs5 .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-ueqcS4ZXs5 .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-ueqcS4ZXs5 .video-wrap .icon-wrap span {
  font-weight: bold;
}
.cid-ueqcS4ZXs5 .video-wrap .mbr-text {
  line-height: 1.69;
  font-weight: 800;
  letter-spacing: 0px;
  color: #130947;
}
.cid-ueqcS4ZXs5 .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-ueqcS4ZXs5 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-ueqcS4ZXs5 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-ueqcS4ZXs5 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-ueqcS4ZXs5 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-ueqcS4ZXs5 .separator,
  .cid-ueqcS4ZXs5 .sep-holder,
  .cid-ueqcS4ZXs5 .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-ueqcS4ZXs5 .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-ueqcS4ZXs5 .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-ueqcUlPOP0 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ueqcUlPOP0 .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-ueqcUlPOP0 .wrap-block .contents {
  margin-bottom: 40px;
}
.cid-ueqcUlPOP0 .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-ueqcUlPOP0 .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-ueqcUlPOP0 .mbr-section-title {
  margin-bottom: 10px;
  color: #130947;
  font-weight: 700;
}
.cid-ueqcUlPOP0 .mbr-section-title.display-2 {
  font-size: 35px;
  line-height: 1.29;
  letter-spacing: -0.5px;
}
.cid-ueqcUlPOP0 .mbr-section-text {
  color: #6d7a8c;
  line-height: 1.5;
  margin-top: 10px;
}
.cid-ueqcUlPOP0 .boldSubtitle {
  color: #130947;
}
.cid-ueqcUlPOP0 .info-widget {
  padding-top: 0.5rem;
}
.cid-ueqcUlPOP0 .info-widget .widget-icon {
  display: inline-block;
  font-size: 1.75rem;
  color: #4f87fb;
  margin-right: 15px;
  vertical-align: middle;
}
.cid-ueqcUlPOP0 .info-widget .signature {
  width: 35%;
  height: 75px;
  display: inline-block;
  margin-right: 15px;
  object-fit: contain;
}
.cid-ueqcUlPOP0 .info-widget .widget-content {
  vertical-align: middle;
  display: inline-block;
}
.cid-ueqcUlPOP0 .info-widget .widget-content .widget-title {
  color: #130947;
  margin-bottom: 0;
  font-weight: 700;
}
.cid-ueqcUlPOP0 .info-widget .widget-content .widget-title.display-7 {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: -0.5px;
}
.cid-ueqcUlPOP0 .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  color: #7e7e7e;
  font-weight: 700;
}
.cid-ueqcUlPOP0 .info-widget .widget-content .widget-text.display-4 {
  line-height: 1.71;
  letter-spacing: -0.5px;
}
.cid-ueqcUlPOP0 .info-widget--right {
  margin-top: 30px;
  padding-top: 0;
}
.cid-ueqcUlPOP0 .info-widget--right .widget-content .widget-title {
  margin-bottom: 0 !important;
  color: #130947;
  font-weight: 700;
}
.cid-ueqcUlPOP0 .info-widget--right .widget-content .widget-title.display-7 {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.5px;
}
@media (max-width: 500px) {
  .cid-ueqcUlPOP0 .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-ueqcUlPOP0 .mbr-section-title,
  .cid-ueqcUlPOP0 .mbr-section-subtitle,
  .cid-ueqcUlPOP0 .mbr-text {
    text-align: left !important;
  }
  .cid-ueqcUlPOP0 .social-list {
    text-align: left !important;
  }
}
.cid-ueqcVsXh0D {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ueqcVsXh0D .title-text {
  margin-bottom: 70px;
}
.cid-ueqcVsXh0D .title-text .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-ueqcVsXh0D .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-ueqcVsXh0D .title-text .mbr-section-title {
  color: #130947;
}
.cid-ueqcVsXh0D .title-text .mbr-section-title span {
  font-weight: 900;
}
.cid-ueqcVsXh0D .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-ueqcVsXh0D .mbr-iconfont {
  font-family: 'Moririse2' !important;
  display: inline-flex;
  -webkit-transform-origin: ;
  transform-origin: ;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 !important;
  font-size: 1.4rem !important;
  color: #222222;
}
.cid-ueqcVsXh0D .mbr-iconfont:before {
  -webkit-transform: scaleY(0) !important;
  transform: scaleY(0) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-ueqcVsXh0D .collapsed .mbr-iconfont {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.cid-ueqcVsXh0D .collapsed .mbr-iconfont:before {
  -webkit-transform: scaleY(1) !important;
  transform: scaleY(1) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-ueqcVsXh0D .accordion-content {
  flex-basis: 100%;
}
.cid-ueqcVsXh0D .panel-group {
  width: 100%;
}
.cid-ueqcVsXh0D .panel-text,
.cid-ueqcVsXh0D .header-text,
.cid-ueqcVsXh0D .mbr-section-subtitle {
  color: #222222;
}
.cid-ueqcVsXh0D .card {
  margin-bottom: 30px;
  margin-top: 30px;
  border: none;
  border-radius: 0 !important;
}
.cid-ueqcVsXh0D .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-ueqcVsXh0D .card .card-header a.panel-title {
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #f1f1f1;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  text-decoration: none !important;
  border-radius: 0 !important;
  line-height: normal;
}
.cid-ueqcVsXh0D .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-ueqcVsXh0D .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-ueqcVsXh0D .card .card-header a.panel-title h4 {
  padding: 17px 42px 17px 35px;
  margin-bottom: 0;
  width: 100%;
  line-height: 1.5;
  font-weight: 400 !important;
}
.cid-ueqcVsXh0D .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  line-height: 1.6 !important;
}
.cid-ueqcVsXh0D .card .card-header a.panel-title .toggle-icon {
  right: 20px;
  position: absolute;
  top: 29px;
  -webkit-transform: none;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
}
.cid-ueqcVsXh0D .card .card-header a.panel-title .toggle-icon:before,
.cid-ueqcVsXh0D .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-ueqcVsXh0D .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  -webkit-transform: none;
  transform: none;
}
.cid-ueqcVsXh0D .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-ueqcVsXh0D .card .card-header a.panel-title[aria-expanded='true'] {
  background-color: #4f87fb;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-ueqcVsXh0D .card .card-header a.panel-title[aria-expanded='true'] .header-text,
.cid-ueqcVsXh0D .card .card-header a.panel-title[aria-expanded='true'] .sign {
  color: #ffffff !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-ueqcVsXh0D .card .panel-body {
  background: #ffffff;
  padding: 30px 55px 35px 40px !important;
}
.cid-ueqcVsXh0D .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-ueqcx8qkvS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ueqcx8qkvS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueqcx8qkvS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ueqcx8qkvS .container {
    padding: 0 22px;
  }
}
.cid-ueqcx8qkvS .row {
  justify-content: center;
}
.cid-ueqcx8qkvS .content-wrapper .line-wrapper {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-ueqcx8qkvS .content-wrapper .line-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ueqcx8qkvS .content-wrapper .line-wrapper .line-wrap {
  display: inline-flex;
  width: 1px;
  height: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ueqcx8qkvS .title-wrapper {
    margin-bottom: 20px;
  }
}
.cid-ueqcx8qkvS .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ueqcx8qkvS .title-wrapper .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #ffffff;
}
.cid-ueqcx8qkvS .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ueqcx8qkvS .mbr-section-title {
  color: #ffffff;
}
.cid-ueqcx8qkvS .mbr-text {
  color: #665f6f;
}
.cid-ueqcx8qkvS .mbr-section-title,
.cid-ueqcx8qkvS .icon-wrapper {
  color: #00acb1;
}
.cid-ueqcx9kf6a {
  background-color: #efefec;
}
.cid-ueqcx9kf6a .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueqcx9kf6a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueqcx9kf6a .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-ueqcx9kf6a .row {
  align-items: center;
}
.cid-ueqcx9kf6a .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-ueqcx9kf6a .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-ueqcx9kf6a .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-ueqcx9kf6a .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-ueqcx9kf6a .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-ueqcx9kf6a .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-ueqcx9kf6a .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-ueqcx9kf6a .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-ueqcx9kf6a .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ueqcx9kf6a .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ueqcx9kf6a .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-ueqcx9kf6a .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-ueqcx9kf6a .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-ueqcx9kf6a .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-ueqcx9kf6a .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-ueqcx9kf6a .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ueqcx9kf6a .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-ueqcx9kf6a .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-ueqcx9kf6a .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-ueqcx9kf6a .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-ueqcx9kf6a .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-ueqcx9kf6a .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-ueqcx9kf6a .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-ueqcx9kf6a .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-ueqcx9kf6a .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-ueqcx9kf6a .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-ueqcx9kf6a .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-ueqcx9kf6a .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-ueqcx9kf6a .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-ueqcx9kf6a .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-ueqcx9kf6a .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-ueqcx9kf6a .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-ueqcx9kf6a .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-ueqcx9kf6a .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ueqcx9kf6a .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-ueqcx9kf6a .contact-container {
    width: 100%;
  }
}
.cid-ueqcx9kf6a .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-ueqcx9kf6a .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-ueqcx9kf6a .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-ueqcx9kf6a .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-ueqcx9kf6a .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-ueqcx9kf6a .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-ueqcx9kf6a .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-ueqcx9kf6a .copyright {
  color: #efefec;
}
.cid-ueqcx9kf6a .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-ueqcx9kf6a .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-ueqcx9kf6a .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uhx32S18rU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uhx32S18rU .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uhx32S18rU nav.navbar {
  position: fixed;
}
.cid-uhx32S18rU .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhx32S18rU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uhx32S18rU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uhx32S18rU .dropdown-item:hover,
.cid-uhx32S18rU .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uhx32S18rU .dropdown-item:hover span {
  color: white;
}
.cid-uhx32S18rU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uhx32S18rU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uhx32S18rU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uhx32S18rU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uhx32S18rU .nav-link {
  position: relative;
}
.cid-uhx32S18rU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uhx32S18rU .container {
    flex-wrap: nowrap;
  }
}
.cid-uhx32S18rU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uhx32S18rU .dropdown-menu,
.cid-uhx32S18rU .navbar.opened {
  background: #ffffff !important;
}
.cid-uhx32S18rU .nav-item:focus,
.cid-uhx32S18rU .nav-link:focus {
  outline: none;
}
.cid-uhx32S18rU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uhx32S18rU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uhx32S18rU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uhx32S18rU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uhx32S18rU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uhx32S18rU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uhx32S18rU .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uhx32S18rU .navbar.opened {
  transition: all 0.3s;
}
.cid-uhx32S18rU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uhx32S18rU .navbar .navbar-logo img {
  width: auto;
}
.cid-uhx32S18rU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uhx32S18rU .navbar.collapsed {
  justify-content: center;
}
.cid-uhx32S18rU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uhx32S18rU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uhx32S18rU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uhx32S18rU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uhx32S18rU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uhx32S18rU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uhx32S18rU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uhx32S18rU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uhx32S18rU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uhx32S18rU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uhx32S18rU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uhx32S18rU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uhx32S18rU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uhx32S18rU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uhx32S18rU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uhx32S18rU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uhx32S18rU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uhx32S18rU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uhx32S18rU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uhx32S18rU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uhx32S18rU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uhx32S18rU .navbar.navbar-short {
  min-height: 80px;
}
.cid-uhx32S18rU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uhx32S18rU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uhx32S18rU .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uhx32S18rU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uhx32S18rU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhx32S18rU .dropdown-item.active,
.cid-uhx32S18rU .dropdown-item:active {
  background-color: transparent;
}
.cid-uhx32S18rU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uhx32S18rU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uhx32S18rU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uhx32S18rU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uhx32S18rU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uhx32S18rU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uhx32S18rU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uhx32S18rU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uhx32S18rU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uhx32S18rU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uhx32S18rU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uhx32S18rU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhx32S18rU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uhx32S18rU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uhx32S18rU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhx32S18rU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uhx32S18rU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uhx32S18rU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uhx32S18rU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uhx32S18rU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhx32S18rU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uhx32S18rU .navbar {
    height: 70px;
  }
  .cid-uhx32S18rU .navbar.opened {
    height: auto;
  }
  .cid-uhx32S18rU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uUtBn6mLxy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-6-1920x1280.jpeg");
}
.cid-uUtBn6mLxy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUtBn6mLxy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUtBn6mLxy .items-wrap {
  justify-content: space-between;
}
.cid-uUtBn6mLxy .title-wrapper {
  margin-bottom: 32px;
}
.cid-uUtBn6mLxy .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uUtBn6mLxy .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uUtBn6mLxy .text-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uUtBn6mLxy .text-wrapper .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-uUtBn6mLxy .mbr-figure iframe {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uUtBn6mLxy .video-block {
    margin-bottom: 24px;
  }
}
.cid-uUtBn6mLxy .mbr-figure__img {
  object-fit: cover;
}
.cid-uUtBn6mLxy .app-video-wrapper::before {
  color: #e7ff34;
  box-shadow: none;
}
.cid-uUtBn6mLxy .mbr-section-title {
  color: #000000;
}
.cid-uUtBn6mLxy .mbr-text {
  color: #000000;
}
.cid-uUtBn6mLxy .mbr-section-title,
.cid-uUtBn6mLxy .mbr-section-btn {
  color: #ffffff;
}
.cid-uUtBn6mLxy .mbr-text,
.cid-uUtBn6mLxy .text-wrapper {
  color: #ffffff;
}
.cid-uUt20A7ift {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uUt20A7ift .row {
    flex-direction: column-reverse;
  }
}
.cid-uUt20A7ift .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUt20A7ift .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUt20A7ift .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uUt20A7ift .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uUt20A7ift .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uUt20A7ift .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uUt20A7ift .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uUt20A7ift .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uUt20A7ift .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uUt20A7ift .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uUt20A7ift .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uUt20A7ift .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-uUt20A7ift .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uUt20A7ift .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-uUt20A7ift .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-uUt20A7ift .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uUt20A7ift .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-uUt20A7ift .image-wrapper img {
    min-height: 100%;
  }
}
.cid-uUt20A7ift .mbr-section-title {
  color: #000000;
}
.cid-uUt20A7ift .mbr-text {
  color: #00acb1;
}
.cid-uUt20A7ift .mbr-section-title,
.cid-uUt20A7ift .mbr-section-btn {
  color: #00acb1;
}
.cid-uUtFxGqKHS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uUtFxGqKHS .row {
    flex-direction: column-reverse;
  }
}
.cid-uUtFxGqKHS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUtFxGqKHS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUtFxGqKHS .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uUtFxGqKHS .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uUtFxGqKHS .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uUtFxGqKHS .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uUtFxGqKHS .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uUtFxGqKHS .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uUtFxGqKHS .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-uUtFxGqKHS .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uUtFxGqKHS .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uUtFxGqKHS .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uUtFxGqKHS .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-uUtFxGqKHS .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uUtFxGqKHS .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-uUtFxGqKHS .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-uUtFxGqKHS .image-wrapper {
    margin: 30px;
  }
}
.cid-uUtFxGqKHS .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uUtFxGqKHS .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-uUtFxGqKHS .image-wrapper img {
    min-height: 100%;
  }
}
.cid-uUtFxGqKHS .mbr-section-title {
  color: #000000;
}
.cid-uUtFxGqKHS .mbr-text {
  color: #00acb1;
}
.cid-uUtFxGqKHS .mbr-section-title,
.cid-uUtFxGqKHS .mbr-section-btn {
  color: #00acb1;
}
.cid-uUtIcgzCma {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uUtIcgzCma .row {
    flex-direction: column-reverse;
  }
}
.cid-uUtIcgzCma .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUtIcgzCma .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUtIcgzCma .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uUtIcgzCma .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uUtIcgzCma .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uUtIcgzCma .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uUtIcgzCma .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uUtIcgzCma .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uUtIcgzCma .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uUtIcgzCma .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uUtIcgzCma .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uUtIcgzCma .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-uUtIcgzCma .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uUtIcgzCma .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-uUtIcgzCma .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-uUtIcgzCma .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uUtIcgzCma .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-uUtIcgzCma .image-wrapper img {
    min-height: 100%;
  }
}
.cid-uUtIcgzCma .mbr-section-title {
  color: #000000;
}
.cid-uUtIcgzCma .mbr-text {
  color: #00acb1;
}
.cid-uUtIcgzCma .mbr-section-title,
.cid-uUtIcgzCma .mbr-section-btn {
  color: #00acb1;
}
.cid-uWaYj3z4km {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uWaYj3z4km .row {
    flex-direction: column-reverse;
  }
}
.cid-uWaYj3z4km .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWaYj3z4km .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWaYj3z4km .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uWaYj3z4km .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uWaYj3z4km .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uWaYj3z4km .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uWaYj3z4km .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uWaYj3z4km .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uWaYj3z4km .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-uWaYj3z4km .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uWaYj3z4km .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uWaYj3z4km .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uWaYj3z4km .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-uWaYj3z4km .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uWaYj3z4km .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-uWaYj3z4km .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-uWaYj3z4km .image-wrapper {
    margin: 30px;
  }
}
.cid-uWaYj3z4km .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uWaYj3z4km .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-uWaYj3z4km .image-wrapper img {
    min-height: 100%;
  }
}
.cid-uWaYj3z4km .mbr-section-title {
  color: #000000;
}
.cid-uWaYj3z4km .mbr-text {
  color: #00acb1;
}
.cid-uWaYj3z4km .mbr-section-title,
.cid-uWaYj3z4km .mbr-section-btn {
  color: #00acb1;
}
.cid-uUu0SAClX2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uUu0SAClX2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUu0SAClX2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUu0SAClX2 .row {
  justify-content: space-between;
}
.cid-uUu0SAClX2 .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #e4ed64;
}
@media (max-width: 992px) {
  .cid-uUu0SAClX2 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uUu0SAClX2 .content-wrapper .mbr-desc {
  margin-bottom: 20px;
}
.cid-uUu0SAClX2 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uUu0SAClX2 .content-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-uUu0SAClX2 .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-uUu0SAClX2 .mbr-label {
  color: #000000;
}
.cid-uUu0SAClX2 .mbr-section-title {
  color: #000000;
}
.cid-uUu0SAClX2 .mbr-desc {
  color: #000000;
}
.cid-uUu0SAClX2 .mbr-text {
  color: #8a8a8a;
}
.cid-va1nPLwOqA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f1f3;
}
.cid-va1nPLwOqA .mbr-fallback-image.disabled {
  display: none;
}
.cid-va1nPLwOqA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va1nPLwOqA .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-va1nPLwOqA .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-va1nPLwOqA .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-va1nPLwOqA .panel-group .card {
    padding: 20px 0;
  }
}
.cid-va1nPLwOqA .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-va1nPLwOqA .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-va1nPLwOqA .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-va1nPLwOqA .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-va1nPLwOqA .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-va1nPLwOqA .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-va1nPLwOqA .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-va1nPLwOqA .mbr-section-title {
  color: #19171c;
}
.cid-va1nPLwOqA .panel-title {
  color: #19171c;
}
.cid-va1nPLwOqA .panel-text {
  color: #6e6e73;
}
.cid-uhx32TgS0i {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-uhx32TgS0i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhx32TgS0i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhx32TgS0i .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uhx32TgS0i .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uhx32TgS0i .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uhx32TgS0i .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-uhx32TgS0i .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uhx32TgS0i .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uhx32TgS0i .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-uhx32TgS0i .mbr-section-title {
  color: #FFFFFF;
}
.cid-uhx32TgS0i .mbr-desc {
  color: #FFFFFF;
}
.cid-uhx32TgS0i .mbr-text {
  color: #FFFFFF;
}
.cid-uhxlA41Pcu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uhxlA41Pcu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhxlA41Pcu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhxlA41Pcu .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uhxlA41Pcu .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhxlA41Pcu .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uhxlA41Pcu .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhxlA41Pcu .container {
    padding: 0 24px;
  }
}
.cid-uhxlA41Pcu .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 1440px) {
  .cid-uhxlA41Pcu .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uhxlA41Pcu .items-wrapper {
    grid-template-columns: 1fr;
  }
}
.cid-uhxlA41Pcu .item .item-wrapper .item-img {
  display: flex;
  align-items: flex-end;
  height: 630px;
  position: relative;
  padding: 32px;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-uhxlA41Pcu .item .item-wrapper .item-img {
    height: 350px;
    padding: 24px;
  }
}
.cid-uhxlA41Pcu .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uhxlA41Pcu .item .item-wrapper .item-img a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-uhxlA41Pcu .item .item-wrapper .item-img .date-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
}
.cid-uhxlA41Pcu .item .item-wrapper .item-img .date-wrapper .item-date {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 0;
  border-radius: 500px;
  z-index: 1;
  -webkit-backdrop-filter: blur(2rem);
  backdrop-filter: blur(2rem);
}
.cid-uhxlA41Pcu .item .item-wrapper .item-img .date-wrapper .item-date::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #ffffff;
  opacity: .12;
  pointer-events: none;
}
.cid-uhxlA41Pcu .item .item-wrapper .item-content {
  position: relative;
  padding: 32px;
  border-radius: 2rem;
  background-color: #fbfaf9;
  border: 1px solid #edeceb;
}
@media (max-width: 992px) {
  .cid-uhxlA41Pcu .item .item-wrapper .item-content {
    padding: 24px;
  }
}
.cid-uhxlA41Pcu .item .item-wrapper .item-content .item-title {
  margin-bottom: 16px;
}
.cid-uhxlA41Pcu .item .item-wrapper .item-content .item-text {
  margin-bottom: 16px;
  opacity: .5;
}
.cid-uhxlA41Pcu .item .item-wrapper .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uhxlA41Pcu .item-title {
  color: #18212d;
}
.cid-uhxlA41Pcu .item-text {
  color: #18212d;
}
.cid-uhxlA41Pcu .item-date {
  color: #ffffff;
}
.cid-uhx32UQmAx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-uhx32UQmAx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhx32UQmAx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhx32UQmAx .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uhx32UQmAx .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uhx32UQmAx .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uhx32UQmAx .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-uhx32UQmAx .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uhx32UQmAx .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uhx32UQmAx .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-uhx32UQmAx .mbr-section-title {
  color: #FFFFFF;
}
.cid-uhx32UQmAx .mbr-desc {
  color: #FFFFFF;
}
.cid-uhx32UQmAx .mbr-text {
  color: #FFFFFF;
}
.cid-uhx32VBebX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #87e4db;
}
@media (max-width: 992px) {
  .cid-uhx32VBebX .form-title,
  .cid-uhx32VBebX .form-wrapper {
    padding: 0;
  }
}
.cid-uhx32VBebX .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uhx32VBebX .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uhx32VBebX .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uhx32VBebX .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uhx32VBebX .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-uhx32VBebX .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-uhx32VBebX .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uhx32VBebX .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uhx32VBebX .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uhx32VBebX .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-uhx32VBebX .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-uhx32VBebX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uhx32VBebX .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-uhx32VBebX .mbr-form {
    margin: 0 30px;
  }
}
.cid-uhx32VBebX .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uhx32VBebX .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uhx32VBebX .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-uhx32VBebX .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-uhx32VBebX .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-uhx32VBebX .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-uhx32VBebX .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-uhx32VBebX .mbr-section-title {
  color: #00acb1;
}
.cid-uhx32VBebX .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uhx32WnVGj {
  background-color: #efefec;
}
.cid-uhx32WnVGj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhx32WnVGj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhx32WnVGj .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uhx32WnVGj .row {
  align-items: center;
}
.cid-uhx32WnVGj .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uhx32WnVGj .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uhx32WnVGj .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uhx32WnVGj .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uhx32WnVGj .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uhx32WnVGj .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uhx32WnVGj .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uhx32WnVGj .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uhx32WnVGj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uhx32WnVGj .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uhx32WnVGj .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uhx32WnVGj .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uhx32WnVGj .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uhx32WnVGj .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uhx32WnVGj .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uhx32WnVGj .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uhx32WnVGj .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uhx32WnVGj .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uhx32WnVGj .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uhx32WnVGj .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uhx32WnVGj .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uhx32WnVGj .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uhx32WnVGj .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uhx32WnVGj .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uhx32WnVGj .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uhx32WnVGj .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uhx32WnVGj .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uhx32WnVGj .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uhx32WnVGj .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uhx32WnVGj .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uhx32WnVGj .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uhx32WnVGj .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uhx32WnVGj .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uhx32WnVGj .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uhx32WnVGj .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uhx32WnVGj .contact-container {
    width: 100%;
  }
}
.cid-uhx32WnVGj .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uhx32WnVGj .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uhx32WnVGj .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uhx32WnVGj .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uhx32WnVGj .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uhx32WnVGj .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uhx32WnVGj .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uhx32WnVGj .copyright {
  color: #efefec;
}
.cid-uhx32WnVGj .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uhx32WnVGj .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uhx32WnVGj .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-ujqIQyp0eO {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-ujqIQyp0eO .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-ujqIQyp0eO nav.navbar {
  position: fixed;
}
.cid-ujqIQyp0eO .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujqIQyp0eO .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ujqIQyp0eO .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ujqIQyp0eO .dropdown-item:hover,
.cid-ujqIQyp0eO .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-ujqIQyp0eO .dropdown-item:hover span {
  color: white;
}
.cid-ujqIQyp0eO .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ujqIQyp0eO .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ujqIQyp0eO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ujqIQyp0eO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ujqIQyp0eO .nav-link {
  position: relative;
}
.cid-ujqIQyp0eO .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ujqIQyp0eO .container {
    flex-wrap: nowrap;
  }
}
.cid-ujqIQyp0eO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ujqIQyp0eO .dropdown-menu,
.cid-ujqIQyp0eO .navbar.opened {
  background: #ffffff !important;
}
.cid-ujqIQyp0eO .nav-item:focus,
.cid-ujqIQyp0eO .nav-link:focus {
  outline: none;
}
.cid-ujqIQyp0eO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ujqIQyp0eO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ujqIQyp0eO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ujqIQyp0eO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujqIQyp0eO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ujqIQyp0eO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ujqIQyp0eO .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ujqIQyp0eO .navbar.opened {
  transition: all 0.3s;
}
.cid-ujqIQyp0eO .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ujqIQyp0eO .navbar .navbar-logo img {
  width: auto;
}
.cid-ujqIQyp0eO .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ujqIQyp0eO .navbar.collapsed {
  justify-content: center;
}
.cid-ujqIQyp0eO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ujqIQyp0eO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ujqIQyp0eO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-ujqIQyp0eO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ujqIQyp0eO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ujqIQyp0eO .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ujqIQyp0eO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ujqIQyp0eO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ujqIQyp0eO .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ujqIQyp0eO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ujqIQyp0eO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ujqIQyp0eO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ujqIQyp0eO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ujqIQyp0eO .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ujqIQyp0eO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ujqIQyp0eO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ujqIQyp0eO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ujqIQyp0eO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ujqIQyp0eO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ujqIQyp0eO .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ujqIQyp0eO .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ujqIQyp0eO .navbar.navbar-short {
  min-height: 80px;
}
.cid-ujqIQyp0eO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ujqIQyp0eO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ujqIQyp0eO .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ujqIQyp0eO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ujqIQyp0eO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujqIQyp0eO .dropdown-item.active,
.cid-ujqIQyp0eO .dropdown-item:active {
  background-color: transparent;
}
.cid-ujqIQyp0eO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ujqIQyp0eO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ujqIQyp0eO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ujqIQyp0eO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ujqIQyp0eO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ujqIQyp0eO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujqIQyp0eO ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ujqIQyp0eO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ujqIQyp0eO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ujqIQyp0eO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-ujqIQyp0eO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ujqIQyp0eO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujqIQyp0eO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujqIQyp0eO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ujqIQyp0eO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujqIQyp0eO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ujqIQyp0eO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ujqIQyp0eO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujqIQyp0eO .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ujqIQyp0eO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujqIQyp0eO .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ujqIQyp0eO .navbar {
    height: 70px;
  }
  .cid-ujqIQyp0eO .navbar.opened {
    height: auto;
  }
  .cid-ujqIQyp0eO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujqIQz5YVj {
  background-image: url("../../../assets/images/404-error-pre-employment-medicals-in-parramatta-and-sydney-nurse1-2000x1333.jpg");
}
.cid-ujqIQz5YVj .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujqIQz5YVj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujqIQz5YVj .container-fluid {
  margin: 0;
  padding: 0 72px;
}
@media (max-width: 992px) {
  .cid-ujqIQz5YVj .container-fluid {
    padding: 0 20px;
  }
}
.cid-ujqIQz5YVj .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-ujqIQz5YVj .container {
    padding: 0 20px;
  }
  .cid-ujqIQz5YVj .container .row {
    padding: 0;
  }
}
.cid-ujqIQz5YVj .title-wrapper .mbr-section-title {
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-ujqIQz5YVj .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-ujqIQz5YVj .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ujqIQz5YVj .text-wrapper .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-ujqIQz5YVj .text-wrapper .mbr-section-btn .btn .mbr-iconfont {
  color: #46414c;
}
.cid-ujqIQz5YVj .mbr-section-title {
  color: #00acb1;
}
.cid-ujqIQz5YVj .mbr-text {
  color: #ffffff;
}
.cid-ujqIQz5YVj .mbr-text,
.cid-ujqIQz5YVj .mbr-section-btn {
  color: #46414c;
}
.cid-ujqIQIsaLr {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-ujqIQIsaLr .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #87e4db none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-ujqIQIsaLr .mbr-iconfont {
  align-items: center;
}
.cid-ujqIQIsaLr .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-ujqIQIsaLr .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-ujqIQIsaLr .icon-transition span:hover {
  background-color: #000000;
  color: #87e4db;
}
.cid-ujqIQIsaLr .social-media {
  padding: 0;
}
.cid-ujqIQIsaLr .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-ujqIQIsaLr .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-ujqIQIsaLr .mbr-list,
.cid-ujqIQIsaLr .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-ujqIQIsaLr .social-list {
    text-align: center !important;
  }
}
.cid-ujqIQIsaLr .mbr-section-title,
.cid-ujqIQIsaLr .social-list {
  color: #00acb1;
}
.cid-ujqIQLQITT {
  background-color: #efefec;
}
.cid-ujqIQLQITT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujqIQLQITT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujqIQLQITT .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-ujqIQLQITT .row {
  align-items: center;
}
.cid-ujqIQLQITT .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-ujqIQLQITT .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-ujqIQLQITT .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-ujqIQLQITT .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-ujqIQLQITT .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-ujqIQLQITT .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-ujqIQLQITT .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-ujqIQLQITT .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-ujqIQLQITT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujqIQLQITT .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ujqIQLQITT .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-ujqIQLQITT .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-ujqIQLQITT .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-ujqIQLQITT .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-ujqIQLQITT .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-ujqIQLQITT .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujqIQLQITT .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-ujqIQLQITT .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-ujqIQLQITT .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-ujqIQLQITT .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-ujqIQLQITT .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-ujqIQLQITT .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-ujqIQLQITT .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-ujqIQLQITT .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-ujqIQLQITT .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-ujqIQLQITT .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-ujqIQLQITT .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-ujqIQLQITT .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-ujqIQLQITT .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-ujqIQLQITT .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-ujqIQLQITT .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-ujqIQLQITT .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-ujqIQLQITT .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-ujqIQLQITT .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ujqIQLQITT .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-ujqIQLQITT .contact-container {
    width: 100%;
  }
}
.cid-ujqIQLQITT .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-ujqIQLQITT .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-ujqIQLQITT .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-ujqIQLQITT .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-ujqIQLQITT .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-ujqIQLQITT .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-ujqIQLQITT .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-ujqIQLQITT .copyright {
  color: #efefec;
}
.cid-ujqIQLQITT .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-ujqIQLQITT .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-ujqIQLQITT .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-ukEa1PtD2K {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-ukEa1PtD2K .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-ukEa1PtD2K nav.navbar {
  position: fixed;
}
.cid-ukEa1PtD2K .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukEa1PtD2K .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ukEa1PtD2K .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ukEa1PtD2K .dropdown-item:hover,
.cid-ukEa1PtD2K .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-ukEa1PtD2K .dropdown-item:hover span {
  color: white;
}
.cid-ukEa1PtD2K .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ukEa1PtD2K .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ukEa1PtD2K .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ukEa1PtD2K .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ukEa1PtD2K .nav-link {
  position: relative;
}
.cid-ukEa1PtD2K .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ukEa1PtD2K .container {
    flex-wrap: nowrap;
  }
}
.cid-ukEa1PtD2K .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ukEa1PtD2K .dropdown-menu,
.cid-ukEa1PtD2K .navbar.opened {
  background: #ffffff !important;
}
.cid-ukEa1PtD2K .nav-item:focus,
.cid-ukEa1PtD2K .nav-link:focus {
  outline: none;
}
.cid-ukEa1PtD2K .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ukEa1PtD2K .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ukEa1PtD2K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ukEa1PtD2K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ukEa1PtD2K .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ukEa1PtD2K .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ukEa1PtD2K .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ukEa1PtD2K .navbar.opened {
  transition: all 0.3s;
}
.cid-ukEa1PtD2K .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ukEa1PtD2K .navbar .navbar-logo img {
  width: auto;
}
.cid-ukEa1PtD2K .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ukEa1PtD2K .navbar.collapsed {
  justify-content: center;
}
.cid-ukEa1PtD2K .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ukEa1PtD2K .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ukEa1PtD2K .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-ukEa1PtD2K .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ukEa1PtD2K .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ukEa1PtD2K .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ukEa1PtD2K .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ukEa1PtD2K .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ukEa1PtD2K .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ukEa1PtD2K .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ukEa1PtD2K .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ukEa1PtD2K .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ukEa1PtD2K .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ukEa1PtD2K .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ukEa1PtD2K .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ukEa1PtD2K .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ukEa1PtD2K .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ukEa1PtD2K .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ukEa1PtD2K .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ukEa1PtD2K .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ukEa1PtD2K .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ukEa1PtD2K .navbar.navbar-short {
  min-height: 80px;
}
.cid-ukEa1PtD2K .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ukEa1PtD2K .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ukEa1PtD2K .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ukEa1PtD2K .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ukEa1PtD2K .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukEa1PtD2K .dropdown-item.active,
.cid-ukEa1PtD2K .dropdown-item:active {
  background-color: transparent;
}
.cid-ukEa1PtD2K .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ukEa1PtD2K .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ukEa1PtD2K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ukEa1PtD2K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ukEa1PtD2K .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ukEa1PtD2K .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ukEa1PtD2K ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ukEa1PtD2K .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ukEa1PtD2K button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ukEa1PtD2K button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-ukEa1PtD2K button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ukEa1PtD2K button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukEa1PtD2K button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ukEa1PtD2K button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ukEa1PtD2K nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukEa1PtD2K nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ukEa1PtD2K nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ukEa1PtD2K nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ukEa1PtD2K .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ukEa1PtD2K a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukEa1PtD2K .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ukEa1PtD2K .navbar {
    height: 70px;
  }
  .cid-ukEa1PtD2K .navbar.opened {
    height: auto;
  }
  .cid-ukEa1PtD2K .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ukEa1QeCRM {
  background-image: url("../../../assets/images/rescue-worker-2023-11-27-05-05-17-utc-2000x1331.jpg");
}
.cid-ukEa1QeCRM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEa1QeCRM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukEa1QeCRM .mbr-section-title {
  color: #FFFFFF;
}
.cid-ukEa1QeCRM .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-ukEa1QeCRM .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-ukEa1QeCRM .mbr-section-btn {
  margin-top: 18px;
}
.cid-ukEa1QeCRM .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-ukEa1QeCRM .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-um9wC8qAcT {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1318.jpeg");
}
.cid-um9wC8qAcT .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-um9wC8qAcT .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-um9wC8qAcT .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-um9wC8qAcT .container {
    padding: 0 24px;
  }
}
.cid-um9wC8qAcT .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-um9wC8qAcT .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-um9wC8qAcT .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-um9wC8qAcT .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-um9wC8qAcT .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-um9wC8qAcT .mbr-section-btn {
    text-align: left;
  }
}
.cid-um9wC8qAcT .mbr-section-title {
  color: #F9F6E0;
}
.cid-um9wC8qAcT .mbr-text {
  color: #ffffff;
}
.cid-um9wC8qAcT .mbr-section-title,
.cid-um9wC8qAcT .mbr-section-btn {
  color: #ffffff;
}
.cid-ukEa1R7M2z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-ukEa1R7M2z .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEa1R7M2z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukEa1R7M2z .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-ukEa1R7M2z .text-wrapper {
    margin: 0 30px;
  }
}
.cid-ukEa1R7M2z .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-ukEa1R7M2z .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-ukEa1R7M2z .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ukEa1R7M2z .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-ukEa1R7M2z .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-ukEa1R7M2z .mbr-section-title {
  color: #FFFFFF;
}
.cid-ukEa1R7M2z .mbr-desc {
  color: #FFFFFF;
}
.cid-ukEa1R7M2z .mbr-text {
  color: #FFFFFF;
}
.cid-ukEqtyjJ5A {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #87e4db;
}
@media (max-width: 992px) {
  .cid-ukEqtyjJ5A .form-title,
  .cid-ukEqtyjJ5A .form-wrapper {
    padding: 0;
  }
}
.cid-ukEqtyjJ5A .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-ukEqtyjJ5A .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-ukEqtyjJ5A .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-ukEqtyjJ5A .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-ukEqtyjJ5A .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-ukEqtyjJ5A .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-ukEqtyjJ5A .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-ukEqtyjJ5A .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-ukEqtyjJ5A .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-ukEqtyjJ5A .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-ukEqtyjJ5A .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-ukEqtyjJ5A .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-ukEqtyjJ5A .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-ukEqtyjJ5A .mbr-form {
    margin: 0 30px;
  }
}
.cid-ukEqtyjJ5A .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ukEqtyjJ5A .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-ukEqtyjJ5A .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-ukEqtyjJ5A .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-ukEqtyjJ5A .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-ukEqtyjJ5A .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-ukEqtyjJ5A .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-ukEqtyjJ5A .mbr-section-title {
  color: #00acb1;
}
.cid-ukEqtyjJ5A .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-um9zNxxmPt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1318.jpeg");
}
.cid-um9zNxxmPt .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-um9zNxxmPt .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-um9zNxxmPt .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-um9zNxxmPt .container {
    padding: 0 24px;
  }
}
.cid-um9zNxxmPt .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-um9zNxxmPt .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-um9zNxxmPt .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-um9zNxxmPt .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-um9zNxxmPt .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-um9zNxxmPt .mbr-section-btn {
    text-align: left;
  }
}
.cid-um9zNxxmPt .mbr-section-title {
  color: #F9F6E0;
}
.cid-um9zNxxmPt .mbr-text {
  color: #ffffff;
}
.cid-um9zNxxmPt .mbr-section-title,
.cid-um9zNxxmPt .mbr-section-btn {
  color: #ffffff;
}
.cid-ukEti1mcdX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ukEti1mcdX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEti1mcdX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukEti1mcdX .content-wrap {
  padding: 60px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ukEti1mcdX .content-wrap {
    padding: 30px 20px;
  }
}
.cid-ukEti1mcdX .content-wrap .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-ukEti1mcdX .content-wrap .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukEti1mcdX .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ukEti1mcdX .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-ukEti1mcdX .content-wrap .panel-group .card {
  position: relative;
  padding: 30px;
  margin-top: 20px;
  background-color: #87e4db;
}
@media (max-width: 992px) {
  .cid-ukEti1mcdX .content-wrap .panel-group .card {
    padding: 20px;
  }
}
.cid-ukEti1mcdX .content-wrap .panel-group .card:first-child {
  margin-top: 0;
}
.cid-ukEti1mcdX .content-wrap .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-ukEti1mcdX .content-wrap .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-ukEti1mcdX .content-wrap .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-ukEti1mcdX .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ukEti1mcdX .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper {
    margin-left: 16px;
  }
}
.cid-ukEti1mcdX .content-wrap .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #00acb1;
}
.cid-ukEti1mcdX .content-wrap .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper {
  transform: rotate(-45deg);
}
.cid-ukEti1mcdX .content-wrap .panel-group .card .panel-collapse .panel-body {
  margin: 20px 0 0 0;
}
.cid-ukEti1mcdX .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-ukEti1mcdX .content-wrap .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-ukEti1mcdX .mbr-section-title {
  color: #404349;
}
.cid-ukEti1mcdX .panel-title-edit {
  color: #404349;
}
.cid-ukEti1mcdX .panel-text {
  color: #404349;
}
.cid-ukEa1SAvwZ {
  background-color: #efefec;
}
.cid-ukEa1SAvwZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEa1SAvwZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukEa1SAvwZ .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-ukEa1SAvwZ .row {
  align-items: center;
}
.cid-ukEa1SAvwZ .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-ukEa1SAvwZ .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-ukEa1SAvwZ .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-ukEa1SAvwZ .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-ukEa1SAvwZ .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-ukEa1SAvwZ .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-ukEa1SAvwZ .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-ukEa1SAvwZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-ukEa1SAvwZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ukEa1SAvwZ .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ukEa1SAvwZ .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-ukEa1SAvwZ .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-ukEa1SAvwZ .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-ukEa1SAvwZ .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-ukEa1SAvwZ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-ukEa1SAvwZ .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ukEa1SAvwZ .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-ukEa1SAvwZ .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-ukEa1SAvwZ .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-ukEa1SAvwZ .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-ukEa1SAvwZ .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-ukEa1SAvwZ .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-ukEa1SAvwZ .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-ukEa1SAvwZ .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-ukEa1SAvwZ .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-ukEa1SAvwZ .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-ukEa1SAvwZ .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-ukEa1SAvwZ .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-ukEa1SAvwZ .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-ukEa1SAvwZ .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-ukEa1SAvwZ .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-ukEa1SAvwZ .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-ukEa1SAvwZ .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-ukEa1SAvwZ .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ukEa1SAvwZ .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-ukEa1SAvwZ .contact-container {
    width: 100%;
  }
}
.cid-ukEa1SAvwZ .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-ukEa1SAvwZ .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-ukEa1SAvwZ .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-ukEa1SAvwZ .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-ukEa1SAvwZ .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-ukEa1SAvwZ .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-ukEa1SAvwZ .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-ukEa1SAvwZ .copyright {
  color: #efefec;
}
.cid-ukEa1SAvwZ .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-ukEa1SAvwZ .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-ukEa1SAvwZ .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tSaqB9EpnN {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tSaqB9EpnN .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tSaqB9EpnN nav.navbar {
  position: fixed;
}
.cid-tSaqB9EpnN .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSaqB9EpnN .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tSaqB9EpnN .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tSaqB9EpnN .dropdown-item:hover,
.cid-tSaqB9EpnN .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tSaqB9EpnN .dropdown-item:hover span {
  color: white;
}
.cid-tSaqB9EpnN .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tSaqB9EpnN .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tSaqB9EpnN .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tSaqB9EpnN .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tSaqB9EpnN .nav-link {
  position: relative;
}
.cid-tSaqB9EpnN .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tSaqB9EpnN .container {
    flex-wrap: nowrap;
  }
}
.cid-tSaqB9EpnN .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tSaqB9EpnN .dropdown-menu,
.cid-tSaqB9EpnN .navbar.opened {
  background: #ffffff !important;
}
.cid-tSaqB9EpnN .nav-item:focus,
.cid-tSaqB9EpnN .nav-link:focus {
  outline: none;
}
.cid-tSaqB9EpnN .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tSaqB9EpnN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSaqB9EpnN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tSaqB9EpnN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tSaqB9EpnN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tSaqB9EpnN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tSaqB9EpnN .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tSaqB9EpnN .navbar.opened {
  transition: all 0.3s;
}
.cid-tSaqB9EpnN .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tSaqB9EpnN .navbar .navbar-logo img {
  width: auto;
}
.cid-tSaqB9EpnN .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tSaqB9EpnN .navbar.collapsed {
  justify-content: center;
}
.cid-tSaqB9EpnN .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tSaqB9EpnN .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tSaqB9EpnN .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tSaqB9EpnN .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tSaqB9EpnN .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tSaqB9EpnN .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tSaqB9EpnN .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tSaqB9EpnN .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tSaqB9EpnN .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tSaqB9EpnN .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tSaqB9EpnN .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tSaqB9EpnN .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tSaqB9EpnN .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tSaqB9EpnN .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tSaqB9EpnN .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tSaqB9EpnN .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tSaqB9EpnN .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tSaqB9EpnN .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tSaqB9EpnN .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tSaqB9EpnN .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tSaqB9EpnN .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tSaqB9EpnN .navbar.navbar-short {
  min-height: 80px;
}
.cid-tSaqB9EpnN .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tSaqB9EpnN .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tSaqB9EpnN .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tSaqB9EpnN .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tSaqB9EpnN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSaqB9EpnN .dropdown-item.active,
.cid-tSaqB9EpnN .dropdown-item:active {
  background-color: transparent;
}
.cid-tSaqB9EpnN .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tSaqB9EpnN .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tSaqB9EpnN .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tSaqB9EpnN .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tSaqB9EpnN .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tSaqB9EpnN .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tSaqB9EpnN ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tSaqB9EpnN .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tSaqB9EpnN button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tSaqB9EpnN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tSaqB9EpnN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tSaqB9EpnN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSaqB9EpnN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tSaqB9EpnN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tSaqB9EpnN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSaqB9EpnN nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tSaqB9EpnN nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tSaqB9EpnN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tSaqB9EpnN .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tSaqB9EpnN a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSaqB9EpnN .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tSaqB9EpnN .navbar {
    height: 70px;
  }
  .cid-tSaqB9EpnN .navbar.opened {
    height: auto;
  }
  .cid-tSaqB9EpnN .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tSaqBa9A2D {
  background-image: url("../../../assets/images/mbr-968x645.jpg");
}
.cid-tSaqBa9A2D .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSaqBa9A2D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSaqBa9A2D .mbr-section-title {
  color: #FFFFFF;
}
.cid-tSaqBa9A2D .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tSaqBa9A2D .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-tSaqBa9A2D .mbr-section-btn {
  margin-top: 18px;
}
.cid-tSaqBa9A2D .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-tSaqBa9A2D .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-u9v52Yy0qr {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u9v52Yy0qr .mbr-fallback-image.disabled {
  display: none;
}
.cid-u9v52Yy0qr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u9v52Yy0qr .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u9v52Yy0qr .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u9v52Yy0qr .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u9v52Yy0qr .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u9v52Yy0qr .container {
    padding: 0 16px;
  }
}
.cid-u9v52Yy0qr .row {
  justify-content: center;
}
.cid-u9v52Yy0qr .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-u9v52Yy0qr .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u9v52Yy0qr .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u9v52Yy0qr .mbr-section-title {
  color: #00acb1;
  text-align: center;
}
.cid-u9v52Yy0qr .mbr-section-subtitle {
  color: #00acb1;
  text-align: center;
}
.cid-u9v52Yy0qr .mbr-text {
  color: #00acb1;
  text-align: center;
}
#custom-html-7e {
  /* Type valid CSS here */
}
#custom-html-7e div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-7e p {
  font-size: 60px;
  color: #777;
}
.cid-tSaqBaAJPN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-tSaqBaAJPN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSaqBaAJPN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSaqBaAJPN .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tSaqBaAJPN .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tSaqBaAJPN .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tSaqBaAJPN .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tSaqBaAJPN .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tSaqBaAJPN .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-tSaqBaAJPN .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-tSaqBaAJPN .mbr-section-title {
  color: #FFFFFF;
}
.cid-tSaqBaAJPN .mbr-desc {
  color: #FFFFFF;
}
.cid-tSaqBaAJPN .mbr-text {
  color: #FFFFFF;
}
.cid-usKPGpZNd5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-usKPGpZNd5 .row {
    flex-direction: column-reverse;
  }
}
.cid-usKPGpZNd5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-usKPGpZNd5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usKPGpZNd5 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-usKPGpZNd5 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-usKPGpZNd5 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-usKPGpZNd5 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-usKPGpZNd5 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-usKPGpZNd5 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-usKPGpZNd5 .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-usKPGpZNd5 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-usKPGpZNd5 .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-usKPGpZNd5 .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-usKPGpZNd5 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-usKPGpZNd5 .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-usKPGpZNd5 .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-usKPGpZNd5 .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-usKPGpZNd5 .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-usKPGpZNd5 .image-wrapper img {
    min-height: 100%;
  }
}
.cid-usKPGpZNd5 .mbr-section-title {
  color: #000000;
}
.cid-usKPGpZNd5 .mbr-text {
  color: #00acb1;
}
.cid-usKPGpZNd5 .mbr-section-title,
.cid-usKPGpZNd5 .mbr-section-btn {
  color: #00acb1;
}
.cid-usKQQSKlMo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-usKQQSKlMo .row {
    flex-direction: column-reverse;
  }
}
.cid-usKQQSKlMo .mbr-fallback-image.disabled {
  display: none;
}
.cid-usKQQSKlMo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usKQQSKlMo .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-usKQQSKlMo .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-usKQQSKlMo .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-usKQQSKlMo .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-usKQQSKlMo .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-usKQQSKlMo .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-usKQQSKlMo .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-usKQQSKlMo .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-usKQQSKlMo .text-wrapper {
    margin: 0 30px;
  }
}
.cid-usKQQSKlMo .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-usKQQSKlMo .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-usKQQSKlMo .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-usKQQSKlMo .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-usKQQSKlMo .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-usKQQSKlMo .image-wrapper {
    margin: 30px;
  }
}
.cid-usKQQSKlMo .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-usKQQSKlMo .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-usKQQSKlMo .image-wrapper img {
    min-height: 100%;
  }
}
.cid-usKQQSKlMo .mbr-section-title {
  color: #000000;
}
.cid-usKQQSKlMo .mbr-text {
  color: #00acb1;
}
.cid-usKQQSKlMo .mbr-section-title,
.cid-usKQQSKlMo .mbr-section-btn {
  color: #00acb1;
}
.cid-usKLGHMBaE {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-usKLGHMBaE .mbr-fallback-image.disabled {
  display: none;
}
.cid-usKLGHMBaE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-usKLGHMBaE .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-usKLGHMBaE .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-usKLGHMBaE .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-usKLGHMBaE .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-usKLGHMBaE .container {
    padding: 0 16px;
  }
}
.cid-usKLGHMBaE .row {
  justify-content: center;
}
.cid-usKLGHMBaE .content-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-usKLGHMBaE .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-usKLGHMBaE .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-usKLGHMBaE .mbr-section-title {
  color: #00acb1;
  text-align: center;
}
.cid-usKLGHMBaE .mbr-section-subtitle {
  color: #00acb1;
  text-align: center;
}
.cid-usKLGHMBaE .mbr-text {
  color: #00acb1;
  text-align: center;
}
.cid-u43iJfVICv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-u43iJfVICv .container {
    padding: 0 24px;
  }
}
.cid-u43iJfVICv .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u43iJfVICv .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-u43iJfVICv .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u43iJfVICv .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u43iJfVICv .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-u43iJfVICv .mbr-section-btn {
    text-align: left;
  }
}
.cid-u43iJfVICv .mbr-section-title {
  color: #F9F6E0;
}
.cid-u43iJfVICv .mbr-text {
  color: #00acb1;
}
.cid-u43iJfVICv .mbr-section-title,
.cid-u43iJfVICv .mbr-section-btn {
  color: #00acb1;
}
.cid-tSaqBb4GtT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tSaqBb4GtT .row {
    flex-direction: column-reverse;
  }
}
.cid-tSaqBb4GtT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSaqBb4GtT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSaqBb4GtT .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tSaqBb4GtT .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tSaqBb4GtT .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tSaqBb4GtT .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tSaqBb4GtT .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-tSaqBb4GtT .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tSaqBb4GtT .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tSaqBb4GtT .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tSaqBb4GtT .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-tSaqBb4GtT .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tSaqBb4GtT .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tSaqBb4GtT .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-tSaqBb4GtT .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-tSaqBb4GtT .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tSaqBb4GtT .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-tSaqBb4GtT .image-wrapper img {
    min-height: 100%;
  }
}
.cid-tSaqBb4GtT .mbr-section-title {
  color: #000000;
}
.cid-tSaqBb4GtT .mbr-text {
  color: #000000;
}
.cid-u30S0KfRVg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u30S0KfRVg .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #87e4db none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-u30S0KfRVg .mbr-iconfont {
  align-items: center;
}
.cid-u30S0KfRVg .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-u30S0KfRVg .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-u30S0KfRVg .icon-transition span:hover {
  background-color: #000000;
  color: #87e4db;
}
.cid-u30S0KfRVg .social-media {
  padding: 0;
}
.cid-u30S0KfRVg .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-u30S0KfRVg .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-u30S0KfRVg .mbr-list,
.cid-u30S0KfRVg .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-u30S0KfRVg .social-list {
    text-align: center !important;
  }
}
.cid-u30S0KfRVg .mbr-section-title,
.cid-u30S0KfRVg .social-list {
  color: #00acb1;
}
.cid-u43iKo03Zl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #87e4db;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-u43iKo03Zl .container {
    padding: 0 24px;
  }
}
.cid-u43iKo03Zl .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u43iKo03Zl .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-u43iKo03Zl .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u43iKo03Zl .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u43iKo03Zl .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-u43iKo03Zl .mbr-section-btn {
    text-align: left;
  }
}
.cid-u43iKo03Zl .mbr-section-title {
  color: #F9F6E0;
}
.cid-u43iKo03Zl .mbr-text {
  color: #00acb1;
}
.cid-u43iKo03Zl .mbr-section-title,
.cid-u43iKo03Zl .mbr-section-btn {
  color: #00acb1;
}
.cid-tSaqBby8tl {
  background-color: #efefec;
}
.cid-tSaqBby8tl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSaqBby8tl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSaqBby8tl .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tSaqBby8tl .row {
  align-items: center;
}
.cid-tSaqBby8tl .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tSaqBby8tl .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tSaqBby8tl .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tSaqBby8tl .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tSaqBby8tl .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tSaqBby8tl .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tSaqBby8tl .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tSaqBby8tl .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tSaqBby8tl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tSaqBby8tl .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tSaqBby8tl .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tSaqBby8tl .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tSaqBby8tl .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tSaqBby8tl .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tSaqBby8tl .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tSaqBby8tl .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tSaqBby8tl .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tSaqBby8tl .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tSaqBby8tl .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tSaqBby8tl .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tSaqBby8tl .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tSaqBby8tl .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tSaqBby8tl .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tSaqBby8tl .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tSaqBby8tl .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tSaqBby8tl .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tSaqBby8tl .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tSaqBby8tl .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tSaqBby8tl .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tSaqBby8tl .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tSaqBby8tl .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tSaqBby8tl .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tSaqBby8tl .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tSaqBby8tl .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tSaqBby8tl .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tSaqBby8tl .contact-container {
    width: 100%;
  }
}
.cid-tSaqBby8tl .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tSaqBby8tl .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tSaqBby8tl .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tSaqBby8tl .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tSaqBby8tl .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tSaqBby8tl .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tSaqBby8tl .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tSaqBby8tl .copyright {
  color: #efefec;
}
.cid-tSaqBby8tl .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tSaqBby8tl .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tSaqBby8tl .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-utq8kSuMBU {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-utq8kSuMBU .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-utq8kSuMBU nav.navbar {
  position: fixed;
}
.cid-utq8kSuMBU .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utq8kSuMBU .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-utq8kSuMBU .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-utq8kSuMBU .dropdown-item:hover,
.cid-utq8kSuMBU .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-utq8kSuMBU .dropdown-item:hover span {
  color: white;
}
.cid-utq8kSuMBU .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-utq8kSuMBU .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-utq8kSuMBU .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-utq8kSuMBU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-utq8kSuMBU .nav-link {
  position: relative;
}
.cid-utq8kSuMBU .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-utq8kSuMBU .container {
    flex-wrap: nowrap;
  }
}
.cid-utq8kSuMBU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-utq8kSuMBU .dropdown-menu,
.cid-utq8kSuMBU .navbar.opened {
  background: #ffffff !important;
}
.cid-utq8kSuMBU .nav-item:focus,
.cid-utq8kSuMBU .nav-link:focus {
  outline: none;
}
.cid-utq8kSuMBU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-utq8kSuMBU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-utq8kSuMBU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-utq8kSuMBU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-utq8kSuMBU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-utq8kSuMBU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-utq8kSuMBU .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-utq8kSuMBU .navbar.opened {
  transition: all 0.3s;
}
.cid-utq8kSuMBU .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-utq8kSuMBU .navbar .navbar-logo img {
  width: auto;
}
.cid-utq8kSuMBU .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-utq8kSuMBU .navbar.collapsed {
  justify-content: center;
}
.cid-utq8kSuMBU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-utq8kSuMBU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-utq8kSuMBU .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-utq8kSuMBU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-utq8kSuMBU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-utq8kSuMBU .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-utq8kSuMBU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-utq8kSuMBU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-utq8kSuMBU .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-utq8kSuMBU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-utq8kSuMBU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-utq8kSuMBU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-utq8kSuMBU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-utq8kSuMBU .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-utq8kSuMBU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-utq8kSuMBU .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-utq8kSuMBU .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-utq8kSuMBU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-utq8kSuMBU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-utq8kSuMBU .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-utq8kSuMBU .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-utq8kSuMBU .navbar.navbar-short {
  min-height: 80px;
}
.cid-utq8kSuMBU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-utq8kSuMBU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-utq8kSuMBU .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-utq8kSuMBU .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-utq8kSuMBU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utq8kSuMBU .dropdown-item.active,
.cid-utq8kSuMBU .dropdown-item:active {
  background-color: transparent;
}
.cid-utq8kSuMBU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-utq8kSuMBU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-utq8kSuMBU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-utq8kSuMBU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-utq8kSuMBU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-utq8kSuMBU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-utq8kSuMBU ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-utq8kSuMBU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-utq8kSuMBU button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-utq8kSuMBU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-utq8kSuMBU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-utq8kSuMBU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utq8kSuMBU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-utq8kSuMBU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-utq8kSuMBU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utq8kSuMBU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-utq8kSuMBU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-utq8kSuMBU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-utq8kSuMBU .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-utq8kSuMBU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-utq8kSuMBU .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-utq8kSuMBU .navbar {
    height: 70px;
  }
  .cid-utq8kSuMBU .navbar.opened {
    height: auto;
  }
  .cid-utq8kSuMBU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-utq8kSLuL7 {
  background-image: url("../../../assets/images/mbr-5-1920x1280.jpg");
}
.cid-utq8kSLuL7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utq8kSLuL7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utq8kSLuL7 .mbr-section-title {
  color: #FFFFFF;
}
.cid-utq8kSLuL7 .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-utq8kSLuL7 .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-utq8kSLuL7 .mbr-section-btn {
  margin-top: 18px;
}
.cid-utq8kSLuL7 .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-utq8kSLuL7 .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-utq8kT1vWP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-utq8kT1vWP .mbr-fallback-image.disabled {
  display: none;
}
.cid-utq8kT1vWP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utq8kT1vWP .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-utq8kT1vWP .text-wrapper {
    margin: 0 30px;
  }
}
.cid-utq8kT1vWP .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-utq8kT1vWP .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-utq8kT1vWP .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-utq8kT1vWP .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-utq8kT1vWP .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-utq8kT1vWP .mbr-section-title {
  color: #FFFFFF;
}
.cid-utq8kT1vWP .mbr-desc {
  color: #FFFFFF;
}
.cid-utq8kT1vWP .mbr-text {
  color: #FFFFFF;
}
.cid-utq8kTgcmb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f7f7f7;
}
.cid-utq8kTgcmb .list-group-item {
  background-color: transparent;
  border-top: 1px solid currentColor;
  padding: 0.5rem 0;
  color: #000000;
}
.cid-utq8kTgcmb .d-flex {
  align-items: flex-end;
}
.cid-utq8kTgcmb .plan-price {
  display: inline-block;
}
.cid-utq8kTgcmb .price-wrapper {
  width: 100%;
}
.cid-utq8kTgcmb ul {
  padding: 0.5rem 2rem;
}
.cid-utq8kTgcmb .list-group {
  margin-top: 1.5rem;
}
.cid-utq8kTgcmb .plan-body {
  padding-bottom: 4rem;
}
.cid-utq8kTgcmb .plan-header {
  padding-top: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.cid-utq8kTgcmb .price {
  color: #669900;
}
.cid-utq8kTgcmb .plan-title,
.cid-utq8kTgcmb .plan-price,
.cid-utq8kTgcmb .price-term,
.cid-utq8kTgcmb .price-text,
.cid-utq8kTgcmb .list-group-item,
.cid-utq8kTgcmb .price {
  transition: all 0.3s;
}
.cid-utq8kTgcmb .plan {
  word-break: break-word;
  border: 1px solid black;
  transition: all 0.3s;
}
.cid-utq8kTgcmb .plan:hover {
  background: #87e4db;
  border-color: #87e4db;
}
.cid-utq8kTgcmb .plan:hover .plan-title,
.cid-utq8kTgcmb .plan:hover .plan-price,
.cid-utq8kTgcmb .plan:hover .price-term,
.cid-utq8kTgcmb .plan:hover .price-text,
.cid-utq8kTgcmb .plan:hover .list-group-item,
.cid-utq8kTgcmb .plan:hover .price {
  color: #678283 !important;
  border-color: #678283 !important;
}
.cid-utq8kTgcmb .plan:hover .btn {
  background: white !important;
  color: black !important;
}
@media (max-width: 991px) {
  .cid-utq8kTgcmb .plan {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-utq8kTgcmb ul {
    padding: 0.5rem 1rem;
  }
  .cid-utq8kTgcmb .plan-header {
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-utq8kTgcmb .plan-title {
  text-align: left;
  color: #bbbbbb;
}
.cid-utq8kTgcmb UL {
  text-align: left;
  color: #fa4529;
}
.cid-utq8kTgcmb .price-text {
  text-align: left;
  color: #bbbbbb;
}
.cid-utq8kTgcmb .mbr-section-subtitle {
  color: #666666;
}
.cid-utq8kTgcmb .price,
.cid-utq8kTgcmb .price-wrapper {
  text-align: center;
  color: #678283;
}
.cid-utq8kTgcmb .mbr-section-title {
  color: #678283;
}
.cid-utq8kTA19Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-utq8kTA19Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-utq8kTA19Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utq8kTA19Y .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-utq8kTA19Y .text-wrapper {
    margin: 0 30px;
  }
}
.cid-utq8kTA19Y .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-utq8kTA19Y .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-utq8kTA19Y .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-utq8kTA19Y .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-utq8kTA19Y .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-utq8kTA19Y .mbr-section-title {
  color: #FFFFFF;
}
.cid-utq8kTA19Y .mbr-desc {
  color: #FFFFFF;
}
.cid-utq8kTA19Y .mbr-text {
  color: #FFFFFF;
}
.cid-utq8kTMXyG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #87e4db;
}
@media (max-width: 992px) {
  .cid-utq8kTMXyG .form-title,
  .cid-utq8kTMXyG .form-wrapper {
    padding: 0;
  }
}
.cid-utq8kTMXyG .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-utq8kTMXyG .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-utq8kTMXyG .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-utq8kTMXyG .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-utq8kTMXyG .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-utq8kTMXyG .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-utq8kTMXyG .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-utq8kTMXyG .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-utq8kTMXyG .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-utq8kTMXyG .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-utq8kTMXyG .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-utq8kTMXyG .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-utq8kTMXyG .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-utq8kTMXyG .mbr-form {
    margin: 0 30px;
  }
}
.cid-utq8kTMXyG .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-utq8kTMXyG .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-utq8kTMXyG .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-utq8kTMXyG .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-utq8kTMXyG .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-utq8kTMXyG .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-utq8kTMXyG .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-utq8kTMXyG .mbr-section-title {
  color: #00acb1;
}
.cid-utq8kTMXyG .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-utq8kU4fcW {
  background-color: #efefec;
}
.cid-utq8kU4fcW .mbr-fallback-image.disabled {
  display: none;
}
.cid-utq8kU4fcW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-utq8kU4fcW .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-utq8kU4fcW .row {
  align-items: center;
}
.cid-utq8kU4fcW .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-utq8kU4fcW .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-utq8kU4fcW .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-utq8kU4fcW .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-utq8kU4fcW .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-utq8kU4fcW .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-utq8kU4fcW .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-utq8kU4fcW .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-utq8kU4fcW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-utq8kU4fcW .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-utq8kU4fcW .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-utq8kU4fcW .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-utq8kU4fcW .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-utq8kU4fcW .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-utq8kU4fcW .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-utq8kU4fcW .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-utq8kU4fcW .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-utq8kU4fcW .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-utq8kU4fcW .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-utq8kU4fcW .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-utq8kU4fcW .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-utq8kU4fcW .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-utq8kU4fcW .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-utq8kU4fcW .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-utq8kU4fcW .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-utq8kU4fcW .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-utq8kU4fcW .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-utq8kU4fcW .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-utq8kU4fcW .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-utq8kU4fcW .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-utq8kU4fcW .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-utq8kU4fcW .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-utq8kU4fcW .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-utq8kU4fcW .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-utq8kU4fcW .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-utq8kU4fcW .contact-container {
    width: 100%;
  }
}
.cid-utq8kU4fcW .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-utq8kU4fcW .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-utq8kU4fcW .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-utq8kU4fcW .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-utq8kU4fcW .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-utq8kU4fcW .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-utq8kU4fcW .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-utq8kU4fcW .copyright {
  color: #efefec;
}
.cid-utq8kU4fcW .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-utq8kU4fcW .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-utq8kU4fcW .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uzUA6ACCAt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uzUA6ACCAt .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uzUA6ACCAt nav.navbar {
  position: fixed;
}
.cid-uzUA6ACCAt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uzUA6ACCAt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uzUA6ACCAt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uzUA6ACCAt .dropdown-item:hover,
.cid-uzUA6ACCAt .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uzUA6ACCAt .dropdown-item:hover span {
  color: white;
}
.cid-uzUA6ACCAt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uzUA6ACCAt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uzUA6ACCAt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uzUA6ACCAt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uzUA6ACCAt .nav-link {
  position: relative;
}
.cid-uzUA6ACCAt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uzUA6ACCAt .container {
    flex-wrap: nowrap;
  }
}
.cid-uzUA6ACCAt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uzUA6ACCAt .dropdown-menu,
.cid-uzUA6ACCAt .navbar.opened {
  background: #ffffff !important;
}
.cid-uzUA6ACCAt .nav-item:focus,
.cid-uzUA6ACCAt .nav-link:focus {
  outline: none;
}
.cid-uzUA6ACCAt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uzUA6ACCAt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzUA6ACCAt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uzUA6ACCAt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uzUA6ACCAt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzUA6ACCAt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uzUA6ACCAt .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uzUA6ACCAt .navbar.opened {
  transition: all 0.3s;
}
.cid-uzUA6ACCAt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uzUA6ACCAt .navbar .navbar-logo img {
  width: auto;
}
.cid-uzUA6ACCAt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzUA6ACCAt .navbar.collapsed {
  justify-content: center;
}
.cid-uzUA6ACCAt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzUA6ACCAt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uzUA6ACCAt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uzUA6ACCAt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzUA6ACCAt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzUA6ACCAt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uzUA6ACCAt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzUA6ACCAt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzUA6ACCAt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uzUA6ACCAt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzUA6ACCAt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzUA6ACCAt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzUA6ACCAt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzUA6ACCAt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uzUA6ACCAt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uzUA6ACCAt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzUA6ACCAt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzUA6ACCAt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uzUA6ACCAt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzUA6ACCAt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uzUA6ACCAt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uzUA6ACCAt .navbar.navbar-short {
  min-height: 80px;
}
.cid-uzUA6ACCAt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uzUA6ACCAt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uzUA6ACCAt .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uzUA6ACCAt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzUA6ACCAt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzUA6ACCAt .dropdown-item.active,
.cid-uzUA6ACCAt .dropdown-item:active {
  background-color: transparent;
}
.cid-uzUA6ACCAt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzUA6ACCAt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzUA6ACCAt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzUA6ACCAt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uzUA6ACCAt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzUA6ACCAt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzUA6ACCAt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzUA6ACCAt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uzUA6ACCAt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uzUA6ACCAt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uzUA6ACCAt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uzUA6ACCAt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzUA6ACCAt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzUA6ACCAt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uzUA6ACCAt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzUA6ACCAt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uzUA6ACCAt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uzUA6ACCAt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzUA6ACCAt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uzUA6ACCAt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uzUA6ACCAt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uzUA6ACCAt .navbar {
    height: 70px;
  }
  .cid-uzUA6ACCAt .navbar.opened {
    height: auto;
  }
  .cid-uzUA6ACCAt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uzUA6AU7FQ {
  background-image: url("../../../assets/images/image19.jpg");
}
.cid-uzUA6AU7FQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzUA6AU7FQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzUA6AU7FQ .mbr-section-title {
  color: #FFFFFF;
}
.cid-uzUA6AU7FQ .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-uzUA6AU7FQ .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-uzUA6AU7FQ .mbr-section-btn {
  margin-top: 18px;
}
.cid-uzUA6AU7FQ .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-uzUA6AU7FQ .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-uzUA6BcYyi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uzUA6BcYyi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzUA6BcYyi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzUA6BcYyi .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uzUA6BcYyi .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uzUA6BcYyi .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uzUA6BcYyi .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-uzUA6BcYyi .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uzUA6BcYyi .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uzUA6BcYyi .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-uzUA6BcYyi .mbr-section-title {
  color: #00acb1;
}
.cid-uzUA6BcYyi .mbr-desc {
  color: #FFFFFF;
}
.cid-uzUA6BcYyi .mbr-text {
  color: #232323;
}
.cid-uVNHiu9MU2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  background-image: radial-gradient(ellipse farthest-corner at 50% 60%, #e1e7f2 0%, #ffffff 100%);
}
@media (max-width: 992px) {
  .cid-uVNHiu9MU2 {
    background-image: radial-gradient(ellipse farthest-corner at 50% 60%, #e1e7f2 0%, #ffffff 110%);
  }
}
.cid-uVNHiu9MU2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVNHiu9MU2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVNHiu9MU2 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uVNHiu9MU2 .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uVNHiu9MU2 .content-wrapper .mbr-label {
  margin-bottom: 32px;
}
.cid-uVNHiu9MU2 .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uVNHiu9MU2 .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uVNHiu9MU2 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uVNHiu9MU2 .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uVNHiu9MU2 .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVNHiu9MU2 .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-uVNHiu9MU2 .image-wrapper {
  padding-left: 68px;
}
@media (max-width: 992px) {
  .cid-uVNHiu9MU2 .image-wrapper {
    padding-left: 0;
  }
}
.cid-uVNHiu9MU2 .image-wrapper img {
  height: 640px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-uVNHiu9MU2 .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 992px) {
  .cid-uVNHiu9MU2 .image-wrapper img {
    height: 350px;
  }
}
.cid-uVNHiu9MU2 .mbr-label {
  color: #a6adbf;
}
.cid-uVNHiu9MU2 .mbr-section-title {
  color: #00acb1;
}
.cid-uVNHiu9MU2 .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-uVNHiu9MU2 .mbr-text,
.cid-uVNHiu9MU2 .text-wrapper {
  color: #666666;
}
.cid-uVNJdrQcmA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uVNJdrQcmA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVNJdrQcmA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVNJdrQcmA .content-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uVNJdrQcmA .content-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uVNJdrQcmA .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uVNJdrQcmA .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uVNJdrQcmA .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 30%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uVNJdrQcmA .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uVNJdrQcmA .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 1440px) {
  .cid-uVNJdrQcmA .items-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .cid-uVNJdrQcmA .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-uVNJdrQcmA .item {
    margin-bottom: 20px;
  }
}
.cid-uVNJdrQcmA .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background-color: #00acb1;
}
@media (max-width: 992px) {
  .cid-uVNJdrQcmA .item .item-wrapper {
    padding: 20px;
  }
}
.cid-uVNJdrQcmA .item .item-wrapper .card-box {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-uVNJdrQcmA .item .item-wrapper .card-box {
    margin-bottom: 20px;
  }
}
.cid-uVNJdrQcmA .item .item-wrapper .card-box .card-title {
  margin-bottom: 20px;
}
.cid-uVNJdrQcmA .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uVNJdrQcmA .item .item-wrapper .card-box .mbr-section-btn {
  margin-top: 20px;
}
.cid-uVNJdrQcmA .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uVNJdrQcmA .item .item-wrapper .item-img img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uVNJdrQcmA .item .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-uVNJdrQcmA .btn-wrapper {
  margin-top: -6%;
}
.cid-uVNJdrQcmA .mbr-section-title,
.cid-uVNJdrQcmA .title-wrapper {
  color: #00acb1;
  text-align: center;
}
.cid-uVNJdrQcmA .mbr-text,
.cid-uVNJdrQcmA .text-wrapper {
  color: #323432;
  text-align: center;
}
.cid-uVNJdrQcmA .card-title {
  color: #f1f5eb;
}
.cid-uVNJdrQcmA .card-text {
  color: #f1f5eb;
  text-align: center;
}
.cid-uVNJdrQcmA .card-title,
.cid-uVNJdrQcmA .mbr-section-btn {
  text-align: center;
}
.cid-uVTd01ZYZl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uVTd01ZYZl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVTd01ZYZl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVTd01ZYZl .title-wrapper {
  margin: 0 160px;
  border-top: 2px solid #e5e5e5;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uVTd01ZYZl .title-wrapper {
    margin: 0 30px;
  }
}
.cid-uVTd01ZYZl .title-wrapper .mbr-section-title {
  padding-top: 20px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uVTd01ZYZl .title-wrapper .mbr-section-title {
    padding-top: 12px;
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .cid-uVTd01ZYZl .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uVTd01ZYZl .cards {
  margin: 0 144px;
}
@media (max-width: 992px) {
  .cid-uVTd01ZYZl .cards {
    margin: 0 18px;
  }
}
@media (max-width: 768px) {
  .cid-uVTd01ZYZl .cards {
    margin: 0 30px;
  }
}
.cid-uVTd01ZYZl .cards .card {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uVTd01ZYZl .cards .card {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uVTd01ZYZl .cards .card {
    padding: 0;
  }
}
.cid-uVTd01ZYZl .cards .card .card-wrapper {
  position: relative;
  width: 100%;
  min-height: 510px;
}
.cid-uVTd01ZYZl .cards .card .card-wrapper .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 510px;
  background: #678283;
  opacity: 0;
  transition: all .3s ease;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uVTd01ZYZl .cards .card .card-wrapper .card-overlay {
    z-index: 0;
  }
}
.cid-uVTd01ZYZl .cards .card .card-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 510px;
  object-fit: cover;
  pointer-events: visible;
}
.cid-uVTd01ZYZl .cards .card .card-wrap {
  margin-top: 40px;
  display: flex;
  transform: translate(-36px, 0);
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-uVTd01ZYZl .cards .card .card-wrap {
    margin-top: 25px;
    transform: none;
  }
}
.cid-uVTd01ZYZl .cards .card .card-wrap span {
  display: flex;
  align-items: center;
  font-size: 22px;
  margin-right: 12px;
  opacity: 0;
  transition: all .4s ease;
}
@media (max-width: 992px) {
  .cid-uVTd01ZYZl .cards .card .card-wrap span {
    opacity: 1;
  }
}
.cid-uVTd01ZYZl .cards .card .card-wrap .card-title {
  margin: 0;
}
.cid-uVTd01ZYZl .card-link:hover .card-wrapper .card-overlay {
  opacity: .7;
}
.cid-uVTd01ZYZl .card-link:hover .card-wrap {
  transform: translate(0, 0);
}
.cid-uVTd01ZYZl .card-link:hover .card-wrap span {
  opacity: 1;
  color: #678283;
}
.cid-uVTd01ZYZl .mbr-section-title {
  color: #00acb1;
}
.cid-uVTd01ZYZl .card-title,
.cid-uVTd01ZYZl .mbr-iconfont {
  color: #00acb1;
}
.cid-uVTd01ZYZl .card-link:hover .card-wrap .card-title {
  color: #678283;
}
.cid-uVNM1Nkz0g {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uVNM1Nkz0g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVNM1Nkz0g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVNM1Nkz0g .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uVNM1Nkz0g .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uVNM1Nkz0g .content-wrapper .mbr-label {
  margin-bottom: 32px;
}
.cid-uVNM1Nkz0g .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uVNM1Nkz0g .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uVNM1Nkz0g .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uVNM1Nkz0g .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uVNM1Nkz0g .content-wrapper .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVNM1Nkz0g .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-uVNM1Nkz0g .image-wrapper {
  padding-left: 68px;
}
@media (max-width: 992px) {
  .cid-uVNM1Nkz0g .image-wrapper {
    padding-left: 0;
  }
}
.cid-uVNM1Nkz0g .image-wrapper img {
  height: 640px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-uVNM1Nkz0g .image-wrapper img {
    height: 500px;
  }
}
@media (max-width: 992px) {
  .cid-uVNM1Nkz0g .image-wrapper img {
    height: 350px;
  }
}
.cid-uVNM1Nkz0g .mbr-label {
  color: #a6adbf;
}
.cid-uVNM1Nkz0g .mbr-section-title {
  color: #00acb1;
}
.cid-uVNM1Nkz0g .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-uVNM1Nkz0g .mbr-text,
.cid-uVNM1Nkz0g .text-wrapper {
  color: #666666;
}
.cid-uVNNSqSFoU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f0f0f0;
}
.cid-uVNNSqSFoU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVNNSqSFoU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVNNSqSFoU .container-fluid {
  padding: 0 64px;
}
@media (max-width: 1440px) {
  .cid-uVNNSqSFoU .container-fluid {
    padding: 0 36px;
  }
}
@media (max-width: 992px) {
  .cid-uVNNSqSFoU .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uVNNSqSFoU .container {
    padding: 0 16px;
  }
}
.cid-uVNNSqSFoU .title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uVNNSqSFoU .title-wrapper {
    margin-bottom: 36px;
    display: block;
  }
}
.cid-uVNNSqSFoU .title-wrapper .mbr-section-title {
  -webkit-text-stroke-color: #00acb1;
  -webkit-text-stroke-width: 0.2vw;
  color: transparent;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uVNNSqSFoU .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uVNNSqSFoU .title-wrapper .tags-wrapper {
  margin-bottom: 16px;
}
.cid-uVNNSqSFoU .title-wrapper .tags-wrapper .tags-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cid-uVNNSqSFoU .title-wrapper .tags-wrapper .tags-wrap {
    flex-direction: column;
  }
}
.cid-uVNNSqSFoU .title-wrapper .tags-wrapper .tags-wrap .mbr-tag {
  border: 4px solid #ffffff;
  padding: 8px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px 16px;
  border-radius: 100em;
}
@media (max-width: 992px) {
  .cid-uVNNSqSFoU .title-wrapper .tags-wrapper .tags-wrap .mbr-tag {
    margin: 0 0 16px 0;
  }
}
.cid-uVNNSqSFoU .item {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uVNNSqSFoU .item {
    margin-bottom: 24px;
  }
}
.cid-uVNNSqSFoU .item .item-wrapper .card-box .card-title {
  margin-bottom: 10px;
}
.cid-uVNNSqSFoU .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uVNNSqSFoU .card-title {
  color: #080808;
}
.cid-uVNNSqSFoU .card-text {
  color: #333333;
}
.cid-uVNNSqSFoU .mbr-tag {
  color: #898989;
}
.cid-uVNNSqSFoU .mbr-section-title {
  text-align: left;
}
.cid-uVNPBJn6nR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uVNPBJn6nR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVNPBJn6nR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uVNPBJn6nR .container {
    padding: 0 22px;
  }
}
.cid-uVNPBJn6nR .title-wrapper .mbr-section-title {
  display: inline-flex;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uVNPBJn6nR .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uVNPBJn6nR .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVNPBJn6nR .mbr-section-title {
  color: #00acb1;
}
.cid-uVNPBJn6nR .mbr-text {
  color: #000000;
}
.cid-uVNQzqliIg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fbfbfb;
}
@media (max-width: 992px) {
  .cid-uVNQzqliIg .form-title,
  .cid-uVNQzqliIg .form-wrapper {
    padding: 0;
  }
}
.cid-uVNQzqliIg .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uVNQzqliIg .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uVNQzqliIg .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uVNQzqliIg .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uVNQzqliIg .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-uVNQzqliIg .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-uVNQzqliIg .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uVNQzqliIg .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uVNQzqliIg .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uVNQzqliIg .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-uVNQzqliIg .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-uVNQzqliIg .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uVNQzqliIg .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-uVNQzqliIg .mbr-form {
    margin: 0 30px;
  }
}
.cid-uVNQzqliIg .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uVNQzqliIg .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uVNQzqliIg .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-uVNQzqliIg .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-uVNQzqliIg .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-uVNQzqliIg .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-uVNQzqliIg .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-uVNQzqliIg .mbr-section-title {
  color: #00acb1;
}
.cid-uVNQzqliIg .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uVC2U3p3Sv {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #0936a7;
}
.cid-uVC2U3p3Sv .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-uVC2U3p3Sv .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uVC2U3p3Sv .container {
    padding: 0 24px;
  }
}
.cid-uVC2U3p3Sv .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uVC2U3p3Sv .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uVC2U3p3Sv .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uVC2U3p3Sv .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVC2U3p3Sv .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uVC2U3p3Sv .mbr-section-btn {
    text-align: left;
  }
}
.cid-uVC2U3p3Sv .mbr-section-title {
  color: #F9F6E0;
}
.cid-uVC2U3p3Sv .mbr-text {
  color: #ffffff;
}
.cid-uVC2U3p3Sv .mbr-section-title,
.cid-uVC2U3p3Sv .mbr-section-btn {
  color: #ffffff;
}
.cid-uzUA6BIBj4 {
  background-color: #efefec;
}
.cid-uzUA6BIBj4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzUA6BIBj4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzUA6BIBj4 .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uzUA6BIBj4 .row {
  align-items: center;
}
.cid-uzUA6BIBj4 .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uzUA6BIBj4 .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uzUA6BIBj4 .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uzUA6BIBj4 .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uzUA6BIBj4 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uzUA6BIBj4 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uzUA6BIBj4 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uzUA6BIBj4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uzUA6BIBj4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzUA6BIBj4 .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uzUA6BIBj4 .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uzUA6BIBj4 .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uzUA6BIBj4 .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uzUA6BIBj4 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uzUA6BIBj4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uzUA6BIBj4 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uzUA6BIBj4 .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uzUA6BIBj4 .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uzUA6BIBj4 .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uzUA6BIBj4 .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uzUA6BIBj4 .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uzUA6BIBj4 .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uzUA6BIBj4 .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uzUA6BIBj4 .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uzUA6BIBj4 .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uzUA6BIBj4 .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uzUA6BIBj4 .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uzUA6BIBj4 .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uzUA6BIBj4 .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uzUA6BIBj4 .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uzUA6BIBj4 .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uzUA6BIBj4 .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uzUA6BIBj4 .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uzUA6BIBj4 .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uzUA6BIBj4 .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uzUA6BIBj4 .contact-container {
    width: 100%;
  }
}
.cid-uzUA6BIBj4 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uzUA6BIBj4 .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uzUA6BIBj4 .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uzUA6BIBj4 .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uzUA6BIBj4 .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uzUA6BIBj4 .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uzUA6BIBj4 .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uzUA6BIBj4 .copyright {
  color: #efefec;
}
.cid-uzUA6BIBj4 .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uzUA6BIBj4 .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uzUA6BIBj4 .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uCytPbHQ4d {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uCytPbHQ4d .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uCytPbHQ4d nav.navbar {
  position: fixed;
}
.cid-uCytPbHQ4d .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCytPbHQ4d .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uCytPbHQ4d .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uCytPbHQ4d .dropdown-item:hover,
.cid-uCytPbHQ4d .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uCytPbHQ4d .dropdown-item:hover span {
  color: white;
}
.cid-uCytPbHQ4d .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uCytPbHQ4d .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uCytPbHQ4d .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uCytPbHQ4d .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uCytPbHQ4d .nav-link {
  position: relative;
}
.cid-uCytPbHQ4d .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uCytPbHQ4d .container {
    flex-wrap: nowrap;
  }
}
.cid-uCytPbHQ4d .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uCytPbHQ4d .dropdown-menu,
.cid-uCytPbHQ4d .navbar.opened {
  background: #ffffff !important;
}
.cid-uCytPbHQ4d .nav-item:focus,
.cid-uCytPbHQ4d .nav-link:focus {
  outline: none;
}
.cid-uCytPbHQ4d .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uCytPbHQ4d .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uCytPbHQ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uCytPbHQ4d .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uCytPbHQ4d .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uCytPbHQ4d .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uCytPbHQ4d .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uCytPbHQ4d .navbar.opened {
  transition: all 0.3s;
}
.cid-uCytPbHQ4d .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uCytPbHQ4d .navbar .navbar-logo img {
  width: auto;
}
.cid-uCytPbHQ4d .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uCytPbHQ4d .navbar.collapsed {
  justify-content: center;
}
.cid-uCytPbHQ4d .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uCytPbHQ4d .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uCytPbHQ4d .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uCytPbHQ4d .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uCytPbHQ4d .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uCytPbHQ4d .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uCytPbHQ4d .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uCytPbHQ4d .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uCytPbHQ4d .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uCytPbHQ4d .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uCytPbHQ4d .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uCytPbHQ4d .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uCytPbHQ4d .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uCytPbHQ4d .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uCytPbHQ4d .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uCytPbHQ4d .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uCytPbHQ4d .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uCytPbHQ4d .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uCytPbHQ4d .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uCytPbHQ4d .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uCytPbHQ4d .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uCytPbHQ4d .navbar.navbar-short {
  min-height: 80px;
}
.cid-uCytPbHQ4d .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uCytPbHQ4d .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uCytPbHQ4d .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uCytPbHQ4d .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uCytPbHQ4d .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCytPbHQ4d .dropdown-item.active,
.cid-uCytPbHQ4d .dropdown-item:active {
  background-color: transparent;
}
.cid-uCytPbHQ4d .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uCytPbHQ4d .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uCytPbHQ4d .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uCytPbHQ4d .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uCytPbHQ4d .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uCytPbHQ4d .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uCytPbHQ4d ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uCytPbHQ4d .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uCytPbHQ4d button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uCytPbHQ4d button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uCytPbHQ4d button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uCytPbHQ4d button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCytPbHQ4d button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uCytPbHQ4d button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uCytPbHQ4d nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCytPbHQ4d nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uCytPbHQ4d nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uCytPbHQ4d nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uCytPbHQ4d .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uCytPbHQ4d a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCytPbHQ4d .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uCytPbHQ4d .navbar {
    height: 70px;
  }
  .cid-uCytPbHQ4d .navbar.opened {
    height: auto;
  }
  .cid-uCytPbHQ4d .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uCyu1julJv {
  padding-top: 225px;
  padding-bottom: 210px;
  background-image: url("../../../assets/images/mbr-1-1920x1211.jpg");
}
.cid-uCyu1julJv .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-uCyu1julJv .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 1.09;
  letter-spacing: -1px;
}
.cid-uCyu1julJv .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-uCyu1julJv .mbr-text {
  color: #6d7a8c;
}
.cid-uCyu1julJv .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
  margin-left: 0.6rem;
}
.cid-uCyu1julJv .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-uCyu1julJv .mbr-section-btn {
  display: flex;
}
.cid-uCyu1julJv .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 2;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-uCyu1julJv .mbr-section-btn.display-4,
.cid-uCyu1julJv .btn.display-4 {
  font-size: 12px !important;
}
.cid-uCyu1julJv .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-uCyu1julJv .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-uCyu1julJv .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #4f87fb;
  position: absolute;
  top: 50%;
  left: 55 %;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-uCyu1julJv .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uCyu1julJv .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-uCyu1julJv .video-wrap .icon-wrap span {
  font-weight: bold;
}
.cid-uCyu1julJv .video-wrap .mbr-text {
  line-height: 1.69;
  font-weight: 800;
  letter-spacing: 0px;
  color: #130947;
}
.cid-uCyu1julJv .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-uCyu1julJv .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uCyu1julJv .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uCyu1julJv .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uCyu1julJv a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-uCyu1julJv .separator,
  .cid-uCyu1julJv .sep-holder,
  .cid-uCyu1julJv .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-uCyu1julJv .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uCyu1julJv .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-uCyu1julJv .mbr-text,
.cid-uCyu1julJv .mbr-section-btn {
  color: #ffffff;
}
.cid-uCyu1julJv .mbr-section-subtitle,
.cid-uCyu1julJv .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-uCyu1julJv .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-uCyuxe2dao {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uCyuxe2dao .row {
    flex-direction: column-reverse;
  }
}
.cid-uCyuxe2dao .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCyuxe2dao .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCyuxe2dao .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uCyuxe2dao .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uCyuxe2dao .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uCyuxe2dao .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uCyuxe2dao .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uCyuxe2dao .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uCyuxe2dao .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uCyuxe2dao .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uCyuxe2dao .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uCyuxe2dao .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-uCyuxe2dao .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uCyuxe2dao .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-uCyuxe2dao .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-uCyuxe2dao .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uCyuxe2dao .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-uCyuxe2dao .image-wrapper img {
    min-height: 100%;
  }
}
.cid-uCyuxe2dao .mbr-section-title {
  color: #000000;
}
.cid-uCyuxe2dao .mbr-text {
  color: #00acb1;
}
.cid-uCyuxe2dao .mbr-section-title,
.cid-uCyuxe2dao .mbr-section-btn {
  color: #00acb1;
}
.cid-uCyu8HWs7J {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uCyu8HWs7J h4 {
  letter-spacing: -0.5px;
  color: #130947;
  font-weight: 800;
}
.cid-uCyu8HWs7J p {
  color: #6d7a8c;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.cid-uCyu8HWs7J .mbr-section-title {
  color: #00acb1;
  margin-bottom: 20px;
  font-weight: 700;
}
.cid-uCyu8HWs7J .mbr-section-title.display-2 {
  font-size: 35px;
  line-height: 1.29;
  letter-spacing: -0.5px;
}
.cid-uCyu8HWs7J .mbr-section-subtitle {
  color: #00acb1;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-uCyu8HWs7J .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uCyu8HWs7J .card-box {
  padding-top: 35px;
}
.cid-uCyu8HWs7J .card-box .card-title {
  text-align: center;
  color: #130947;
}
.cid-uCyu8HWs7J .card-box .card-title.display-7 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
  font-weight: 800;
}
.cid-uCyu8HWs7J .card-box p {
  text-align: center;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-uCyu8HWs7J .card-box p.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-uCyu8HWs7J .card-wrapper {
  height: 100%;
  text-align: center;
}
.cid-uCyu8HWs7J .card-img {
  display: inline-block;
  position: relative;
  width: inherit !important;
}
.cid-uCyu8HWs7J .card-img img {
  border-radius: 100%;
  height: 200px;
  width: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.cid-uCyu8HWs7J .card-img .card-icon {
  background: #00acb1;
  color: #fff;
  height: 46px;
  width: 46px;
  font-size: 14px;
  line-height: 3.29;
  text-align: center;
  border-radius: 100%;
  position: absolute;
  padding: 0.5rem;
  top: 6px;
  right: 0px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  display: flex;
}
.cid-uCyu8HWs7J .card-img .card-icon span {
  z-index: 99;
}
.cid-uCyu8HWs7J .card-img .card-icon::before {
  width: 56px;
  height: 56px;
  content: '';
  position: absolute;
  top: -5px;
  right: -5px;
  border-radius: 50%;
  background-color: #00acb1;
  opacity: 0.5;
  z-index: 1;
}
.cid-uCyua2ExWq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uCyua2ExWq .contents {
  text-align: center;
  margin-bottom: 54px;
}
.cid-uCyua2ExWq .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-uCyua2ExWq .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1.85;
}
.cid-uCyua2ExWq .contents .mbr-section-title {
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #130947;
}
.cid-uCyua2ExWq .contents .mbr-section-text {
  margin-top: 20px;
  color: #6d7a8c;
  letter-spacing: 0;
  line-height: 1.5;
}
.cid-uCyua2ExWq .card-wrapper {
  height: 100%;
}
.cid-uCyua2ExWq .card-wrapper .card-box {
  padding-top: 2rem;
}
.cid-uCyua2ExWq .card-wrapper .card-box .card-title {
  color: #28303f;
  transition: 0.3s all;
  font-weight: 700;
  margin-bottom: 10px;
}
.cid-uCyua2ExWq .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  transition: 0.3s all;
}
.cid-uCyua2ExWq .card-wrapper .card-box .card-title.display-5 {
  font-size: 22px;
  line-height: 1.27;
  letter-spacing: -0.5px;
}
.cid-uCyua2ExWq .card-wrapper .card-box .card-subtitle {
  color: #a0a9b6;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cid-uCyua2ExWq .card-wrapper .card-box .card-subtitle.display-4 {
  font-size: 12px;
}
.cid-uCyua2ExWq .card-wrapper .card-box .mbr-text {
  margin-bottom: 25px;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-uCyua2ExWq .card-wrapper .card-box .mbr-text.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-uCyua2ExWq .card-wrapper .card-box .mbr-iconfont {
  padding-left: 0.2rem;
}
.cid-uCyua2ExWq .card-wrapper .card-img {
  position: relative;
}
.cid-uCyua2ExWq .card-wrapper .card-img img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-uCyua2ExWq .card-wrapper .card-img .meta-category {
  background-color: #87e4db;
  display: inline-block;
  padding: 6px 25px;
  color: #fff;
  position: absolute;
  bottom: -15px;
  right: 35px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  z-index: 9;
  border-radius: 15px;
}
.cid-uCyua2ExWq .card-wrapper .card-img .meta-category .btn {
  font-weight: 600 !important;
}
.cid-uCyua2ExWq .card-wrapper .card-img .meta-category .btn:hover {
  color: currentColor !important;
}
.cid-uCyua2ExWq .card-wrapper .mbr-link-btn .btn {
  font-weight: 700;
  line-height: 2;
  letter-spacing: 1px;
}
.cid-uCyua2ExWq .card-wrapper .mbr-link-btn .btn.display-4 {
  font-size: 12px;
}
.cid-uCyua2ExWq .btn[class*='-outline'] {
  border: none;
  padding: 0;
  margin: 0 !important;
  box-shadow: none !important;
}
.cid-uCyua2ExWq .btn[class*='-outline'] span {
  order: 2;
  font-size: 0.8rem;
  font-weight: 900;
  transition: padding 0.3s !important;
}
.cid-uCyua2ExWq .btn[class*='-outline']:hover span {
  padding-left: 10px;
}
.cid-uCyua2ExWq .btn[class*='-outline']:hover {
  background-color: transparent !important;
  color: #4f87fb !important;
  box-shadow: none !important;
}
.cid-uCyua2ExWq .btn[class*='-outline']:active,
.cid-uCyua2ExWq .btn[class*='-outline']:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-uCyua2ExWq .contents .mbr-section-text {
  text-align: left;
  color: #333333;
}
.cid-uCyua2ExWq .card-wrapper .card-box .mbr-text,
.cid-uCyua2ExWq .mbr-link-btn {
  color: #333333;
}
.cid-uCyua2ExWq .contents .mbr-section-title {
  color: #00acb1;
}
.cid-uCyudIEfej {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uCyudIEfej .title-text {
  margin-bottom: 70px;
}
.cid-uCyudIEfej .title-text .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-uCyudIEfej .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-uCyudIEfej .title-text .mbr-section-title {
  color: #130947;
}
.cid-uCyudIEfej .title-text .mbr-section-title span {
  font-weight: 900;
}
.cid-uCyudIEfej .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-uCyudIEfej .mbr-iconfont {
  font-family: 'Moririse2' !important;
  display: inline-flex;
  -webkit-transform-origin: ;
  transform-origin: ;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 !important;
  font-size: 1.4rem !important;
  color: #222222;
}
.cid-uCyudIEfej .mbr-iconfont:before {
  -webkit-transform: scaleY(0) !important;
  transform: scaleY(0) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uCyudIEfej .collapsed .mbr-iconfont {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.cid-uCyudIEfej .collapsed .mbr-iconfont:before {
  -webkit-transform: scaleY(1) !important;
  transform: scaleY(1) !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uCyudIEfej .accordion-content {
  flex-basis: 100%;
}
.cid-uCyudIEfej .panel-group {
  width: 100%;
}
.cid-uCyudIEfej .panel-text,
.cid-uCyudIEfej .header-text,
.cid-uCyudIEfej .mbr-section-subtitle {
  color: #222222;
}
.cid-uCyudIEfej .card {
  margin-bottom: 30px;
  margin-top: 30px;
  border: none;
  border-radius: 0 !important;
}
.cid-uCyudIEfej .card .card-header {
  border-radius: 0 !important;
  border-bottom: none !important;
  padding: 0;
}
.cid-uCyudIEfej .card .card-header a.panel-title {
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #f1f1f1;
  margin-bottom: 0;
  font-style: normal;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  text-decoration: none !important;
  border-radius: 0 !important;
  line-height: normal;
}
.cid-uCyudIEfej .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uCyudIEfej .card .card-header a.panel-title .sign {
  padding-right: 1rem;
}
.cid-uCyudIEfej .card .card-header a.panel-title h4 {
  padding: 17px 42px 17px 35px;
  margin-bottom: 0;
  width: 100%;
  line-height: 1.5;
  font-weight: 400 !important;
}
.cid-uCyudIEfej .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
  line-height: 1.6 !important;
}
.cid-uCyudIEfej .card .card-header a.panel-title .toggle-icon {
  right: 20px;
  position: absolute;
  top: 29px;
  -webkit-transform: none;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
}
.cid-uCyudIEfej .card .card-header a.panel-title .toggle-icon:before,
.cid-uCyudIEfej .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-uCyudIEfej .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  -webkit-transform: none;
  transform: none;
}
.cid-uCyudIEfej .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-uCyudIEfej .card .card-header a.panel-title[aria-expanded='true'] {
  background-color: #00acb1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uCyudIEfej .card .card-header a.panel-title[aria-expanded='true'] .header-text,
.cid-uCyudIEfej .card .card-header a.panel-title[aria-expanded='true'] .sign {
  color: #ffffff !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-uCyudIEfej .card .panel-body {
  background: #ffffff;
  padding: 30px 55px 35px 40px !important;
}
.cid-uCyudIEfej .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-uCyudIEfej .title-text .mbr-section-title {
  color: #00acb1;
}
.cid-uCyudIEfej .title-text .mbr-section-subtitle {
  color: #00acb1;
}
.cid-uCytPcfyIp {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uCytPcfyIp .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #87e4db none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uCytPcfyIp .mbr-iconfont {
  align-items: center;
}
.cid-uCytPcfyIp .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-uCytPcfyIp .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uCytPcfyIp .icon-transition span:hover {
  background-color: #000000;
  color: #87e4db;
}
.cid-uCytPcfyIp .social-media {
  padding: 0;
}
.cid-uCytPcfyIp .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uCytPcfyIp .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uCytPcfyIp .mbr-list,
.cid-uCytPcfyIp .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uCytPcfyIp .social-list {
    text-align: center !important;
  }
}
.cid-uCytPcfyIp .mbr-section-title,
.cid-uCytPcfyIp .social-list {
  color: #00acb1;
}
.cid-uCytPczoLN {
  background-color: #efefec;
}
.cid-uCytPczoLN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uCytPczoLN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uCytPczoLN .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uCytPczoLN .row {
  align-items: center;
}
.cid-uCytPczoLN .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uCytPczoLN .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uCytPczoLN .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uCytPczoLN .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uCytPczoLN .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uCytPczoLN .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uCytPczoLN .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uCytPczoLN .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uCytPczoLN .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uCytPczoLN .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uCytPczoLN .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uCytPczoLN .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uCytPczoLN .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uCytPczoLN .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uCytPczoLN .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uCytPczoLN .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uCytPczoLN .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uCytPczoLN .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uCytPczoLN .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uCytPczoLN .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uCytPczoLN .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uCytPczoLN .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uCytPczoLN .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uCytPczoLN .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uCytPczoLN .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uCytPczoLN .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uCytPczoLN .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uCytPczoLN .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uCytPczoLN .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uCytPczoLN .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uCytPczoLN .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uCytPczoLN .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uCytPczoLN .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uCytPczoLN .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uCytPczoLN .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uCytPczoLN .contact-container {
    width: 100%;
  }
}
.cid-uCytPczoLN .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uCytPczoLN .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uCytPczoLN .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uCytPczoLN .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uCytPczoLN .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uCytPczoLN .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uCytPczoLN .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uCytPczoLN .copyright {
  color: #efefec;
}
.cid-uCytPczoLN .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uCytPczoLN .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uCytPczoLN .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uCyueJWWYS.popup-builder {
  background-color: #ffffff;
}
.cid-uCyueJWWYS.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uCyueJWWYS.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uCyueJWWYS .modal-content,
.cid-uCyueJWWYS .modal-dialog {
  height: auto;
}
.cid-uCyueJWWYS .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uCyueJWWYS .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uCyueJWWYS .form-wrapper .mbr-form .form-group,
  .cid-uCyueJWWYS .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uCyueJWWYS .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uCyueJWWYS .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uCyueJWWYS .mbr-text {
  text-align: center;
}
.cid-uCyueJWWYS .pt-0 {
  padding-top: 0 !important;
}
.cid-uCyueJWWYS .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uCyueJWWYS .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uCyueJWWYS .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uCyueJWWYS .modal-open {
  overflow: hidden;
}
.cid-uCyueJWWYS .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uCyueJWWYS .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uCyueJWWYS .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uCyueJWWYS .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uCyueJWWYS .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uCyueJWWYS .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uCyueJWWYS .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uCyueJWWYS .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uCyueJWWYS .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uCyueJWWYS .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uCyueJWWYS .modal-backdrop.fade {
  opacity: 0;
}
.cid-uCyueJWWYS .modal-backdrop.show {
  opacity: .5;
}
.cid-uCyueJWWYS .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uCyueJWWYS .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uCyueJWWYS .modal-header {
    padding: 1rem;
  }
}
.cid-uCyueJWWYS .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uCyueJWWYS .modal-header .close svg {
  fill: #353535;
}
.cid-uCyueJWWYS .modal-header .close:hover {
  opacity: 1;
}
.cid-uCyueJWWYS .modal-header .close:focus {
  outline: none;
}
.cid-uCyueJWWYS .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uCyueJWWYS .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uCyueJWWYS .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uCyueJWWYS .modal-body {
    padding: 1rem;
  }
}
.cid-uCyueJWWYS .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uCyueJWWYS .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uCyueJWWYS .modal-footer {
    padding: 1rem;
  }
}
.cid-uCyueJWWYS .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uCyueJWWYS .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uCyueJWWYS .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uCyueJWWYS .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uCyueJWWYS .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uCyueJWWYS .modal-lg,
  .cid-uCyueJWWYS .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uCyueJWWYS .modal-xl {
    max-width: 1140px;
  }
}
.cid-uCyueJWWYS .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uCyueJWWYS .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uCyueJWWYS .form-group {
  margin-bottom: 1rem;
}
.cid-uCyueJWWYS .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uCyueJWWYS .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uCyueJWWYS .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uCyueJWWYS .mbr-section-btn {
  margin: 0;
}
.cid-uCyueJWWYS .mbr-section-btn .btn {
  margin: 0;
}
.cid-uDLWvFjcTW {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uDLWvFjcTW .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uDLWvFjcTW nav.navbar {
  position: fixed;
}
.cid-uDLWvFjcTW .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uDLWvFjcTW .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uDLWvFjcTW .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uDLWvFjcTW .dropdown-item:hover,
.cid-uDLWvFjcTW .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uDLWvFjcTW .dropdown-item:hover span {
  color: white;
}
.cid-uDLWvFjcTW .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uDLWvFjcTW .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uDLWvFjcTW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uDLWvFjcTW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uDLWvFjcTW .nav-link {
  position: relative;
}
.cid-uDLWvFjcTW .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uDLWvFjcTW .container {
    flex-wrap: nowrap;
  }
}
.cid-uDLWvFjcTW .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uDLWvFjcTW .dropdown-menu,
.cid-uDLWvFjcTW .navbar.opened {
  background: #ffffff !important;
}
.cid-uDLWvFjcTW .nav-item:focus,
.cid-uDLWvFjcTW .nav-link:focus {
  outline: none;
}
.cid-uDLWvFjcTW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uDLWvFjcTW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uDLWvFjcTW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uDLWvFjcTW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uDLWvFjcTW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uDLWvFjcTW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uDLWvFjcTW .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uDLWvFjcTW .navbar.opened {
  transition: all 0.3s;
}
.cid-uDLWvFjcTW .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uDLWvFjcTW .navbar .navbar-logo img {
  width: auto;
}
.cid-uDLWvFjcTW .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uDLWvFjcTW .navbar.collapsed {
  justify-content: center;
}
.cid-uDLWvFjcTW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uDLWvFjcTW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uDLWvFjcTW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uDLWvFjcTW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uDLWvFjcTW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uDLWvFjcTW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uDLWvFjcTW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uDLWvFjcTW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uDLWvFjcTW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uDLWvFjcTW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uDLWvFjcTW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uDLWvFjcTW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uDLWvFjcTW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uDLWvFjcTW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uDLWvFjcTW .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uDLWvFjcTW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uDLWvFjcTW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uDLWvFjcTW .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uDLWvFjcTW .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uDLWvFjcTW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uDLWvFjcTW .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uDLWvFjcTW .navbar.navbar-short {
  min-height: 80px;
}
.cid-uDLWvFjcTW .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uDLWvFjcTW .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uDLWvFjcTW .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uDLWvFjcTW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uDLWvFjcTW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uDLWvFjcTW .dropdown-item.active,
.cid-uDLWvFjcTW .dropdown-item:active {
  background-color: transparent;
}
.cid-uDLWvFjcTW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uDLWvFjcTW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uDLWvFjcTW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uDLWvFjcTW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uDLWvFjcTW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uDLWvFjcTW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uDLWvFjcTW ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uDLWvFjcTW .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uDLWvFjcTW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uDLWvFjcTW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uDLWvFjcTW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uDLWvFjcTW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDLWvFjcTW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uDLWvFjcTW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uDLWvFjcTW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDLWvFjcTW nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uDLWvFjcTW nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uDLWvFjcTW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uDLWvFjcTW .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uDLWvFjcTW a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDLWvFjcTW .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uDLWvFjcTW .navbar {
    height: 70px;
  }
  .cid-uDLWvFjcTW .navbar.opened {
    height: auto;
  }
  .cid-uDLWvFjcTW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uDLWvFLx8m {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-uDLWvFLx8m .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-uDLWvFLx8m .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-uDLWvFLx8m .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uDLWvFLx8m .container {
    padding: 0 24px;
  }
}
.cid-uDLWvFLx8m .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uDLWvFLx8m .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uDLWvFLx8m .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uDLWvFLx8m .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uDLWvFLx8m .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uDLWvFLx8m .mbr-section-btn {
    text-align: left;
  }
}
.cid-uDLWvFLx8m .mbr-section-title {
  color: #F9F6E0;
}
.cid-uDLWvFLx8m .mbr-text {
  color: #ffffff;
}
.cid-uDLWvFLx8m .mbr-section-title,
.cid-uDLWvFLx8m .mbr-section-btn {
  color: #ffffff;
}
.cid-uDLWvGdYZN {
  background-image: url("../../../assets/images/mbr-1920x1278.jpg");
}
.cid-uDLWvGdYZN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLWvGdYZN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLWvGdYZN .mbr-section-title {
  color: #FFFFFF;
}
.cid-uDLWvGdYZN .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-uDLWvGdYZN .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-uDLWvGdYZN .mbr-section-btn {
  margin-top: 18px;
}
.cid-uDLWvGdYZN .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-uDLWvGdYZN .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-uDLWvGBXkh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fff2fb;
}
.cid-uDLWvGBXkh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLWvGBXkh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLWvGBXkh .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uDLWvGBXkh .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uDLWvGBXkh .container {
    padding: 0 24px;
  }
}
.cid-uDLWvGBXkh .row {
  justify-content: center;
}
.cid-uDLWvGBXkh .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uDLWvGBXkh .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uDLWvGBXkh .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uDLWvGBXkh .box .mbr-media img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uDLWvGBXkh .box .mbr-media img {
    height: 350px;
  }
}
.cid-uDLWvGBXkh .box .mbr-media .mbr-iconfont {
  color: #00acb1;
}
.cid-uDLWvGBXkh .mbr-media {
  position: relative;
}
.cid-uDLWvGBXkh .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-uDLWvGBXkh a:hover {
  background-image: none !important;
}
.cid-uDLWvGBXkh .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-uDLWvGBXkh .icon-wrap:hover {
  cursor: pointer;
}
.cid-uDLWvGBXkh .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-uDLWvGBXkh .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uDLWvGBXkh .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uDLWvGBXkh .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uDLWvGBXkh .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uDLWvGBXkh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uDLWvGBXkh .mbr-section-title {
  color: #00acb1;
  text-align: left;
}
.cid-uDLWvII64Q {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-uDLWvII64Q .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-uDLWvII64Q .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-uDLWvII64Q .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uDLWvII64Q .container {
    padding: 0 24px;
  }
}
.cid-uDLWvII64Q .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uDLWvII64Q .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uDLWvII64Q .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uDLWvII64Q .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uDLWvII64Q .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uDLWvII64Q .mbr-section-btn {
    text-align: left;
  }
}
.cid-uDLWvII64Q .mbr-section-title {
  color: #F9F6E0;
}
.cid-uDLWvII64Q .mbr-text {
  color: #ffffff;
}
.cid-uDLWvII64Q .mbr-section-title,
.cid-uDLWvII64Q .mbr-section-btn {
  color: #ffffff;
}
.cid-uDLWvJ332Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-uDLWvJ332Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLWvJ332Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLWvJ332Y .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uDLWvJ332Y .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uDLWvJ332Y .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uDLWvJ332Y .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-uDLWvJ332Y .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uDLWvJ332Y .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uDLWvJ332Y .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-uDLWvJ332Y .mbr-section-title {
  color: #FFFFFF;
}
.cid-uDLWvJ332Y .mbr-desc {
  color: #FFFFFF;
}
.cid-uDLWvJ332Y .mbr-text {
  color: #FFFFFF;
}
.cid-uDM3Cl8FLl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uDM3Cl8FLl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDM3Cl8FLl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDM3Cl8FLl .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uDM3Cl8FLl .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uDM3Cl8FLl .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uDM3Cl8FLl .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uDM3Cl8FLl .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uDM3Cl8FLl .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uDM3Cl8FLl .title-container {
  display: flex;
  justify-content: space-between;
  margin: 0 160px 110px;
  padding: 20px 40px 0 0;
  border-top: 2px solid #e5e5e5;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uDM3Cl8FLl .title-container {
    display: block;
    margin: 0 30px 60px;
    padding: 12px 0 0 0;
  }
}
.cid-uDM3Cl8FLl .title-container .title-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-uDM3Cl8FLl .title-container .title-wrapper {
    width: 100%;
  }
}
.cid-uDM3Cl8FLl .title-container .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uDM3Cl8FLl .title-container .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uDM3Cl8FLl .cards {
  margin: 0 160px;
}
@media (max-width: 992px) {
  .cid-uDM3Cl8FLl .cards {
    margin: 0 30px;
  }
}
.cid-uDM3Cl8FLl .cards .card {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uDM3Cl8FLl .cards .card {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .cid-uDM3Cl8FLl .cards .card {
    margin-bottom: 40px;
  }
}
.cid-uDM3Cl8FLl .cards .card .mbr-iconfont {
  width: 100%;
  height: 70px;
  font-size: 70px;
  color: #00acb1;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uDM3Cl8FLl .cards .card .mbr-iconfont {
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .cid-uDM3Cl8FLl .cards .card .mbr-iconfont {
    margin-bottom: 20px;
  }
}
.cid-uDM3Cl8FLl .cards .card .card-title {
  margin-bottom: 0;
}
.cid-uDM3Cl8FLl .cards .card .mbr-text {
  margin: 20px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uDM3Cl8FLl .cards .card .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-uDM3Cl8FLl .mbr-section-title {
  color: #000000;
}
.cid-uDM3Cl8FLl .card-title {
  color: #000000;
}
.cid-uDM3Cl8FLl .mbr-text {
  color: #000000;
}
.cid-uDLWvJrb2X {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-uDLWvJrb2X .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-uDLWvJrb2X .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-uDLWvJrb2X .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uDLWvJrb2X .container {
    padding: 0 24px;
  }
}
.cid-uDLWvJrb2X .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uDLWvJrb2X .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uDLWvJrb2X .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uDLWvJrb2X .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uDLWvJrb2X .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uDLWvJrb2X .mbr-section-btn {
    text-align: left;
  }
}
.cid-uDLWvJrb2X .mbr-section-title {
  color: #F9F6E0;
}
.cid-uDLWvJrb2X .mbr-text {
  color: #ffffff;
}
.cid-uDLWvJrb2X .mbr-section-title,
.cid-uDLWvJrb2X .mbr-section-btn {
  color: #ffffff;
}
.cid-uDLWvJMprI {
  padding-top: 15px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-uDLWvJMprI .container {
  max-width: 1500px;
}
.cid-uDLWvJMprI .row {
  background: #f5f7fa;
}
.cid-uDLWvJMprI .img-col {
  padding: 0;
}
.cid-uDLWvJMprI .title-col {
  padding: 4rem 8rem;
}
.cid-uDLWvJMprI img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uDLWvJMprI h2 {
  padding: 0;
  margin: 0;
}
.cid-uDLWvJMprI .text-wrap {
  margin: auto;
}
.cid-uDLWvJMprI .mbr-text {
  color: #333333;
}
@media (max-width: 1200px) {
  .cid-uDLWvJMprI .row {
    margin: 2rem;
  }
  .cid-uDLWvJMprI .title-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uDLWvJMprI .row {
    margin: 0rem;
  }
  .cid-uDLWvJMprI .title-col {
    padding: 2rem 1rem;
  }
}
.cid-uDLWvJMprI H2 {
  color: #333333;
}
.cid-uDMqKZ9aMW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #00acb1;
}
.cid-uDMqKZ9aMW .title {
  margin-bottom: 2rem;
}
.cid-uDMqKZ9aMW a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uDMqKZ9aMW a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uDMqKZ9aMW .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uDMqKZ9aMW .input-group-btn {
  display: block;
}
.cid-uDMqKZ9aMW h2 {
  color: #333;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.cid-uDMqKZ9aMW h3 {
  color: #767676;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.cid-uDMqKZ9aMW .form-control {
  border-radius: 0px;
  padding-left: 15px;
}
.cid-uDMqKZ9aMW textarea.form-control {
  min-height: 154px;
}
@media (max-width: 991px) {
  .cid-uDMqKZ9aMW h2 {
    text-align: center;
  }
  .cid-uDMqKZ9aMW h3 {
    text-align: center;
  }
  .cid-uDMqKZ9aMW .input-group-btn {
    text-align: center;
  }
}
.cid-uDMqKZ9aMW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDMqKZ9aMW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDMqKZ9aMW H2 {
  color: #ffffff;
}
.cid-uDMqKZ9aMW H3 {
  color: #ffffff;
}
.cid-uDLWvK9ZvX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uDLWvK9ZvX .row {
    flex-direction: column-reverse;
  }
}
.cid-uDLWvK9ZvX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLWvK9ZvX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLWvK9ZvX .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uDLWvK9ZvX .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uDLWvK9ZvX .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uDLWvK9ZvX .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uDLWvK9ZvX .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uDLWvK9ZvX .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uDLWvK9ZvX .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-uDLWvK9ZvX .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uDLWvK9ZvX .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uDLWvK9ZvX .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uDLWvK9ZvX .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-uDLWvK9ZvX .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uDLWvK9ZvX .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-uDLWvK9ZvX .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-uDLWvK9ZvX .image-wrapper {
    margin: 30px;
  }
}
.cid-uDLWvK9ZvX .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uDLWvK9ZvX .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-uDLWvK9ZvX .image-wrapper img {
    min-height: 100%;
  }
}
.cid-uDLWvK9ZvX .mbr-section-title {
  color: #000000;
}
.cid-uDLWvK9ZvX .mbr-text {
  color: #000000;
}
.cid-uDLWvKw9Mf {
  padding-top: 15px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-uDLWvKw9Mf .container {
  max-width: 1500px;
}
.cid-uDLWvKw9Mf .row {
  background: #f5f7fa;
}
.cid-uDLWvKw9Mf .img-col {
  padding: 0;
}
.cid-uDLWvKw9Mf .title-col {
  padding: 4rem 8rem;
}
.cid-uDLWvKw9Mf img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uDLWvKw9Mf h2 {
  padding: 0;
  margin: 0;
}
.cid-uDLWvKw9Mf .text-wrap {
  margin: auto;
}
.cid-uDLWvKw9Mf .mbr-text {
  color: #333333;
}
@media (max-width: 1200px) {
  .cid-uDLWvKw9Mf .row {
    margin: 2rem;
  }
  .cid-uDLWvKw9Mf .title-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-uDLWvKw9Mf .row {
    margin: 0rem;
  }
  .cid-uDLWvKw9Mf .title-col {
    padding: 2rem 1rem;
  }
}
.cid-uDLWvKw9Mf H2 {
  color: #333333;
}
.cid-uDLWvKW4oE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uDLWvKW4oE .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
}
.cid-uDLWvKW4oE .ico-line {
  display: inline-block;
  width: 100%;
}
.cid-uDLWvKW4oE p {
  line-height: 1.6;
}
.cid-uDLWvKW4oE .rev,
.cid-uDLWvKW4oE .mbr-iconfont {
  display: inline-block;
}
.cid-uDLWvKW4oE .card-title {
  color: #0087ab;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  text-align: center;
}
.cid-uDLWvKW4oE .card-box {
  padding: 1.5rem;
}
.cid-uDLWvKW4oE .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-uDLWvKW4oE .mbr-section-sub-title {
  text-align: center;
  color: #767676;
}
.cid-uDLWvKW4oE .mbr-section-title,
.cid-uDLWvKW4oE .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-uDLWvKW4oE .rev {
  color: #0a1c44;
}
.cid-uDLWvKW4oE .card-text,
.cid-uDLWvKW4oE .mbr-section-btn,
.cid-uDLWvKW4oE .ico-line {
  color: #767676;
}
.cid-uDLWvLrc81 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-uDLWvLrc81 .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-uDLWvLrc81 .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-uDLWvLrc81 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uDLWvLrc81 .container {
    padding: 0 24px;
  }
}
.cid-uDLWvLrc81 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uDLWvLrc81 .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uDLWvLrc81 .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uDLWvLrc81 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uDLWvLrc81 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uDLWvLrc81 .mbr-section-btn {
    text-align: left;
  }
}
.cid-uDLWvLrc81 .mbr-section-title {
  color: #F9F6E0;
}
.cid-uDLWvLrc81 .mbr-text {
  color: #ffffff;
}
.cid-uDLWvLrc81 .mbr-section-title,
.cid-uDLWvLrc81 .mbr-section-btn {
  color: #ffffff;
}
.cid-uDLWvLN3My {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uDLWvLN3My .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLWvLN3My .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLWvLN3My .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uDLWvLN3My .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uDLWvLN3My .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uDLWvLN3My .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uDLWvLN3My .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-uDLWvLN3My .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uDLWvLN3My .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uDLWvLN3My .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uDLWvLN3My .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uDLWvLN3My .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-uDLWvLN3My .mbr-section-title {
  color: #FFFFFF;
}
.cid-uDLWvLN3My .mbr-section-title,
.cid-uDLWvLN3My .mbr-section-btn {
  text-align: center;
  color: #00acb1;
}
.cid-uDLWvMcMVX {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uDLWvMcMVX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLWvMcMVX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLWvMcMVX .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uDLWvMcMVX .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uDLWvMcMVX .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uDLWvMcMVX .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uDLWvMcMVX .container {
    padding: 0 16px;
  }
}
.cid-uDLWvMcMVX .row {
  background-color: #ffffff;
  justify-content: center;
  margin: 0;
  border-radius: 1rem;
}
.cid-uDLWvMcMVX .item {
  padding: 40px 80px;
  border-right: 1px solid #ffffff;
}
@media (max-width: 1200px) {
  .cid-uDLWvMcMVX .item {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .cid-uDLWvMcMVX .item {
    padding: 25px;
    border-right: none;
    border-bottom: 1px solid #ffffff;
  }
}
.cid-uDLWvMcMVX .item:nth-child(2n) {
  border-right: none;
}
@media (max-width: 992px) {
  .cid-uDLWvMcMVX .item:nth-child(2n) {
    border-right: none;
  }
}
.cid-uDLWvMcMVX .item .item-wrapper .card-subtitle {
  margin-bottom: 40px;
}
.cid-uDLWvMcMVX .item .item-wrapper .item-img {
  margin-bottom: 28px;
}
.cid-uDLWvMcMVX .item .item-wrapper .item-img img {
  display: inline-flex;
  object-fit: cover;
  height: 350px;
  border-radius: 1rem !important;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-uDLWvMcMVX .item .item-wrapper .item-img img {
    width: 100%;
  }
}
.cid-uDLWvMcMVX .item .item-wrapper .card-title {
  margin-bottom: 10px;
}
.cid-uDLWvMcMVX .item .item-wrapper .card-text {
  margin-bottom: 20px;
}
.cid-uDLWvMcMVX .card-title {
  color: #000000;
}
.cid-uDLWvMcMVX .card-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uDLWvMcMVX .card-text {
  color: #000000;
  text-align: left;
}
.cid-uDLWvMcMVX .card-title,
.cid-uDLWvMcMVX .item-img,
.cid-uDLWvMcMVX .mbr-section-btn {
  text-align: center;
}
.cid-uDLWvMcMVX .card-title,
.cid-uDLWvMcMVX .mbr-section-btn,
.cid-uDLWvMcMVX .item-img {
  color: #00acb1;
}
.cid-uDLWvMDuP5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #87e4db;
}
.cid-uDLWvMDuP5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLWvMDuP5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLWvMDuP5 .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uDLWvMDuP5 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uDLWvMDuP5 .container {
    padding: 0 24px;
  }
}
.cid-uDLWvMDuP5 .row .card {
  padding: 0 12px;
  border-radius: 0 !important;
}
.cid-uDLWvMDuP5 .image-wrapper {
  height: 100%;
}
.cid-uDLWvMDuP5 .image-wrapper img {
  height: 100%;
  object-fit: cover;
  border-radius: .75rem !important;
}
@media (max-width: 992px) {
  .cid-uDLWvMDuP5 .image-wrapper img {
    height: 350px;
  }
}
.cid-uDLWvMDuP5 .content-wrapper {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: .75rem;
  padding: 48px;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uDLWvMDuP5 .content-wrapper {
    padding: 24px;
  }
}
.cid-uDLWvMDuP5 .content-wrapper .content-wrap {
  width: 100%;
}
.cid-uDLWvMDuP5 .content-wrapper .content-wrap .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uDLWvMDuP5 .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uDLWvMDuP5 .content-wrapper .content-wrap .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #fb8fc9 0%, transparent 100%);
}
.cid-uDLWvMDuP5 .content-wrapper .content-wrap .mbr-section-btn .btn:hover,
.cid-uDLWvMDuP5 .content-wrapper .content-wrap .mbr-section-btn .btn:focus {
  box-shadow: inset 250px 10px 5px #7f89e9 !important;
  border-color: #7f89e9 !important;
}
.cid-uDLWvMDuP5 .mbr-section-title {
  color: #141414;
}
.cid-uDLWvMDuP5 .mbr-text {
  color: #141414;
}
.cid-uDLWvN05CP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uDLWvN05CP .row {
    flex-direction: column-reverse;
  }
}
.cid-uDLWvN05CP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLWvN05CP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLWvN05CP .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uDLWvN05CP .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uDLWvN05CP .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uDLWvN05CP .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uDLWvN05CP .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uDLWvN05CP .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uDLWvN05CP .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uDLWvN05CP .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uDLWvN05CP .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uDLWvN05CP .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-uDLWvN05CP .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uDLWvN05CP .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-uDLWvN05CP .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-uDLWvN05CP .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uDLWvN05CP .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-uDLWvN05CP .image-wrapper img {
    min-height: 100%;
  }
}
.cid-uDLWvN05CP .mbr-section-title {
  color: #000000;
}
.cid-uDLWvN05CP .mbr-text {
  color: #000000;
}
.cid-uDLWvNqAV0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-uDLWvNqAV0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLWvNqAV0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLWvNqAV0 .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uDLWvNqAV0 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uDLWvNqAV0 .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uDLWvNqAV0 .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-uDLWvNqAV0 .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uDLWvNqAV0 .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uDLWvNqAV0 .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-uDLWvNqAV0 .mbr-section-title {
  color: #FFFFFF;
  text-align: center;
}
.cid-uDLWvNqAV0 .mbr-desc {
  color: #FFFFFF;
}
.cid-uDLWvNqAV0 .mbr-text {
  color: #FFFFFF;
}
.cid-uDLWvNNko9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-uDLWvNNko9 .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-uDLWvNNko9 .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-uDLWvNNko9 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uDLWvNNko9 .container {
    padding: 0 24px;
  }
}
.cid-uDLWvNNko9 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uDLWvNNko9 .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uDLWvNNko9 .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uDLWvNNko9 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uDLWvNNko9 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uDLWvNNko9 .mbr-section-btn {
    text-align: left;
  }
}
.cid-uDLWvNNko9 .mbr-section-title {
  color: #F9F6E0;
}
.cid-uDLWvNNko9 .mbr-text {
  color: #ffffff;
}
.cid-uDLWvNNko9 .mbr-section-title,
.cid-uDLWvNNko9 .mbr-section-btn {
  color: #ffffff;
}
.cid-uDLWvO9Y7U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uDLWvO9Y7U .row {
    flex-direction: column-reverse;
  }
}
.cid-uDLWvO9Y7U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLWvO9Y7U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLWvO9Y7U .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uDLWvO9Y7U .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uDLWvO9Y7U .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uDLWvO9Y7U .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uDLWvO9Y7U .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uDLWvO9Y7U .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uDLWvO9Y7U .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uDLWvO9Y7U .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uDLWvO9Y7U .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uDLWvO9Y7U .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-uDLWvO9Y7U .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uDLWvO9Y7U .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-uDLWvO9Y7U .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-uDLWvO9Y7U .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uDLWvO9Y7U .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-uDLWvO9Y7U .image-wrapper img {
    min-height: 100%;
  }
}
.cid-uDLWvO9Y7U .mbr-section-title {
  color: #000000;
}
.cid-uDLWvO9Y7U .mbr-text {
  color: #000000;
}
.cid-uDLWvOAlKD {
  background-color: #efefec;
}
.cid-uDLWvOAlKD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uDLWvOAlKD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uDLWvOAlKD .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uDLWvOAlKD .row {
  align-items: center;
}
.cid-uDLWvOAlKD .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uDLWvOAlKD .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uDLWvOAlKD .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uDLWvOAlKD .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uDLWvOAlKD .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uDLWvOAlKD .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uDLWvOAlKD .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uDLWvOAlKD .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uDLWvOAlKD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uDLWvOAlKD .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uDLWvOAlKD .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uDLWvOAlKD .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uDLWvOAlKD .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uDLWvOAlKD .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uDLWvOAlKD .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uDLWvOAlKD .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uDLWvOAlKD .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uDLWvOAlKD .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uDLWvOAlKD .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uDLWvOAlKD .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uDLWvOAlKD .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uDLWvOAlKD .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uDLWvOAlKD .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uDLWvOAlKD .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uDLWvOAlKD .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uDLWvOAlKD .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uDLWvOAlKD .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uDLWvOAlKD .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uDLWvOAlKD .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uDLWvOAlKD .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uDLWvOAlKD .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uDLWvOAlKD .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uDLWvOAlKD .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uDLWvOAlKD .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uDLWvOAlKD .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uDLWvOAlKD .contact-container {
    width: 100%;
  }
}
.cid-uDLWvOAlKD .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uDLWvOAlKD .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uDLWvOAlKD .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uDLWvOAlKD .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uDLWvOAlKD .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uDLWvOAlKD .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uDLWvOAlKD .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uDLWvOAlKD .copyright {
  color: #efefec;
}
.cid-uDLWvOAlKD .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uDLWvOAlKD .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uDLWvOAlKD .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSjmJx0NPV {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uSjmJx0NPV .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uSjmJx0NPV nav.navbar {
  position: fixed;
}
.cid-uSjmJx0NPV .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSjmJx0NPV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSjmJx0NPV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSjmJx0NPV .dropdown-item:hover,
.cid-uSjmJx0NPV .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uSjmJx0NPV .dropdown-item:hover span {
  color: white;
}
.cid-uSjmJx0NPV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSjmJx0NPV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSjmJx0NPV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSjmJx0NPV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSjmJx0NPV .nav-link {
  position: relative;
}
.cid-uSjmJx0NPV .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSjmJx0NPV .container {
    flex-wrap: nowrap;
  }
}
.cid-uSjmJx0NPV .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSjmJx0NPV .dropdown-menu,
.cid-uSjmJx0NPV .navbar.opened {
  background: #ffffff !important;
}
.cid-uSjmJx0NPV .nav-item:focus,
.cid-uSjmJx0NPV .nav-link:focus {
  outline: none;
}
.cid-uSjmJx0NPV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSjmJx0NPV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSjmJx0NPV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSjmJx0NPV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSjmJx0NPV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSjmJx0NPV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSjmJx0NPV .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uSjmJx0NPV .navbar.opened {
  transition: all 0.3s;
}
.cid-uSjmJx0NPV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSjmJx0NPV .navbar .navbar-logo img {
  width: auto;
}
.cid-uSjmJx0NPV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSjmJx0NPV .navbar.collapsed {
  justify-content: center;
}
.cid-uSjmJx0NPV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSjmJx0NPV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSjmJx0NPV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uSjmJx0NPV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSjmJx0NPV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSjmJx0NPV .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uSjmJx0NPV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSjmJx0NPV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSjmJx0NPV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSjmJx0NPV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSjmJx0NPV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSjmJx0NPV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSjmJx0NPV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSjmJx0NPV .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uSjmJx0NPV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSjmJx0NPV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSjmJx0NPV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSjmJx0NPV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSjmJx0NPV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSjmJx0NPV .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uSjmJx0NPV .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uSjmJx0NPV .navbar.navbar-short {
  min-height: 80px;
}
.cid-uSjmJx0NPV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSjmJx0NPV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSjmJx0NPV .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSjmJx0NPV .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSjmJx0NPV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSjmJx0NPV .dropdown-item.active,
.cid-uSjmJx0NPV .dropdown-item:active {
  background-color: transparent;
}
.cid-uSjmJx0NPV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSjmJx0NPV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSjmJx0NPV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSjmJx0NPV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uSjmJx0NPV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSjmJx0NPV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSjmJx0NPV ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSjmJx0NPV .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSjmJx0NPV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSjmJx0NPV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uSjmJx0NPV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSjmJx0NPV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSjmJx0NPV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSjmJx0NPV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSjmJx0NPV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSjmJx0NPV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSjmJx0NPV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSjmJx0NPV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSjmJx0NPV .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSjmJx0NPV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSjmJx0NPV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSjmJx0NPV .navbar {
    height: 70px;
  }
  .cid-uSjmJx0NPV .navbar.opened {
    height: auto;
  }
  .cid-uSjmJx0NPV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSjmJxqIVj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uSjmJxqIVj .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uSjmJxqIVj .photo-split .image-wrap img {
  max-width: 100%;
  max-height: 800px;
  z-index: 9;
  position: relative;
}
.cid-uSjmJxqIVj .photo-split .element-outer {
  border-radius: 100%;
  padding: 60px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uSjmJxqIVj .photo-split .element-outer2 {
  border-radius: 100%;
  padding: 100px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uSjmJxqIVj .photo-split .element-inner {
  position: absolute;
  z-index: 10;
  left: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uSjmJxqIVj .photo-split .element-inner .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 31px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4db;
  margin-right: 15px;
  z-index: 10;
}
.cid-uSjmJxqIVj .wrap-block {
  padding: 3rem 3rem;
}
.cid-uSjmJxqIVj .wrap-block .contents {
  margin-bottom: 40px;
  padding-right: 50px;
}
.cid-uSjmJxqIVj .wrap-block .contents .mbr-subtitle {
  color: #87e4db;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-uSjmJxqIVj .wrap-block .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-uSjmJxqIVj .wrap-block .contents .mbr-section-title {
  margin-bottom: 10px;
  color: #73c4bd;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.cid-uSjmJxqIVj .wrap-block .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
}
.cid-uSjmJxqIVj .wrap-block .contents .mbr-section-text.display-7 {
  font-size: 20px;
}
.cid-uSjmJxqIVj .wrap-block .contents .mbr-section-text.display-4 {
  font-size: 16px;
}
.cid-uSjmJxqIVj .wrap-block .contents h3 {
  color: #73c4bd;
  letter-spacing: -0.5px;
  line-height: 30px;
}
.cid-uSjmJxqIVj .wrap-block .contents h4 {
  color: #16324f;
}
.cid-uSjmJxqIVj .info-widget {
  padding-top: 0.5rem;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.cid-uSjmJxqIVj .info-widget .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 18px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4da;
  margin-right: 15px;
}
.cid-uSjmJxqIVj .info-widget .signature {
  height: 75px;
  display: inline-block;
  margin-right: 15px;
  object-fit: contain;
}
.cid-uSjmJxqIVj .info-widget .widget-content {
  display: flex;
  vertical-align: baseline;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uSjmJxqIVj .info-widget .widget-content .widget-title {
  margin-bottom: 7px;
  color: #73c4bd;
}
.cid-uSjmJxqIVj .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  color: #7e7e7e;
}
@media (max-width: 991px) {
  .cid-uSjmJxqIVj .photo-split {
    padding: 3rem 3rem;
  }
  .cid-uSjmJxqIVj .photo-split .element-outer,
  .cid-uSjmJxqIVj .photo-split .element-outer2 {
    display: none;
  }
  .cid-uSjmJxqIVj .photo-split .element-inner {
    left: 0;
  }
}
@media (max-width: 767px) {
  .cid-uSjmJxqIVj .mbr-section-title,
  .cid-uSjmJxqIVj .mbr-section-subtitle,
  .cid-uSjmJxqIVj .mbr-text {
    text-align: left !important;
  }
  .cid-uSjmJxqIVj .social-list {
    text-align: left !important;
  }
}
.cid-uSjmJxqIVj .boldSubtitle {
  margin-top: 40px !important;
}
@media (max-width: 500px) {
  .cid-uSjmJxqIVj .wrap-block {
    padding: 3rem 1rem;
  }
}
.cid-uSjmJxqIVj .wrap-block .contents h4,
.cid-uSjmJxqIVj .menu-content-right {
  color: #00acb1;
}
.cid-uSjmJxLfVm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uSjmJxLfVm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSjmJxLfVm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSjmJxLfVm .mbr-section-title {
  color: #00acb1;
}
.cid-uSjmJxLfVm .mbr-text {
  color: #00acb1;
}
.cid-uSjmJy3Ix6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uSjmJy3Ix6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSjmJy3Ix6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSjmJy3Ix6 .google-map {
  height: 35rem;
  position: relative;
}
.cid-uSjmJy3Ix6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uSjmJy3Ix6 .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-uSjmJy3Ix6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uSjmJy3Ix6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uSjmJyppn5 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uSjmJyppn5 .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #f3f7f9 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uSjmJyppn5 .mbr-iconfont {
  align-items: center;
}
.cid-uSjmJyppn5 .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-uSjmJyppn5 .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uSjmJyppn5 .icon-transition span:hover {
  background-color: #000000;
  color: #f3f7f9;
}
.cid-uSjmJyppn5 .social-media {
  padding: 0;
}
.cid-uSjmJyppn5 .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uSjmJyppn5 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uSjmJyppn5 .mbr-list,
.cid-uSjmJyppn5 .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uSjmJyppn5 .social-list {
    text-align: center !important;
  }
}
.cid-uSjmJyppn5 .mbr-section-title,
.cid-uSjmJyppn5 .social-list {
  color: #00acb1;
}
.cid-uSjmJyH3yG {
  background-color: #efefec;
}
.cid-uSjmJyH3yG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSjmJyH3yG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSjmJyH3yG .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uSjmJyH3yG .row {
  align-items: center;
}
.cid-uSjmJyH3yG .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uSjmJyH3yG .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSjmJyH3yG .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSjmJyH3yG .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uSjmJyH3yG .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uSjmJyH3yG .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uSjmJyH3yG .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uSjmJyH3yG .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uSjmJyH3yG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSjmJyH3yG .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSjmJyH3yG .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uSjmJyH3yG .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uSjmJyH3yG .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uSjmJyH3yG .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uSjmJyH3yG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uSjmJyH3yG .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSjmJyH3yG .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uSjmJyH3yG .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSjmJyH3yG .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSjmJyH3yG .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uSjmJyH3yG .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uSjmJyH3yG .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uSjmJyH3yG .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uSjmJyH3yG .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uSjmJyH3yG .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uSjmJyH3yG .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uSjmJyH3yG .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSjmJyH3yG .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uSjmJyH3yG .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uSjmJyH3yG .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uSjmJyH3yG .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uSjmJyH3yG .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uSjmJyH3yG .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uSjmJyH3yG .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSjmJyH3yG .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uSjmJyH3yG .contact-container {
    width: 100%;
  }
}
.cid-uSjmJyH3yG .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uSjmJyH3yG .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uSjmJyH3yG .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uSjmJyH3yG .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uSjmJyH3yG .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uSjmJyH3yG .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uSjmJyH3yG .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uSjmJyH3yG .copyright {
  color: #efefec;
}
.cid-uSjmJyH3yG .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uSjmJyH3yG .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSjmJyH3yG .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-ujYz15YIFx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-ujYz15YIFx .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-ujYz15YIFx nav.navbar {
  position: fixed;
}
.cid-ujYz15YIFx .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujYz15YIFx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ujYz15YIFx .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ujYz15YIFx .dropdown-item:hover,
.cid-ujYz15YIFx .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-ujYz15YIFx .dropdown-item:hover span {
  color: white;
}
.cid-ujYz15YIFx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ujYz15YIFx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ujYz15YIFx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ujYz15YIFx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ujYz15YIFx .nav-link {
  position: relative;
}
.cid-ujYz15YIFx .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ujYz15YIFx .container {
    flex-wrap: nowrap;
  }
}
.cid-ujYz15YIFx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ujYz15YIFx .dropdown-menu,
.cid-ujYz15YIFx .navbar.opened {
  background: #ffffff !important;
}
.cid-ujYz15YIFx .nav-item:focus,
.cid-ujYz15YIFx .nav-link:focus {
  outline: none;
}
.cid-ujYz15YIFx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ujYz15YIFx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ujYz15YIFx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ujYz15YIFx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ujYz15YIFx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ujYz15YIFx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ujYz15YIFx .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-ujYz15YIFx .navbar.opened {
  transition: all 0.3s;
}
.cid-ujYz15YIFx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ujYz15YIFx .navbar .navbar-logo img {
  width: auto;
}
.cid-ujYz15YIFx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ujYz15YIFx .navbar.collapsed {
  justify-content: center;
}
.cid-ujYz15YIFx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ujYz15YIFx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ujYz15YIFx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-ujYz15YIFx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ujYz15YIFx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ujYz15YIFx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ujYz15YIFx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ujYz15YIFx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ujYz15YIFx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ujYz15YIFx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ujYz15YIFx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ujYz15YIFx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ujYz15YIFx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ujYz15YIFx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ujYz15YIFx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ujYz15YIFx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ujYz15YIFx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ujYz15YIFx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ujYz15YIFx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ujYz15YIFx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ujYz15YIFx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ujYz15YIFx .navbar.navbar-short {
  min-height: 80px;
}
.cid-ujYz15YIFx .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ujYz15YIFx .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ujYz15YIFx .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ujYz15YIFx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ujYz15YIFx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujYz15YIFx .dropdown-item.active,
.cid-ujYz15YIFx .dropdown-item:active {
  background-color: transparent;
}
.cid-ujYz15YIFx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ujYz15YIFx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ujYz15YIFx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ujYz15YIFx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-ujYz15YIFx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ujYz15YIFx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujYz15YIFx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ujYz15YIFx .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ujYz15YIFx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-ujYz15YIFx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-ujYz15YIFx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ujYz15YIFx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujYz15YIFx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ujYz15YIFx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ujYz15YIFx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujYz15YIFx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ujYz15YIFx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ujYz15YIFx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ujYz15YIFx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ujYz15YIFx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujYz15YIFx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ujYz15YIFx .navbar {
    height: 70px;
  }
  .cid-ujYz15YIFx .navbar.opened {
    height: auto;
  }
  .cid-ujYz15YIFx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ujYz16Nmej {
  background-image: url("../../../assets/images/mbr-1920x1392.jpeg");
}
.cid-ujYz16Nmej .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujYz16Nmej .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujYz16Nmej .mbr-section-title {
  color: #FFFFFF;
}
.cid-ujYz16Nmej .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-ujYz16Nmej .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-ujYz16Nmej .mbr-section-btn {
  margin-top: 18px;
}
.cid-ujYz16Nmej .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-ujYz16Nmej .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-ukaeczMPSc {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f5f7fa;
}
.cid-ukaeczMPSc .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-ukaeczMPSc .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-ukaeczMPSc .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-ukaeczMPSc .mbr-section-subtitle {
  color: #00acb1;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-ukaeczMPSc .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-ukaeczMPSc .mbr-text {
  color: #6d7a8c;
}
.cid-ukadWXS4OP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpeg");
}
.cid-ukadWXS4OP .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-ukadWXS4OP .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-ukadWXS4OP .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-ukadWXS4OP .container {
    padding: 0 24px;
  }
}
.cid-ukadWXS4OP .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ukadWXS4OP .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-ukadWXS4OP .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ukadWXS4OP .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ukadWXS4OP .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-ukadWXS4OP .mbr-section-btn {
    text-align: left;
  }
}
.cid-ukadWXS4OP .mbr-section-title {
  color: #F9F6E0;
}
.cid-ukadWXS4OP .mbr-text {
  color: #ffffff;
}
.cid-ukadWXS4OP .mbr-section-title,
.cid-ukadWXS4OP .mbr-section-btn {
  color: #ffffff;
}
.cid-ujYz17vsvq {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-ujYz17vsvq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujYz17vsvq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujYz17vsvq .container-fluid {
  padding: 0 48px;
}
@media (max-width: 992px) {
  .cid-ujYz17vsvq .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-ujYz17vsvq .container {
    padding: 0 16px;
  }
}
.cid-ujYz17vsvq .row {
  justify-content: center;
}
.cid-ujYz17vsvq .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-ujYz17vsvq .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ujYz17vsvq .content-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-ujYz17vsvq .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-primary:hover,
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-secondary:hover,
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-success:hover,
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-info:hover,
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-warning:hover,
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-danger:hover,
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-black:hover,
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-white:hover,
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-primary:focus,
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-secondary:focus,
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-success:focus,
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-info:focus,
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-warning:focus,
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-danger:focus,
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-black:focus,
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
  border-color: #73c4bd !important;
}
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #87e4db !important;
  color: #16324f !important;
}
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
}
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #87e4da !important;
  color: #16324f !important;
}
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #16324f !important;
  color: #73c4bd !important;
  border-color: #16324f !important;
}
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #f4f7f8 !important;
  color: #16324f !important;
}
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
}
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.cid-ujYz17vsvq .content-wrapper .mbr-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.cid-ujYz17vsvq .mbr-desc {
  color: #706cff;
}
.cid-ujYz17vsvq .mbr-section-title {
  color: #000000;
}
.cid-ujYz17vsvq .mbr-text {
  color: #000000;
}
.cid-ujYz17vsvq .mbr-section-btn {
  text-align: center;
}
.cid-ujYz17vsvq .mbr-section-title,
.cid-ujYz17vsvq .mbr-section-btn {
  color: #00acb1;
}
.cid-ukafmDD0Jw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
@media (max-width: 992px) {
  .cid-ukafmDD0Jw .row {
    flex-direction: column-reverse;
  }
}
.cid-ukafmDD0Jw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukafmDD0Jw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukafmDD0Jw .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-ukafmDD0Jw .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-ukafmDD0Jw .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-ukafmDD0Jw .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-ukafmDD0Jw .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-ukafmDD0Jw .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-ukafmDD0Jw .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-ukafmDD0Jw .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ukafmDD0Jw .text-wrapper {
    margin: 0 30px;
  }
}
.cid-ukafmDD0Jw .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-ukafmDD0Jw .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-ukafmDD0Jw .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-ukafmDD0Jw .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-ukafmDD0Jw .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-ukafmDD0Jw .image-wrapper {
    margin: 30px;
  }
}
.cid-ukafmDD0Jw .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukafmDD0Jw .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-ukafmDD0Jw .image-wrapper img {
    min-height: 100%;
  }
}
.cid-ukafmDD0Jw .mbr-section-title {
  color: #000000;
}
.cid-ukafmDD0Jw .mbr-text {
  color: #ffffff;
}
.cid-ukafmDD0Jw .mbr-section-title,
.cid-ukafmDD0Jw .mbr-section-btn {
  color: #ffffff;
}
.cid-ujZtSJGrkK {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}
.cid-ujZtSJGrkK .decor-wrap_1 {
  position: absolute;
  top: -4rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-ujZtSJGrkK .decor-wrap_2 {
  position: absolute;
  bottom: 4rem;
  left: -6rem;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-ujZtSJGrkK .decor-wrap_3 {
  position: absolute;
  bottom: -55%;
  right: -2rem;
  width: 422px;
  height: 422px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-ujZtSJGrkK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujZtSJGrkK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujZtSJGrkK .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ujZtSJGrkK .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ujZtSJGrkK .container {
    padding: 0 30px;
  }
}
.cid-ujZtSJGrkK .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-ujZtSJGrkK .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-ujZtSJGrkK .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ujZtSJGrkK .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-ujZtSJGrkK .mbr-section-title {
  color: #ffffff;
}
.cid-ujZtSJGrkK .mbr-text,
.cid-ujZtSJGrkK .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-ujZtSJGrkK .mbr-section-title,
.cid-ujZtSJGrkK .mbr-section-btn {
  text-align: center;
  color: #00acb1;
}
.cid-ujZnXgsipi {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ujZnXgsipi .img-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-ujZnXgsipi img {
  margin: auto;
  border-radius: 15px;
  object-fit: cover;
  max-height: 150px;
}
.cid-ujZnXgsipi .row {
  align-items: flex-start;
}
.cid-ujZnXgsipi .card-wrapper {
  border-radius: 25px;
  background: #00acb1;
}
@media (max-width: 992px) {
  .cid-ujZnXgsipi .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-ujZnXgsipi .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-ujZnXgsipi .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 425px) {
  .cid-ujZnXgsipi .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ujZnXgsipi .card-box {
  min-height: 230px;
}
@media (max-width: 1200px) {
  .cid-ujZnXgsipi .card-box {
    min-height: 290px;
  }
}
@media (max-width: 768px) {
  .cid-ujZnXgsipi .card-box {
    min-height: auto;
  }
}
.cid-ujZnXgsipi .card-title {
  margin-bottom: 1rem;
}
.cid-ujZnXgsipi .mbr-text {
  margin-bottom: 1rem;
  color: #F0F4FF;
  text-align: left;
}
.cid-ujZnXgsipi .btn {
  width: 200px;
  height: 55px;
  box-shadow: none;
}
.cid-ujZnXgsipi .card-title,
.cid-ujZnXgsipi .mbr-section-btn {
  color: #FFFFFF;
  text-align: center;
}
.cid-ujZqKTLNlw {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ujZqKTLNlw .img-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-ujZqKTLNlw img {
  margin: auto;
  border-radius: 15px;
  object-fit: cover;
  max-height: 150px;
}
.cid-ujZqKTLNlw .row {
  align-items: flex-start;
}
.cid-ujZqKTLNlw .card-wrapper {
  border-radius: 25px;
  background: #00acb1;
}
@media (max-width: 992px) {
  .cid-ujZqKTLNlw .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-ujZqKTLNlw .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-ujZqKTLNlw .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 425px) {
  .cid-ujZqKTLNlw .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ujZqKTLNlw .card-box {
  min-height: 230px;
}
@media (max-width: 1200px) {
  .cid-ujZqKTLNlw .card-box {
    min-height: 290px;
  }
}
@media (max-width: 768px) {
  .cid-ujZqKTLNlw .card-box {
    min-height: auto;
  }
}
.cid-ujZqKTLNlw .card-title {
  margin-bottom: 1rem;
}
.cid-ujZqKTLNlw .mbr-text {
  margin-bottom: 1rem;
  color: #F0F4FF;
  text-align: left;
}
.cid-ujZqKTLNlw .btn {
  width: 200px;
  height: 55px;
  box-shadow: none;
}
.cid-ujZqKTLNlw .card-title,
.cid-ujZqKTLNlw .mbr-section-btn {
  color: #FFFFFF;
  text-align: center;
}
.cid-ukagi45WzQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpeg");
}
.cid-ukagi45WzQ .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-ukagi45WzQ .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-ukagi45WzQ .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-ukagi45WzQ .container {
    padding: 0 24px;
  }
}
.cid-ukagi45WzQ .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ukagi45WzQ .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-ukagi45WzQ .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-ukagi45WzQ .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ukagi45WzQ .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-ukagi45WzQ .mbr-section-btn {
    text-align: left;
  }
}
.cid-ukagi45WzQ .mbr-section-title {
  color: #F9F6E0;
}
.cid-ukagi45WzQ .mbr-text {
  color: #ffffff;
}
.cid-ukagi45WzQ .mbr-section-title,
.cid-ukagi45WzQ .mbr-section-btn {
  color: #ffffff;
}
.cid-ujZ7d14HB8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff3f3;
}
.cid-ujZ7d14HB8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujZ7d14HB8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujZ7d14HB8 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ujZ7d14HB8 .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-ujZ7d14HB8 .container {
    padding: 0 25px;
  }
}
.cid-ujZ7d14HB8 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ujZ7d14HB8 .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-ujZ7d14HB8 .image-wrapper img {
  height: 570px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ujZ7d14HB8 .image-wrapper img {
    height: 350px;
  }
}
.cid-ujZ7d14HB8 .content-wrapper {
  margin-left: 40px;
  margin-left: 0;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-ujZ7d14HB8 .content-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-ujZ7d14HB8 .content-wrapper {
    margin: 0;
  }
}
.cid-ujZ7d14HB8 .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  margin-bottom: 8px;
  background-color: #87e4db;
  padding: 2px 4px 0;
}
.cid-ujZ7d14HB8 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ujZ7d14HB8 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ujZ7d14HB8 .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-ujZ7d14HB8 .content-wrapper .contacts-wrap {
  margin-top: 30px;
}
.cid-ujZ7d14HB8 .content-wrapper .contacts-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-ujZ7d14HB8 .content-wrapper .contacts-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-ujZ7d14HB8 .content-wrapper .contacts-wrap .list .item-wrap {
  margin-bottom: 10px;
}
.cid-ujZ7d14HB8 .content-wrapper .contacts-wrap .list .item-wrap:hover,
.cid-ujZ7d14HB8 .content-wrapper .contacts-wrap .list .item-wrap:focus {
  text-decoration: underline;
}
.cid-ujZ7d14HB8 .content-wrapper .social-wrap {
  margin-top: 30px;
}
.cid-ujZ7d14HB8 .content-wrapper .social-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-ujZ7d14HB8 .content-wrapper .social-wrap .social-row {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-ujZ7d14HB8 .content-wrapper .social-wrap .social-row .soc-item {
  margin-right: 10px;
}
.cid-ujZ7d14HB8 .content-wrapper .social-wrap .social-row .soc-item a:hover .mbr-iconfont {
  background-color: #a0ffc2;
}
.cid-ujZ7d14HB8 .content-wrapper .social-wrap .social-row .soc-item a .mbr-iconfont {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  color: #2f2e30;
}
.cid-ujZ7d14HB8 .mbr-section-title {
  color: #2f2e30;
}
.cid-ujZ7d14HB8 .mbr-desc {
  color: #2f2e30;
}
.cid-ujZ7d14HB8 .mbr-text {
  color: #2f2e30;
}
.cid-ujZ7d14HB8 .mbr-section-subtitle {
  color: #2f2e30;
}
.cid-ujZ7d14HB8 .list {
  color: #2f2e30;
}
.cid-ujZ7d14HB8 .mbr-section-title,
.cid-ujZ7d14HB8 .mbr-section-btn {
  color: #00acb1;
}
.cid-ujZ8kiKHgc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff3f3;
}
.cid-ujZ8kiKHgc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujZ8kiKHgc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujZ8kiKHgc .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ujZ8kiKHgc .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-ujZ8kiKHgc .container {
    padding: 0 25px;
  }
}
.cid-ujZ8kiKHgc .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ujZ8kiKHgc .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-ujZ8kiKHgc .image-wrapper img {
  height: 570px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ujZ8kiKHgc .image-wrapper img {
    height: 350px;
  }
}
.cid-ujZ8kiKHgc .content-wrapper {
  margin-left: 40px;
}
@media (max-width: 992px) {
  .cid-ujZ8kiKHgc .content-wrapper {
    margin: 0;
  }
}
.cid-ujZ8kiKHgc .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  margin-bottom: 8px;
  background-color: #87e4db;
  padding: 2px 4px 0;
}
.cid-ujZ8kiKHgc .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ujZ8kiKHgc .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ujZ8kiKHgc .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-ujZ8kiKHgc .content-wrapper .contacts-wrap {
  margin-top: 30px;
}
.cid-ujZ8kiKHgc .content-wrapper .contacts-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-ujZ8kiKHgc .content-wrapper .contacts-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-ujZ8kiKHgc .content-wrapper .contacts-wrap .list .item-wrap {
  margin-bottom: 10px;
}
.cid-ujZ8kiKHgc .content-wrapper .contacts-wrap .list .item-wrap:hover,
.cid-ujZ8kiKHgc .content-wrapper .contacts-wrap .list .item-wrap:focus {
  text-decoration: underline;
}
.cid-ujZ8kiKHgc .content-wrapper .social-wrap {
  margin-top: 30px;
}
.cid-ujZ8kiKHgc .content-wrapper .social-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-ujZ8kiKHgc .content-wrapper .social-wrap .social-row {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-ujZ8kiKHgc .content-wrapper .social-wrap .social-row .soc-item {
  margin-right: 10px;
}
.cid-ujZ8kiKHgc .content-wrapper .social-wrap .social-row .soc-item a:hover .mbr-iconfont {
  background-color: #a0ffc2;
}
.cid-ujZ8kiKHgc .content-wrapper .social-wrap .social-row .soc-item a .mbr-iconfont {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  color: #2f2e30;
}
.cid-ujZ8kiKHgc .mbr-section-title {
  color: #2f2e30;
}
.cid-ujZ8kiKHgc .mbr-desc {
  color: #2f2e30;
}
.cid-ujZ8kiKHgc .mbr-text {
  color: #2f2e30;
}
.cid-ujZ8kiKHgc .mbr-section-subtitle {
  color: #2f2e30;
}
.cid-ujZ8kiKHgc .list {
  color: #2f2e30;
}
.cid-ujZ8kiKHgc .mbr-section-title,
.cid-ujZ8kiKHgc .mbr-section-btn {
  color: #00acb1;
}
.cid-ujZ8XcPs1u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff3f3;
}
.cid-ujZ8XcPs1u .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujZ8XcPs1u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujZ8XcPs1u .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ujZ8XcPs1u .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-ujZ8XcPs1u .container {
    padding: 0 25px;
  }
}
.cid-ujZ8XcPs1u .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-ujZ8XcPs1u .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-ujZ8XcPs1u .image-wrapper img {
  height: 570px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ujZ8XcPs1u .image-wrapper img {
    height: 350px;
  }
}
.cid-ujZ8XcPs1u .content-wrapper {
  margin-left: 40px;
  margin-left: 0;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-ujZ8XcPs1u .content-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-ujZ8XcPs1u .content-wrapper {
    margin: 0;
  }
}
.cid-ujZ8XcPs1u .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  margin-bottom: 8px;
  background-color: #87e4db;
  padding: 2px 4px 0;
}
.cid-ujZ8XcPs1u .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-ujZ8XcPs1u .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ujZ8XcPs1u .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-ujZ8XcPs1u .content-wrapper .contacts-wrap {
  margin-top: 30px;
}
.cid-ujZ8XcPs1u .content-wrapper .contacts-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-ujZ8XcPs1u .content-wrapper .contacts-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-ujZ8XcPs1u .content-wrapper .contacts-wrap .list .item-wrap {
  margin-bottom: 10px;
}
.cid-ujZ8XcPs1u .content-wrapper .contacts-wrap .list .item-wrap:hover,
.cid-ujZ8XcPs1u .content-wrapper .contacts-wrap .list .item-wrap:focus {
  text-decoration: underline;
}
.cid-ujZ8XcPs1u .content-wrapper .social-wrap {
  margin-top: 30px;
}
.cid-ujZ8XcPs1u .content-wrapper .social-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-ujZ8XcPs1u .content-wrapper .social-wrap .social-row {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-ujZ8XcPs1u .content-wrapper .social-wrap .social-row .soc-item {
  margin-right: 10px;
}
.cid-ujZ8XcPs1u .content-wrapper .social-wrap .social-row .soc-item a:hover .mbr-iconfont {
  background-color: #a0ffc2;
}
.cid-ujZ8XcPs1u .content-wrapper .social-wrap .social-row .soc-item a .mbr-iconfont {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  color: #2f2e30;
}
.cid-ujZ8XcPs1u .mbr-section-title {
  color: #2f2e30;
}
.cid-ujZ8XcPs1u .mbr-desc {
  color: #2f2e30;
}
.cid-ujZ8XcPs1u .mbr-text {
  color: #2f2e30;
}
.cid-ujZ8XcPs1u .mbr-section-subtitle {
  color: #2f2e30;
}
.cid-ujZ8XcPs1u .list {
  color: #2f2e30;
}
.cid-ujZ8XcPs1u .mbr-section-title,
.cid-ujZ8XcPs1u .mbr-section-btn {
  color: #00acb1;
}
.cid-uSSq7GSUh3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uSSq7GSUh3 .container-fluid {
  padding: 0 3rem;
}
.cid-uSSq7GSUh3 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #87e4db 50%, #73c4bd 120%);
  display: inline-block;
}
.cid-uSSq7GSUh3 .mbr-section-subtitle {
  color: #767676;
}
.cid-uSSq7GSUh3 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uSSq7GSUh3 .table-wrapper {
  margin: 0 auto;
}
.cid-uSSq7GSUh3 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uSSq7GSUh3 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #ffffff;
  color: white;
  vertical-align: middle;
}
.cid-uSSq7GSUh3 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-uSSq7GSUh3 tr:hover {
  background-color: #efefef !important;
}
.cid-uSSq7GSUh3 .table-striped tbody tr:nth-of-type(odd) {
  background: none;
}
.cid-uSSq7GSUh3 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uSSq7GSUh3 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uSSq7GSUh3 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uSSq7GSUh3 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-uSSq7GSUh3 .dataTables_wrapper {
  display: block;
}
.cid-uSSq7GSUh3 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uSSq7GSUh3 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uSSq7GSUh3 .head-item:after,
.cid-uSSq7GSUh3 .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-uSSq7GSUh3 .dataTables_filter {
    text-align: center;
  }
  .cid-uSSq7GSUh3 .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-uSSq7GSUh3 .dataTables_filter {
    text-align: center;
  }
  .cid-uSSq7GSUh3 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-uSSq7GSUh3 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uSSq7GSUh3 table th,
  .cid-uSSq7GSUh3 table td {
    padding: .75rem;
  }
}
.cid-uSSq7GSUh3 .body-item {
  text-align: left;
}
.cid-uSSq7GSUh3 .head-item {
  color: #00acb1;
  text-align: left;
}
.cid-uSSq7GSUh3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSSq7GSUh3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSSq7GSUh3 .mbr-section-title,
.cid-uSSq7GSUh3 .underline {
  color: #00acb1;
}
.cid-ujYz19HtEM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-ujYz19HtEM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujYz19HtEM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujYz19HtEM .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-ujYz19HtEM .text-wrapper {
    margin: 0 30px;
  }
}
.cid-ujYz19HtEM .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-ujYz19HtEM .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-ujYz19HtEM .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-ujYz19HtEM .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-ujYz19HtEM .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-ujYz19HtEM .mbr-section-title {
  color: #FFFFFF;
}
.cid-ujYz19HtEM .mbr-desc {
  color: #FFFFFF;
}
.cid-ujYz19HtEM .mbr-text {
  color: #FFFFFF;
}
.cid-ujYz1crmQk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #87e4db;
}
@media (max-width: 992px) {
  .cid-ujYz1crmQk .form-title,
  .cid-ujYz1crmQk .form-wrapper {
    padding: 0;
  }
}
.cid-ujYz1crmQk .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-ujYz1crmQk .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-ujYz1crmQk .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-ujYz1crmQk .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-ujYz1crmQk .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-ujYz1crmQk .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-ujYz1crmQk .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-ujYz1crmQk .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-ujYz1crmQk .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-ujYz1crmQk .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-ujYz1crmQk .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-ujYz1crmQk .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-ujYz1crmQk .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-ujYz1crmQk .mbr-form {
    margin: 0 30px;
  }
}
.cid-ujYz1crmQk .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-ujYz1crmQk .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-ujYz1crmQk .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-ujYz1crmQk .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-ujYz1crmQk .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-ujYz1crmQk .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-ujYz1crmQk .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-ujYz1crmQk .mbr-section-title {
  color: #00acb1;
}
.cid-ujYz1crmQk .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-ujYz1e1nMw {
  background-color: #efefec;
}
.cid-ujYz1e1nMw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ujYz1e1nMw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ujYz1e1nMw .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-ujYz1e1nMw .row {
  align-items: center;
}
.cid-ujYz1e1nMw .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-ujYz1e1nMw .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-ujYz1e1nMw .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-ujYz1e1nMw .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-ujYz1e1nMw .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-ujYz1e1nMw .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-ujYz1e1nMw .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-ujYz1e1nMw .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-ujYz1e1nMw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ujYz1e1nMw .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ujYz1e1nMw .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-ujYz1e1nMw .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-ujYz1e1nMw .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-ujYz1e1nMw .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-ujYz1e1nMw .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-ujYz1e1nMw .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ujYz1e1nMw .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-ujYz1e1nMw .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-ujYz1e1nMw .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-ujYz1e1nMw .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-ujYz1e1nMw .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-ujYz1e1nMw .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-ujYz1e1nMw .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-ujYz1e1nMw .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-ujYz1e1nMw .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-ujYz1e1nMw .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-ujYz1e1nMw .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-ujYz1e1nMw .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-ujYz1e1nMw .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-ujYz1e1nMw .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-ujYz1e1nMw .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-ujYz1e1nMw .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-ujYz1e1nMw .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-ujYz1e1nMw .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ujYz1e1nMw .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-ujYz1e1nMw .contact-container {
    width: 100%;
  }
}
.cid-ujYz1e1nMw .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-ujYz1e1nMw .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-ujYz1e1nMw .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-ujYz1e1nMw .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-ujYz1e1nMw .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-ujYz1e1nMw .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-ujYz1e1nMw .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-ujYz1e1nMw .copyright {
  color: #efefec;
}
.cid-ujYz1e1nMw .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-ujYz1e1nMw .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-ujYz1e1nMw .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSSxUAVzGp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uSSxUAVzGp .container-fluid {
  padding: 0 3rem;
}
.cid-uSSxUAVzGp .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #87e4db 50%, #73c4bd 120%);
  display: inline-block;
}
.cid-uSSxUAVzGp .mbr-section-subtitle {
  color: #767676;
}
.cid-uSSxUAVzGp .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uSSxUAVzGp .table-wrapper {
  margin: 0 auto;
}
.cid-uSSxUAVzGp table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uSSxUAVzGp table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #ffffff;
  color: white;
  vertical-align: middle;
}
.cid-uSSxUAVzGp table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-uSSxUAVzGp tr:hover {
  background-color: #efefef !important;
}
.cid-uSSxUAVzGp .table-striped tbody tr:nth-of-type(odd) {
  background: none;
}
.cid-uSSxUAVzGp .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uSSxUAVzGp .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uSSxUAVzGp .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uSSxUAVzGp .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-uSSxUAVzGp .dataTables_wrapper {
  display: block;
}
.cid-uSSxUAVzGp .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uSSxUAVzGp .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uSSxUAVzGp .head-item:after,
.cid-uSSxUAVzGp .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-uSSxUAVzGp .dataTables_filter {
    text-align: center;
  }
  .cid-uSSxUAVzGp .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-uSSxUAVzGp .dataTables_filter {
    text-align: center;
  }
  .cid-uSSxUAVzGp .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-uSSxUAVzGp .container-fluid {
    padding: 0 1rem;
  }
  .cid-uSSxUAVzGp table th,
  .cid-uSSxUAVzGp table td {
    padding: .75rem;
  }
}
.cid-uSSxUAVzGp .body-item {
  text-align: left;
}
.cid-uSSxUAVzGp .head-item {
  color: #00acb1;
  text-align: left;
}
.cid-uSSxUAVzGp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSSxUAVzGp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSSxUAVzGp .mbr-section-title,
.cid-uSSxUAVzGp .underline {
  color: #00acb1;
}
.cid-uSREopsqRQ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uSREopsqRQ .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uSREopsqRQ nav.navbar {
  position: fixed;
}
.cid-uSREopsqRQ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSREopsqRQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSREopsqRQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSREopsqRQ .dropdown-item:hover,
.cid-uSREopsqRQ .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uSREopsqRQ .dropdown-item:hover span {
  color: white;
}
.cid-uSREopsqRQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSREopsqRQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSREopsqRQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSREopsqRQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSREopsqRQ .nav-link {
  position: relative;
}
.cid-uSREopsqRQ .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSREopsqRQ .container {
    flex-wrap: nowrap;
  }
}
.cid-uSREopsqRQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSREopsqRQ .dropdown-menu,
.cid-uSREopsqRQ .navbar.opened {
  background: #ffffff !important;
}
.cid-uSREopsqRQ .nav-item:focus,
.cid-uSREopsqRQ .nav-link:focus {
  outline: none;
}
.cid-uSREopsqRQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSREopsqRQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSREopsqRQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSREopsqRQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSREopsqRQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSREopsqRQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSREopsqRQ .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uSREopsqRQ .navbar.opened {
  transition: all 0.3s;
}
.cid-uSREopsqRQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSREopsqRQ .navbar .navbar-logo img {
  width: auto;
}
.cid-uSREopsqRQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSREopsqRQ .navbar.collapsed {
  justify-content: center;
}
.cid-uSREopsqRQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSREopsqRQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSREopsqRQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uSREopsqRQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSREopsqRQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSREopsqRQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uSREopsqRQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSREopsqRQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSREopsqRQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSREopsqRQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSREopsqRQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSREopsqRQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSREopsqRQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSREopsqRQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uSREopsqRQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSREopsqRQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSREopsqRQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSREopsqRQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSREopsqRQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSREopsqRQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uSREopsqRQ .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uSREopsqRQ .navbar.navbar-short {
  min-height: 80px;
}
.cid-uSREopsqRQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSREopsqRQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSREopsqRQ .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSREopsqRQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSREopsqRQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSREopsqRQ .dropdown-item.active,
.cid-uSREopsqRQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uSREopsqRQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSREopsqRQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSREopsqRQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSREopsqRQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uSREopsqRQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSREopsqRQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSREopsqRQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSREopsqRQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSREopsqRQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSREopsqRQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uSREopsqRQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSREopsqRQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSREopsqRQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSREopsqRQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSREopsqRQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSREopsqRQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSREopsqRQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSREopsqRQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSREopsqRQ .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSREopsqRQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSREopsqRQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSREopsqRQ .navbar {
    height: 70px;
  }
  .cid-uSREopsqRQ .navbar.opened {
    height: auto;
  }
  .cid-uSREopsqRQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSREopYI4z {
  background-image: url("../../../assets/images/mbr-1685x1122.jpg");
}
.cid-uSREopYI4z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSREopYI4z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSREopYI4z .mbr-section-title {
  color: #FFFFFF;
}
.cid-uSREopYI4z .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-uSREopYI4z .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-uSREopYI4z .mbr-section-btn {
  margin-top: 18px;
}
.cid-uSREopYI4z .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-uSREopYI4z .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-uSREoqlZzZ {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f5f7fa;
}
.cid-uSREoqlZzZ .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uSREoqlZzZ .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uSREoqlZzZ .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uSREoqlZzZ .mbr-section-subtitle {
  color: #00acb1;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uSREoqlZzZ .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uSREoqlZzZ .mbr-text {
  color: #6d7a8c;
}
.cid-uSREoqCO1u {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpeg");
}
.cid-uSREoqCO1u .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-uSREoqCO1u .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-uSREoqCO1u .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uSREoqCO1u .container {
    padding: 0 24px;
  }
}
.cid-uSREoqCO1u .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uSREoqCO1u .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uSREoqCO1u .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uSREoqCO1u .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uSREoqCO1u .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uSREoqCO1u .mbr-section-btn {
    text-align: left;
  }
}
.cid-uSREoqCO1u .mbr-section-title {
  color: #F9F6E0;
}
.cid-uSREoqCO1u .mbr-text {
  color: #ffffff;
}
.cid-uSREoqCO1u .mbr-section-title,
.cid-uSREoqCO1u .mbr-section-btn {
  color: #ffffff;
}
.cid-uSREoqWBc4 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-uSREoqWBc4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSREoqWBc4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSREoqWBc4 .container-fluid {
  padding: 0 48px;
}
@media (max-width: 992px) {
  .cid-uSREoqWBc4 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uSREoqWBc4 .container {
    padding: 0 16px;
  }
}
.cid-uSREoqWBc4 .row {
  justify-content: center;
}
.cid-uSREoqWBc4 .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uSREoqWBc4 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uSREoqWBc4 .content-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uSREoqWBc4 .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-primary:hover,
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-secondary:hover,
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-success:hover,
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-info:hover,
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-warning:hover,
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-danger:hover,
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-black:hover,
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-white:hover,
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-primary:focus,
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-secondary:focus,
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-success:focus,
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-info:focus,
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-warning:focus,
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-danger:focus,
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-black:focus,
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
  border-color: #73c4bd !important;
}
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #87e4db !important;
  color: #16324f !important;
}
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
}
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #87e4da !important;
  color: #16324f !important;
}
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #16324f !important;
  color: #73c4bd !important;
  border-color: #16324f !important;
}
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #f4f7f8 !important;
  color: #16324f !important;
}
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
}
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.cid-uSREoqWBc4 .content-wrapper .mbr-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.cid-uSREoqWBc4 .mbr-desc {
  color: #706cff;
}
.cid-uSREoqWBc4 .mbr-section-title {
  color: #000000;
}
.cid-uSREoqWBc4 .mbr-text {
  color: #000000;
}
.cid-uSREoqWBc4 .mbr-section-btn {
  text-align: center;
}
.cid-uSREoqWBc4 .mbr-section-title,
.cid-uSREoqWBc4 .mbr-section-btn {
  color: #00acb1;
}
.cid-uSREorkgM2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
@media (max-width: 992px) {
  .cid-uSREorkgM2 .row {
    flex-direction: column-reverse;
  }
}
.cid-uSREorkgM2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSREorkgM2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSREorkgM2 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uSREorkgM2 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uSREorkgM2 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uSREorkgM2 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uSREorkgM2 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uSREorkgM2 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uSREorkgM2 .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-uSREorkgM2 .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSREorkgM2 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uSREorkgM2 .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uSREorkgM2 .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-uSREorkgM2 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uSREorkgM2 .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-uSREorkgM2 .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSREorkgM2 .image-wrapper {
    margin: 30px;
  }
}
.cid-uSREorkgM2 .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSREorkgM2 .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-uSREorkgM2 .image-wrapper img {
    min-height: 100%;
  }
}
.cid-uSREorkgM2 .mbr-section-title {
  color: #000000;
}
.cid-uSREorkgM2 .mbr-text {
  color: #ffffff;
}
.cid-uSREorkgM2 .mbr-section-title,
.cid-uSREorkgM2 .mbr-section-btn {
  color: #ffffff;
}
.cid-uSREorHqe7 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}
.cid-uSREorHqe7 .decor-wrap_1 {
  position: absolute;
  top: -4rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-uSREorHqe7 .decor-wrap_2 {
  position: absolute;
  bottom: 4rem;
  left: -6rem;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-uSREorHqe7 .decor-wrap_3 {
  position: absolute;
  bottom: -55%;
  right: -2rem;
  width: 422px;
  height: 422px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-uSREorHqe7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSREorHqe7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSREorHqe7 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uSREorHqe7 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSREorHqe7 .container {
    padding: 0 30px;
  }
}
.cid-uSREorHqe7 .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uSREorHqe7 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uSREorHqe7 .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uSREorHqe7 .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-uSREorHqe7 .mbr-section-title {
  color: #ffffff;
}
.cid-uSREorHqe7 .mbr-text,
.cid-uSREorHqe7 .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uSREorHqe7 .mbr-section-title,
.cid-uSREorHqe7 .mbr-section-btn {
  text-align: center;
  color: #00acb1;
}
.cid-uSREos4Z1w {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uSREos4Z1w .img-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-uSREos4Z1w img {
  margin: auto;
  border-radius: 15px;
  object-fit: cover;
  max-height: 150px;
}
.cid-uSREos4Z1w .row {
  align-items: flex-start;
}
.cid-uSREos4Z1w .card-wrapper {
  border-radius: 25px;
  background: #00acb1;
}
@media (max-width: 992px) {
  .cid-uSREos4Z1w .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uSREos4Z1w .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSREos4Z1w .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 425px) {
  .cid-uSREos4Z1w .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uSREos4Z1w .card-box {
  min-height: 230px;
}
@media (max-width: 1200px) {
  .cid-uSREos4Z1w .card-box {
    min-height: 290px;
  }
}
@media (max-width: 768px) {
  .cid-uSREos4Z1w .card-box {
    min-height: auto;
  }
}
.cid-uSREos4Z1w .card-title {
  margin-bottom: 1rem;
}
.cid-uSREos4Z1w .mbr-text {
  margin-bottom: 1rem;
  color: #F0F4FF;
  text-align: left;
}
.cid-uSREos4Z1w .btn {
  width: 200px;
  height: 55px;
  box-shadow: none;
}
.cid-uSREos4Z1w .card-title,
.cid-uSREos4Z1w .mbr-section-btn {
  color: #FFFFFF;
  text-align: center;
}
.cid-uSREosDxZ4 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uSREosDxZ4 .img-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-uSREosDxZ4 img {
  margin: auto;
  border-radius: 15px;
  object-fit: cover;
  max-height: 150px;
}
.cid-uSREosDxZ4 .row {
  align-items: flex-start;
}
.cid-uSREosDxZ4 .card-wrapper {
  border-radius: 25px;
  background: #00acb1;
}
@media (max-width: 992px) {
  .cid-uSREosDxZ4 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uSREosDxZ4 .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSREosDxZ4 .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 425px) {
  .cid-uSREosDxZ4 .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uSREosDxZ4 .card-box {
  min-height: 230px;
}
@media (max-width: 1200px) {
  .cid-uSREosDxZ4 .card-box {
    min-height: 290px;
  }
}
@media (max-width: 768px) {
  .cid-uSREosDxZ4 .card-box {
    min-height: auto;
  }
}
.cid-uSREosDxZ4 .card-title {
  margin-bottom: 1rem;
}
.cid-uSREosDxZ4 .mbr-text {
  margin-bottom: 1rem;
  color: #F0F4FF;
  text-align: left;
}
.cid-uSREosDxZ4 .btn {
  width: 200px;
  height: 55px;
  box-shadow: none;
}
.cid-uSREosDxZ4 .card-title,
.cid-uSREosDxZ4 .mbr-section-btn {
  color: #FFFFFF;
  text-align: center;
}
.cid-uSREot6rTW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uSREot6rTW .row {
    flex-direction: column-reverse;
  }
}
.cid-uSREot6rTW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSREot6rTW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSREot6rTW .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uSREot6rTW .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uSREot6rTW .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uSREot6rTW .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uSREot6rTW .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uSREot6rTW .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uSREot6rTW .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-uSREot6rTW .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSREot6rTW .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uSREot6rTW .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uSREot6rTW .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-uSREot6rTW .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uSREot6rTW .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-uSREot6rTW .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSREot6rTW .image-wrapper {
    margin: 30px;
  }
}
.cid-uSREot6rTW .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSREot6rTW .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-uSREot6rTW .image-wrapper img {
    min-height: 100%;
  }
}
.cid-uSREot6rTW .mbr-section-title {
  color: #000000;
}
.cid-uSREot6rTW .mbr-text {
  color: #000000;
}
.cid-uSREot6rTW .mbr-section-title,
.cid-uSREot6rTW .mbr-section-btn {
  color: #00acb1;
}
.cid-uSREotvuMM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpeg");
}
.cid-uSREotvuMM .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-uSREotvuMM .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-uSREotvuMM .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uSREotvuMM .container {
    padding: 0 24px;
  }
}
.cid-uSREotvuMM .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uSREotvuMM .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uSREotvuMM .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uSREotvuMM .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uSREotvuMM .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uSREotvuMM .mbr-section-btn {
    text-align: left;
  }
}
.cid-uSREotvuMM .mbr-section-title {
  color: #F9F6E0;
}
.cid-uSREotvuMM .mbr-text {
  color: #ffffff;
}
.cid-uSREotvuMM .mbr-section-title,
.cid-uSREotvuMM .mbr-section-btn {
  color: #ffffff;
}
.cid-uSREotU0Lf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff3f3;
}
.cid-uSREotU0Lf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSREotU0Lf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSREotU0Lf .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uSREotU0Lf .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uSREotU0Lf .container {
    padding: 0 25px;
  }
}
.cid-uSREotU0Lf .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uSREotU0Lf .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uSREotU0Lf .image-wrapper img {
  height: 570px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uSREotU0Lf .image-wrapper img {
    height: 350px;
  }
}
.cid-uSREotU0Lf .content-wrapper {
  margin-left: 40px;
  margin-left: 0;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-uSREotU0Lf .content-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uSREotU0Lf .content-wrapper {
    margin: 0;
  }
}
.cid-uSREotU0Lf .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  margin-bottom: 8px;
  background-color: #87e4db;
  padding: 2px 4px 0;
}
.cid-uSREotU0Lf .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uSREotU0Lf .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uSREotU0Lf .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uSREotU0Lf .content-wrapper .contacts-wrap {
  margin-top: 30px;
}
.cid-uSREotU0Lf .content-wrapper .contacts-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-uSREotU0Lf .content-wrapper .contacts-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uSREotU0Lf .content-wrapper .contacts-wrap .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uSREotU0Lf .content-wrapper .contacts-wrap .list .item-wrap:hover,
.cid-uSREotU0Lf .content-wrapper .contacts-wrap .list .item-wrap:focus {
  text-decoration: underline;
}
.cid-uSREotU0Lf .content-wrapper .social-wrap {
  margin-top: 30px;
}
.cid-uSREotU0Lf .content-wrapper .social-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-uSREotU0Lf .content-wrapper .social-wrap .social-row {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uSREotU0Lf .content-wrapper .social-wrap .social-row .soc-item {
  margin-right: 10px;
}
.cid-uSREotU0Lf .content-wrapper .social-wrap .social-row .soc-item a:hover .mbr-iconfont {
  background-color: #a0ffc2;
}
.cid-uSREotU0Lf .content-wrapper .social-wrap .social-row .soc-item a .mbr-iconfont {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  color: #2f2e30;
}
.cid-uSREotU0Lf .mbr-section-title {
  color: #2f2e30;
}
.cid-uSREotU0Lf .mbr-desc {
  color: #2f2e30;
}
.cid-uSREotU0Lf .mbr-text {
  color: #2f2e30;
}
.cid-uSREotU0Lf .mbr-section-subtitle {
  color: #2f2e30;
}
.cid-uSREotU0Lf .list {
  color: #2f2e30;
}
.cid-uSREotU0Lf .mbr-section-title,
.cid-uSREotU0Lf .mbr-section-btn {
  color: #00acb1;
}
.cid-uSSy3HGrFX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uSSy3HGrFX .container-fluid {
  padding: 0 3rem;
}
.cid-uSSy3HGrFX .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #87e4db 50%, #73c4bd 120%);
  display: inline-block;
}
.cid-uSSy3HGrFX .mbr-section-subtitle {
  color: #767676;
}
.cid-uSSy3HGrFX .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uSSy3HGrFX .table-wrapper {
  margin: 0 auto;
}
.cid-uSSy3HGrFX table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uSSy3HGrFX table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #ffffff;
  color: white;
  vertical-align: middle;
}
.cid-uSSy3HGrFX table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-uSSy3HGrFX tr:hover {
  background-color: #efefef !important;
}
.cid-uSSy3HGrFX .table-striped tbody tr:nth-of-type(odd) {
  background: none;
}
.cid-uSSy3HGrFX .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uSSy3HGrFX .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uSSy3HGrFX .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uSSy3HGrFX .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-uSSy3HGrFX .dataTables_wrapper {
  display: block;
}
.cid-uSSy3HGrFX .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uSSy3HGrFX .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uSSy3HGrFX .head-item:after,
.cid-uSSy3HGrFX .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-uSSy3HGrFX .dataTables_filter {
    text-align: center;
  }
  .cid-uSSy3HGrFX .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-uSSy3HGrFX .dataTables_filter {
    text-align: center;
  }
  .cid-uSSy3HGrFX .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-uSSy3HGrFX .container-fluid {
    padding: 0 1rem;
  }
  .cid-uSSy3HGrFX table th,
  .cid-uSSy3HGrFX table td {
    padding: .75rem;
  }
}
.cid-uSSy3HGrFX .body-item {
  text-align: left;
}
.cid-uSSy3HGrFX .head-item {
  color: #00acb1;
  text-align: left;
}
.cid-uSSy3HGrFX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSSy3HGrFX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSSy3HGrFX .mbr-section-title,
.cid-uSSy3HGrFX .underline {
  color: #00acb1;
}
.cid-uSREovoGJl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-uSREovoGJl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSREovoGJl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSREovoGJl .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uSREovoGJl .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uSREovoGJl .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uSREovoGJl .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-uSREovoGJl .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSREovoGJl .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uSREovoGJl .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-uSREovoGJl .mbr-section-title {
  color: #FFFFFF;
}
.cid-uSREovoGJl .mbr-desc {
  color: #FFFFFF;
}
.cid-uSREovoGJl .mbr-text {
  color: #FFFFFF;
}
.cid-uSREovR7Aa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #87e4db;
}
@media (max-width: 992px) {
  .cid-uSREovR7Aa .form-title,
  .cid-uSREovR7Aa .form-wrapper {
    padding: 0;
  }
}
.cid-uSREovR7Aa .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uSREovR7Aa .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uSREovR7Aa .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uSREovR7Aa .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uSREovR7Aa .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-uSREovR7Aa .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-uSREovR7Aa .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uSREovR7Aa .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uSREovR7Aa .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uSREovR7Aa .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-uSREovR7Aa .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-uSREovR7Aa .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uSREovR7Aa .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-uSREovR7Aa .mbr-form {
    margin: 0 30px;
  }
}
.cid-uSREovR7Aa .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uSREovR7Aa .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uSREovR7Aa .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-uSREovR7Aa .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-uSREovR7Aa .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-uSREovR7Aa .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-uSREovR7Aa .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-uSREovR7Aa .mbr-section-title {
  color: #00acb1;
}
.cid-uSREovR7Aa .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uSREowprNp {
  background-color: #efefec;
}
.cid-uSREowprNp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSREowprNp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSREowprNp .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uSREowprNp .row {
  align-items: center;
}
.cid-uSREowprNp .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uSREowprNp .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSREowprNp .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSREowprNp .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uSREowprNp .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uSREowprNp .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uSREowprNp .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uSREowprNp .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uSREowprNp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSREowprNp .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSREowprNp .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uSREowprNp .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uSREowprNp .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uSREowprNp .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uSREowprNp .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uSREowprNp .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSREowprNp .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uSREowprNp .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSREowprNp .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSREowprNp .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uSREowprNp .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uSREowprNp .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uSREowprNp .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uSREowprNp .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uSREowprNp .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uSREowprNp .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uSREowprNp .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSREowprNp .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uSREowprNp .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uSREowprNp .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uSREowprNp .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uSREowprNp .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uSREowprNp .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uSREowprNp .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSREowprNp .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uSREowprNp .contact-container {
    width: 100%;
  }
}
.cid-uSREowprNp .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uSREowprNp .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uSREowprNp .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uSREowprNp .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uSREowprNp .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uSREowprNp .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uSREowprNp .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uSREowprNp .copyright {
  color: #efefec;
}
.cid-uSREowprNp .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uSREowprNp .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSREowprNp .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSROKVwsml {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uSROKVwsml .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uSROKVwsml nav.navbar {
  position: fixed;
}
.cid-uSROKVwsml .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSROKVwsml .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSROKVwsml .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSROKVwsml .dropdown-item:hover,
.cid-uSROKVwsml .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uSROKVwsml .dropdown-item:hover span {
  color: white;
}
.cid-uSROKVwsml .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSROKVwsml .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSROKVwsml .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSROKVwsml .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSROKVwsml .nav-link {
  position: relative;
}
.cid-uSROKVwsml .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSROKVwsml .container {
    flex-wrap: nowrap;
  }
}
.cid-uSROKVwsml .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSROKVwsml .dropdown-menu,
.cid-uSROKVwsml .navbar.opened {
  background: #ffffff !important;
}
.cid-uSROKVwsml .nav-item:focus,
.cid-uSROKVwsml .nav-link:focus {
  outline: none;
}
.cid-uSROKVwsml .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSROKVwsml .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSROKVwsml .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSROKVwsml .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSROKVwsml .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSROKVwsml .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSROKVwsml .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uSROKVwsml .navbar.opened {
  transition: all 0.3s;
}
.cid-uSROKVwsml .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSROKVwsml .navbar .navbar-logo img {
  width: auto;
}
.cid-uSROKVwsml .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSROKVwsml .navbar.collapsed {
  justify-content: center;
}
.cid-uSROKVwsml .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSROKVwsml .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSROKVwsml .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uSROKVwsml .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSROKVwsml .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSROKVwsml .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uSROKVwsml .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSROKVwsml .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSROKVwsml .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSROKVwsml .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSROKVwsml .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSROKVwsml .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSROKVwsml .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSROKVwsml .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uSROKVwsml .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSROKVwsml .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSROKVwsml .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSROKVwsml .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSROKVwsml .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSROKVwsml .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uSROKVwsml .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uSROKVwsml .navbar.navbar-short {
  min-height: 80px;
}
.cid-uSROKVwsml .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSROKVwsml .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSROKVwsml .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSROKVwsml .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSROKVwsml .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSROKVwsml .dropdown-item.active,
.cid-uSROKVwsml .dropdown-item:active {
  background-color: transparent;
}
.cid-uSROKVwsml .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSROKVwsml .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSROKVwsml .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSROKVwsml .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uSROKVwsml .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSROKVwsml .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSROKVwsml ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSROKVwsml .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSROKVwsml button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSROKVwsml button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uSROKVwsml button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSROKVwsml button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSROKVwsml button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSROKVwsml button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSROKVwsml nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSROKVwsml nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSROKVwsml nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSROKVwsml nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSROKVwsml .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSROKVwsml a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSROKVwsml .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSROKVwsml .navbar {
    height: 70px;
  }
  .cid-uSROKVwsml .navbar.opened {
    height: auto;
  }
  .cid-uSROKVwsml .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSROKWqXVs {
  background-image: url("../../../assets/images/mbr-1685x1090.jpg");
}
.cid-uSROKWqXVs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSROKWqXVs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSROKWqXVs .mbr-section-title {
  color: #FFFFFF;
}
.cid-uSROKWqXVs .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-uSROKWqXVs .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-uSROKWqXVs .mbr-section-btn {
  margin-top: 18px;
}
.cid-uSROKWqXVs .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-uSROKWqXVs .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-uSROKX4DMb {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f5f7fa;
}
.cid-uSROKX4DMb .second-bg-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-top-left-radius: 4.1666666667vw;
  border-top-right-radius: 4.1666666667vw;
}
.cid-uSROKX4DMb .mbr-section-title {
  color: #000000;
  margin-bottom: 1.736vw;
}
@media (max-width: 991px) {
  .cid-uSROKX4DMb .mbr-section-title {
    margin-bottom: 6.66vw;
  }
}
.cid-uSROKX4DMb .mbr-section-subtitle {
  color: #00acb1;
  margin-bottom: 1.736vw;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-uSROKX4DMb .mbr-section-subtitle {
    margin-bottom: 6.66vw;
  }
}
.cid-uSROKX4DMb .mbr-text {
  color: #6d7a8c;
}
.cid-uSROKXurbF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpeg");
}
.cid-uSROKXurbF .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-uSROKXurbF .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-uSROKXurbF .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uSROKXurbF .container {
    padding: 0 24px;
  }
}
.cid-uSROKXurbF .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uSROKXurbF .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uSROKXurbF .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uSROKXurbF .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uSROKXurbF .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uSROKXurbF .mbr-section-btn {
    text-align: left;
  }
}
.cid-uSROKXurbF .mbr-section-title {
  color: #F9F6E0;
}
.cid-uSROKXurbF .mbr-text {
  color: #ffffff;
}
.cid-uSROKXurbF .mbr-section-title,
.cid-uSROKXurbF .mbr-section-btn {
  color: #ffffff;
}
.cid-uSROKYQyt2 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-uSROKYQyt2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSROKYQyt2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSROKYQyt2 .container-fluid {
  padding: 0 48px;
}
@media (max-width: 992px) {
  .cid-uSROKYQyt2 .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uSROKYQyt2 .container {
    padding: 0 16px;
  }
}
.cid-uSROKYQyt2 .row {
  justify-content: center;
}
.cid-uSROKYQyt2 .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uSROKYQyt2 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uSROKYQyt2 .content-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uSROKYQyt2 .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-primary:hover,
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-secondary:hover,
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-success:hover,
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-info:hover,
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-warning:hover,
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-danger:hover,
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-black:hover,
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-white:hover,
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-primary:focus,
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-secondary:focus,
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-success:focus,
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-info:focus,
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-warning:focus,
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-danger:focus,
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-black:focus,
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
  border-color: #73c4bd !important;
}
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #87e4db !important;
  color: #16324f !important;
}
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
}
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #87e4da !important;
  color: #16324f !important;
}
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #16324f !important;
  color: #73c4bd !important;
  border-color: #16324f !important;
}
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #f4f7f8 !important;
  color: #16324f !important;
}
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
}
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.cid-uSROKYQyt2 .content-wrapper .mbr-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.cid-uSROKYQyt2 .mbr-desc {
  color: #706cff;
}
.cid-uSROKYQyt2 .mbr-section-title {
  color: #000000;
}
.cid-uSROKYQyt2 .mbr-text {
  color: #000000;
}
.cid-uSROKYQyt2 .mbr-section-btn {
  text-align: center;
}
.cid-uSROKYQyt2 .mbr-section-title,
.cid-uSROKYQyt2 .mbr-section-btn {
  color: #00acb1;
}
.cid-uSROKZlYt2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
@media (max-width: 992px) {
  .cid-uSROKZlYt2 .row {
    flex-direction: column-reverse;
  }
}
.cid-uSROKZlYt2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSROKZlYt2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSROKZlYt2 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uSROKZlYt2 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uSROKZlYt2 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uSROKZlYt2 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uSROKZlYt2 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uSROKZlYt2 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uSROKZlYt2 .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-uSROKZlYt2 .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSROKZlYt2 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uSROKZlYt2 .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uSROKZlYt2 .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-uSROKZlYt2 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uSROKZlYt2 .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-uSROKZlYt2 .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSROKZlYt2 .image-wrapper {
    margin: 30px;
  }
}
.cid-uSROKZlYt2 .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSROKZlYt2 .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-uSROKZlYt2 .image-wrapper img {
    min-height: 100%;
  }
}
.cid-uSROKZlYt2 .mbr-section-title {
  color: #000000;
}
.cid-uSROKZlYt2 .mbr-text {
  color: #ffffff;
}
.cid-uSROKZlYt2 .mbr-section-title,
.cid-uSROKZlYt2 .mbr-section-btn {
  color: #ffffff;
}
.cid-uSROKZK6eb {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}
.cid-uSROKZK6eb .decor-wrap_1 {
  position: absolute;
  top: -4rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-uSROKZK6eb .decor-wrap_2 {
  position: absolute;
  bottom: 4rem;
  left: -6rem;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-uSROKZK6eb .decor-wrap_3 {
  position: absolute;
  bottom: -55%;
  right: -2rem;
  width: 422px;
  height: 422px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-uSROKZK6eb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSROKZK6eb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSROKZK6eb .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uSROKZK6eb .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSROKZK6eb .container {
    padding: 0 30px;
  }
}
.cid-uSROKZK6eb .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uSROKZK6eb .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uSROKZK6eb .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uSROKZK6eb .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-uSROKZK6eb .mbr-section-title {
  color: #ffffff;
}
.cid-uSROKZK6eb .mbr-text,
.cid-uSROKZK6eb .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uSROKZK6eb .mbr-section-title,
.cid-uSROKZK6eb .mbr-section-btn {
  text-align: center;
  color: #00acb1;
}
.cid-uSROL088Hh {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uSROL088Hh .img-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-uSROL088Hh img {
  margin: auto;
  border-radius: 15px;
  object-fit: cover;
  max-height: 150px;
}
.cid-uSROL088Hh .row {
  align-items: flex-start;
}
.cid-uSROL088Hh .card-wrapper {
  border-radius: 25px;
  background: #00acb1;
}
@media (max-width: 992px) {
  .cid-uSROL088Hh .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uSROL088Hh .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSROL088Hh .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 425px) {
  .cid-uSROL088Hh .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uSROL088Hh .card-box {
  min-height: 230px;
}
@media (max-width: 1200px) {
  .cid-uSROL088Hh .card-box {
    min-height: 290px;
  }
}
@media (max-width: 768px) {
  .cid-uSROL088Hh .card-box {
    min-height: auto;
  }
}
.cid-uSROL088Hh .card-title {
  margin-bottom: 1rem;
}
.cid-uSROL088Hh .mbr-text {
  margin-bottom: 1rem;
  color: #F0F4FF;
  text-align: left;
}
.cid-uSROL088Hh .btn {
  width: 200px;
  height: 55px;
  box-shadow: none;
}
.cid-uSROL088Hh .card-title,
.cid-uSROL088Hh .mbr-section-btn {
  color: #FFFFFF;
  text-align: center;
}
.cid-uSROL0Cy9X {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uSROL0Cy9X .img-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-uSROL0Cy9X img {
  margin: auto;
  border-radius: 15px;
  object-fit: cover;
  max-height: 150px;
}
.cid-uSROL0Cy9X .row {
  align-items: flex-start;
}
.cid-uSROL0Cy9X .card-wrapper {
  border-radius: 25px;
  background: #00acb1;
}
@media (max-width: 992px) {
  .cid-uSROL0Cy9X .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uSROL0Cy9X .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uSROL0Cy9X .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 425px) {
  .cid-uSROL0Cy9X .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uSROL0Cy9X .card-box {
  min-height: 230px;
}
@media (max-width: 1200px) {
  .cid-uSROL0Cy9X .card-box {
    min-height: 290px;
  }
}
@media (max-width: 768px) {
  .cid-uSROL0Cy9X .card-box {
    min-height: auto;
  }
}
.cid-uSROL0Cy9X .card-title {
  margin-bottom: 1rem;
}
.cid-uSROL0Cy9X .mbr-text {
  margin-bottom: 1rem;
  color: #F0F4FF;
  text-align: left;
}
.cid-uSROL0Cy9X .btn {
  width: 200px;
  height: 55px;
  box-shadow: none;
}
.cid-uSROL0Cy9X .card-title,
.cid-uSROL0Cy9X .mbr-section-btn {
  color: #FFFFFF;
  text-align: center;
}
.cid-uSROL17W00 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uSROL17W00 .row {
    flex-direction: column-reverse;
  }
}
.cid-uSROL17W00 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSROL17W00 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSROL17W00 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uSROL17W00 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uSROL17W00 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uSROL17W00 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uSROL17W00 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uSROL17W00 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uSROL17W00 .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-uSROL17W00 .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSROL17W00 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uSROL17W00 .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uSROL17W00 .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-uSROL17W00 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uSROL17W00 .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-uSROL17W00 .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSROL17W00 .image-wrapper {
    margin: 30px;
  }
}
.cid-uSROL17W00 .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSROL17W00 .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-uSROL17W00 .image-wrapper img {
    min-height: 100%;
  }
}
.cid-uSROL17W00 .mbr-section-title {
  color: #000000;
}
.cid-uSROL17W00 .mbr-text {
  color: #000000;
}
.cid-uSROL17W00 .mbr-section-title,
.cid-uSROL17W00 .mbr-section-btn {
  color: #00acb1;
}
.cid-uSROL1Almi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpeg");
}
.cid-uSROL1Almi .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-uSROL1Almi .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-uSROL1Almi .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uSROL1Almi .container {
    padding: 0 24px;
  }
}
.cid-uSROL1Almi .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uSROL1Almi .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uSROL1Almi .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uSROL1Almi .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uSROL1Almi .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uSROL1Almi .mbr-section-btn {
    text-align: left;
  }
}
.cid-uSROL1Almi .mbr-section-title {
  color: #F9F6E0;
}
.cid-uSROL1Almi .mbr-text {
  color: #ffffff;
}
.cid-uSROL1Almi .mbr-section-title,
.cid-uSROL1Almi .mbr-section-btn {
  color: #ffffff;
}
.cid-uSS64ijrJi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff3f3;
}
.cid-uSS64ijrJi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSS64ijrJi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSS64ijrJi .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uSS64ijrJi .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uSS64ijrJi .container {
    padding: 0 25px;
  }
}
.cid-uSS64ijrJi .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uSS64ijrJi .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uSS64ijrJi .image-wrapper img {
  height: 570px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uSS64ijrJi .image-wrapper img {
    height: 350px;
  }
}
.cid-uSS64ijrJi .content-wrapper {
  margin-left: 40px;
}
@media (max-width: 992px) {
  .cid-uSS64ijrJi .content-wrapper {
    margin: 0;
  }
}
.cid-uSS64ijrJi .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  margin-bottom: 8px;
  background-color: #87e4db;
  padding: 2px 4px 0;
}
.cid-uSS64ijrJi .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uSS64ijrJi .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uSS64ijrJi .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uSS64ijrJi .content-wrapper .contacts-wrap {
  margin-top: 30px;
}
.cid-uSS64ijrJi .content-wrapper .contacts-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-uSS64ijrJi .content-wrapper .contacts-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uSS64ijrJi .content-wrapper .contacts-wrap .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uSS64ijrJi .content-wrapper .contacts-wrap .list .item-wrap:hover,
.cid-uSS64ijrJi .content-wrapper .contacts-wrap .list .item-wrap:focus {
  text-decoration: underline;
}
.cid-uSS64ijrJi .content-wrapper .social-wrap {
  margin-top: 30px;
}
.cid-uSS64ijrJi .content-wrapper .social-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-uSS64ijrJi .content-wrapper .social-wrap .social-row {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uSS64ijrJi .content-wrapper .social-wrap .social-row .soc-item {
  margin-right: 10px;
}
.cid-uSS64ijrJi .content-wrapper .social-wrap .social-row .soc-item a:hover .mbr-iconfont {
  background-color: #a0ffc2;
}
.cid-uSS64ijrJi .content-wrapper .social-wrap .social-row .soc-item a .mbr-iconfont {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  color: #2f2e30;
}
.cid-uSS64ijrJi .mbr-section-title {
  color: #2f2e30;
}
.cid-uSS64ijrJi .mbr-desc {
  color: #2f2e30;
}
.cid-uSS64ijrJi .mbr-text {
  color: #2f2e30;
}
.cid-uSS64ijrJi .mbr-section-subtitle {
  color: #2f2e30;
}
.cid-uSS64ijrJi .list {
  color: #2f2e30;
}
.cid-uSS64ijrJi .mbr-section-title,
.cid-uSS64ijrJi .mbr-section-btn {
  color: #00acb1;
}
.cid-uSSybjidpE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uSSybjidpE .container-fluid {
  padding: 0 3rem;
}
.cid-uSSybjidpE .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #87e4db 50%, #73c4bd 120%);
  display: inline-block;
}
.cid-uSSybjidpE .mbr-section-subtitle {
  color: #767676;
}
.cid-uSSybjidpE .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uSSybjidpE .table-wrapper {
  margin: 0 auto;
}
.cid-uSSybjidpE table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uSSybjidpE table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #ffffff;
  color: white;
  vertical-align: middle;
}
.cid-uSSybjidpE table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-uSSybjidpE tr:hover {
  background-color: #efefef !important;
}
.cid-uSSybjidpE .table-striped tbody tr:nth-of-type(odd) {
  background: none;
}
.cid-uSSybjidpE .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uSSybjidpE .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uSSybjidpE .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uSSybjidpE .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-uSSybjidpE .dataTables_wrapper {
  display: block;
}
.cid-uSSybjidpE .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uSSybjidpE .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uSSybjidpE .head-item:after,
.cid-uSSybjidpE .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-uSSybjidpE .dataTables_filter {
    text-align: center;
  }
  .cid-uSSybjidpE .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-uSSybjidpE .dataTables_filter {
    text-align: center;
  }
  .cid-uSSybjidpE .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-uSSybjidpE .container-fluid {
    padding: 0 1rem;
  }
  .cid-uSSybjidpE table th,
  .cid-uSSybjidpE table td {
    padding: .75rem;
  }
}
.cid-uSSybjidpE .body-item {
  text-align: left;
}
.cid-uSSybjidpE .head-item {
  color: #00acb1;
  text-align: left;
}
.cid-uSSybjidpE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSSybjidpE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSSybjidpE .mbr-section-title,
.cid-uSSybjidpE .underline {
  color: #00acb1;
}
.cid-uSROL2voOS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-uSROL2voOS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSROL2voOS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSROL2voOS .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uSROL2voOS .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uSROL2voOS .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uSROL2voOS .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-uSROL2voOS .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSROL2voOS .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uSROL2voOS .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-uSROL2voOS .mbr-section-title {
  color: #FFFFFF;
}
.cid-uSROL2voOS .mbr-desc {
  color: #FFFFFF;
}
.cid-uSROL2voOS .mbr-text {
  color: #FFFFFF;
}
.cid-uSROL2XynD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #87e4db;
}
@media (max-width: 992px) {
  .cid-uSROL2XynD .form-title,
  .cid-uSROL2XynD .form-wrapper {
    padding: 0;
  }
}
.cid-uSROL2XynD .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uSROL2XynD .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uSROL2XynD .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uSROL2XynD .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uSROL2XynD .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-uSROL2XynD .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-uSROL2XynD .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uSROL2XynD .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uSROL2XynD .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uSROL2XynD .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-uSROL2XynD .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-uSROL2XynD .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uSROL2XynD .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-uSROL2XynD .mbr-form {
    margin: 0 30px;
  }
}
.cid-uSROL2XynD .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uSROL2XynD .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uSROL2XynD .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-uSROL2XynD .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-uSROL2XynD .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-uSROL2XynD .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-uSROL2XynD .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-uSROL2XynD .mbr-section-title {
  color: #00acb1;
}
.cid-uSROL2XynD .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uSROL3wwtf {
  background-color: #efefec;
}
.cid-uSROL3wwtf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSROL3wwtf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSROL3wwtf .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uSROL3wwtf .row {
  align-items: center;
}
.cid-uSROL3wwtf .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uSROL3wwtf .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSROL3wwtf .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSROL3wwtf .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uSROL3wwtf .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uSROL3wwtf .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uSROL3wwtf .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uSROL3wwtf .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uSROL3wwtf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSROL3wwtf .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSROL3wwtf .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uSROL3wwtf .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uSROL3wwtf .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uSROL3wwtf .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uSROL3wwtf .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uSROL3wwtf .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSROL3wwtf .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uSROL3wwtf .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSROL3wwtf .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSROL3wwtf .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uSROL3wwtf .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uSROL3wwtf .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uSROL3wwtf .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uSROL3wwtf .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uSROL3wwtf .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uSROL3wwtf .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uSROL3wwtf .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSROL3wwtf .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uSROL3wwtf .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uSROL3wwtf .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uSROL3wwtf .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uSROL3wwtf .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uSROL3wwtf .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uSROL3wwtf .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSROL3wwtf .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uSROL3wwtf .contact-container {
    width: 100%;
  }
}
.cid-uSROL3wwtf .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uSROL3wwtf .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uSROL3wwtf .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uSROL3wwtf .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uSROL3wwtf .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uSROL3wwtf .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uSROL3wwtf .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uSROL3wwtf .copyright {
  color: #efefec;
}
.cid-uSROL3wwtf .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uSROL3wwtf .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSROL3wwtf .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uST1zUeXN1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uST1zUeXN1 .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uST1zUeXN1 nav.navbar {
  position: fixed;
}
.cid-uST1zUeXN1 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uST1zUeXN1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uST1zUeXN1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uST1zUeXN1 .dropdown-item:hover,
.cid-uST1zUeXN1 .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uST1zUeXN1 .dropdown-item:hover span {
  color: white;
}
.cid-uST1zUeXN1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uST1zUeXN1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uST1zUeXN1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uST1zUeXN1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uST1zUeXN1 .nav-link {
  position: relative;
}
.cid-uST1zUeXN1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uST1zUeXN1 .container {
    flex-wrap: nowrap;
  }
}
.cid-uST1zUeXN1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uST1zUeXN1 .dropdown-menu,
.cid-uST1zUeXN1 .navbar.opened {
  background: #ffffff !important;
}
.cid-uST1zUeXN1 .nav-item:focus,
.cid-uST1zUeXN1 .nav-link:focus {
  outline: none;
}
.cid-uST1zUeXN1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uST1zUeXN1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uST1zUeXN1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uST1zUeXN1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uST1zUeXN1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uST1zUeXN1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uST1zUeXN1 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uST1zUeXN1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uST1zUeXN1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uST1zUeXN1 .navbar .navbar-logo img {
  width: auto;
}
.cid-uST1zUeXN1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uST1zUeXN1 .navbar.collapsed {
  justify-content: center;
}
.cid-uST1zUeXN1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uST1zUeXN1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uST1zUeXN1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uST1zUeXN1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uST1zUeXN1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uST1zUeXN1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uST1zUeXN1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uST1zUeXN1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uST1zUeXN1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uST1zUeXN1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uST1zUeXN1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uST1zUeXN1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uST1zUeXN1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uST1zUeXN1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uST1zUeXN1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uST1zUeXN1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uST1zUeXN1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uST1zUeXN1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uST1zUeXN1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uST1zUeXN1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uST1zUeXN1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uST1zUeXN1 .navbar.navbar-short {
  min-height: 80px;
}
.cid-uST1zUeXN1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uST1zUeXN1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uST1zUeXN1 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uST1zUeXN1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uST1zUeXN1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uST1zUeXN1 .dropdown-item.active,
.cid-uST1zUeXN1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uST1zUeXN1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uST1zUeXN1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uST1zUeXN1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uST1zUeXN1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uST1zUeXN1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uST1zUeXN1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uST1zUeXN1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uST1zUeXN1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uST1zUeXN1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uST1zUeXN1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uST1zUeXN1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uST1zUeXN1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uST1zUeXN1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uST1zUeXN1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uST1zUeXN1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uST1zUeXN1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uST1zUeXN1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uST1zUeXN1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uST1zUeXN1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uST1zUeXN1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uST1zUeXN1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uST1zUeXN1 .navbar {
    height: 70px;
  }
  .cid-uST1zUeXN1 .navbar.opened {
    height: auto;
  }
  .cid-uST1zUeXN1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uST1zUNzpF {
  background-image: url("../../../assets/images/mbr-1920x1920.png");
}
.cid-uST1zUNzpF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uST1zUNzpF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uST1zUNzpF .mbr-section-title {
  color: #FFFFFF;
}
.cid-uST1zUNzpF .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-uST1zUNzpF .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-uST1zUNzpF .mbr-section-btn {
  margin-top: 18px;
}
.cid-uST1zUNzpF .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-uST1zUNzpF .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-uSTgE4U4sf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uSTgE4U4sf img,
.cid-uSTgE4U4sf .item-img {
  width: 100%;
}
.cid-uSTgE4U4sf .item:focus,
.cid-uSTgE4U4sf span:focus {
  outline: none;
}
.cid-uSTgE4U4sf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uSTgE4U4sf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSTgE4U4sf .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uSTgE4U4sf .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSTgE4U4sf .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uSTgE4U4sf .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uSTgE4U4sf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSTgE4U4sf .mbr-section-title {
  color: #232323;
}
.cid-uSTgE4U4sf .mbr-text,
.cid-uSTgE4U4sf .mbr-section-btn {
  text-align: left;
}
.cid-uSTgE4U4sf .item-title {
  text-align: left;
}
.cid-uSTgE4U4sf .item-subtitle {
  text-align: center;
}
.cid-uST1zVBA8j {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpeg");
}
.cid-uST1zVBA8j .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-uST1zVBA8j .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-uST1zVBA8j .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uST1zVBA8j .container {
    padding: 0 24px;
  }
}
.cid-uST1zVBA8j .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uST1zVBA8j .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uST1zVBA8j .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uST1zVBA8j .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uST1zVBA8j .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uST1zVBA8j .mbr-section-btn {
    text-align: left;
  }
}
.cid-uST1zVBA8j .mbr-section-title {
  color: #F9F6E0;
}
.cid-uST1zVBA8j .mbr-text {
  color: #ffffff;
}
.cid-uST1zVBA8j .mbr-section-title,
.cid-uST1zVBA8j .mbr-section-btn {
  color: #ffffff;
}
.cid-uSTazaSZ4E {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uSTazaSZ4E .container-fluid {
  padding: 0 3rem;
}
.cid-uSTazaSZ4E .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #87e4db 50%, #73c4bd 120%);
  display: inline-block;
}
.cid-uSTazaSZ4E .mbr-section-subtitle {
  color: #767676;
}
.cid-uSTazaSZ4E .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uSTazaSZ4E .table-wrapper {
  margin: 0 auto;
}
.cid-uSTazaSZ4E table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uSTazaSZ4E table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #ffffff;
  color: white;
  vertical-align: middle;
}
.cid-uSTazaSZ4E table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-uSTazaSZ4E tr:hover {
  background-color: #efefef !important;
}
.cid-uSTazaSZ4E .table-striped tbody tr:nth-of-type(odd) {
  background: none;
}
.cid-uSTazaSZ4E .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uSTazaSZ4E .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uSTazaSZ4E .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uSTazaSZ4E .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-uSTazaSZ4E .dataTables_wrapper {
  display: block;
}
.cid-uSTazaSZ4E .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uSTazaSZ4E .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uSTazaSZ4E .head-item:after,
.cid-uSTazaSZ4E .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-uSTazaSZ4E .dataTables_filter {
    text-align: center;
  }
  .cid-uSTazaSZ4E .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-uSTazaSZ4E .dataTables_filter {
    text-align: center;
  }
  .cid-uSTazaSZ4E .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-uSTazaSZ4E .container-fluid {
    padding: 0 1rem;
  }
  .cid-uSTazaSZ4E table th,
  .cid-uSTazaSZ4E table td {
    padding: .75rem;
  }
}
.cid-uSTazaSZ4E .body-item {
  text-align: left;
}
.cid-uSTazaSZ4E .head-item {
  color: #00acb1;
  text-align: left;
}
.cid-uSTazaSZ4E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSTazaSZ4E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSTazaSZ4E .mbr-section-title,
.cid-uSTazaSZ4E .underline {
  color: #00acb1;
}
.cid-uST1zVYygG {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: center;
}
.cid-uST1zVYygG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uST1zVYygG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uST1zVYygG .container-fluid {
  padding: 0 48px;
}
@media (max-width: 992px) {
  .cid-uST1zVYygG .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-uST1zVYygG .container {
    padding: 0 16px;
  }
}
.cid-uST1zVYygG .row {
  justify-content: center;
}
.cid-uST1zVYygG .desc-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uST1zVYygG .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uST1zVYygG .content-wrapper .mbr-text {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uST1zVYygG .content-wrapper .mbr-text {
    margin-bottom: 22px;
  }
}
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn {
  width: 144px;
  height: 144px;
  border-radius: 100% !important;
}
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-primary:hover,
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-secondary:hover,
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-success:hover,
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-info:hover,
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-warning:hover,
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-danger:hover,
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-black:hover,
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-white:hover,
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-primary:focus,
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-secondary:focus,
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-success:focus,
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-info:focus,
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-warning:focus,
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-danger:focus,
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-black:focus,
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-white:focus {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
  border-color: #73c4bd !important;
}
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-primary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #87e4db !important;
  color: #16324f !important;
}
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-secondary-outline:hover {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
}
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-success-outline:hover {
  box-shadow: inset 0 -145px 0 0 #87e4da !important;
  color: #16324f !important;
}
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-info-outline:hover {
  box-shadow: inset 0 -145px 0 0 #16324f !important;
  color: #73c4bd !important;
  border-color: #16324f !important;
}
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-warning-outline:hover {
  box-shadow: inset 0 -145px 0 0 #f4f7f8 !important;
  color: #16324f !important;
}
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-danger-outline:hover {
  box-shadow: inset 0 -145px 0 0 #73c4bd !important;
  color: #16324f !important;
}
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-black-outline:hover {
  box-shadow: inset 0 -145px 0 0 #000000 !important;
  color: #ffffff !important;
}
.cid-uST1zVYygG .content-wrapper .mbr-section-btn .btn-white-outline:hover {
  box-shadow: inset 0 -145px 0 0 #ffffff !important;
  color: #000000 !important;
}
.cid-uST1zVYygG .mbr-desc {
  color: #706cff;
}
.cid-uST1zVYygG .mbr-section-title {
  color: #000000;
}
.cid-uST1zVYygG .mbr-text {
  color: #000000;
}
.cid-uST1zVYygG .mbr-section-btn {
  text-align: center;
}
.cid-uST1zVYygG .mbr-section-title,
.cid-uST1zVYygG .mbr-section-btn {
  color: #00acb1;
}
.cid-uST1zWmhTF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
@media (max-width: 992px) {
  .cid-uST1zWmhTF .row {
    flex-direction: column-reverse;
  }
}
.cid-uST1zWmhTF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uST1zWmhTF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uST1zWmhTF .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uST1zWmhTF .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uST1zWmhTF .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uST1zWmhTF .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uST1zWmhTF .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uST1zWmhTF .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uST1zWmhTF .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-uST1zWmhTF .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uST1zWmhTF .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uST1zWmhTF .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uST1zWmhTF .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-uST1zWmhTF .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uST1zWmhTF .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-uST1zWmhTF .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-uST1zWmhTF .image-wrapper {
    margin: 30px;
  }
}
.cid-uST1zWmhTF .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uST1zWmhTF .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-uST1zWmhTF .image-wrapper img {
    min-height: 100%;
  }
}
.cid-uST1zWmhTF .mbr-section-title {
  color: #000000;
}
.cid-uST1zWmhTF .mbr-text {
  color: #ffffff;
}
.cid-uST1zWmhTF .mbr-section-title,
.cid-uST1zWmhTF .mbr-section-btn {
  color: #ffffff;
}
.cid-uST1zWL9Rp {
  padding-top: 5rem;
  padding-bottom: 0rem;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
}
.cid-uST1zWL9Rp .decor-wrap_1 {
  position: absolute;
  top: -4rem;
  left: 18%;
  width: 133px;
  height: 133px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-uST1zWL9Rp .decor-wrap_2 {
  position: absolute;
  bottom: 4rem;
  left: -6rem;
  width: 207px;
  height: 207px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-uST1zWL9Rp .decor-wrap_3 {
  position: absolute;
  bottom: -55%;
  right: -2rem;
  width: 422px;
  height: 422px;
  border-radius: 100%;
  background-image: radial-gradient(165.7% 132.72% at 4.98% 5.22%, #144031 0, #22654e 43%, #246f55 100%);
}
.cid-uST1zWL9Rp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uST1zWL9Rp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uST1zWL9Rp .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uST1zWL9Rp .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uST1zWL9Rp .container {
    padding: 0 30px;
  }
}
.cid-uST1zWL9Rp .row {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cid-uST1zWL9Rp .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uST1zWL9Rp .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uST1zWL9Rp .content-wrapper .text-wrapper .mbr-text {
    margin-bottom: 30px;
    width: 100%;
  }
}
.cid-uST1zWL9Rp .mbr-section-title {
  color: #ffffff;
}
.cid-uST1zWL9Rp .mbr-text,
.cid-uST1zWL9Rp .text-wrapper {
  color: #000000;
  text-align: center;
}
.cid-uST1zWL9Rp .mbr-section-title,
.cid-uST1zWL9Rp .mbr-section-btn {
  text-align: center;
  color: #00acb1;
}
.cid-uST1zXdtZx {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uST1zXdtZx .img-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-uST1zXdtZx img {
  margin: auto;
  border-radius: 15px;
  object-fit: cover;
  max-height: 150px;
}
.cid-uST1zXdtZx .row {
  align-items: flex-start;
}
.cid-uST1zXdtZx .card-wrapper {
  border-radius: 25px;
  background: #00acb1;
}
@media (max-width: 992px) {
  .cid-uST1zXdtZx .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uST1zXdtZx .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uST1zXdtZx .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 425px) {
  .cid-uST1zXdtZx .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uST1zXdtZx .card-box {
  min-height: 230px;
}
@media (max-width: 1200px) {
  .cid-uST1zXdtZx .card-box {
    min-height: 290px;
  }
}
@media (max-width: 768px) {
  .cid-uST1zXdtZx .card-box {
    min-height: auto;
  }
}
.cid-uST1zXdtZx .card-title {
  margin-bottom: 1rem;
}
.cid-uST1zXdtZx .mbr-text {
  margin-bottom: 1rem;
  color: #F0F4FF;
  text-align: left;
}
.cid-uST1zXdtZx .btn {
  width: 200px;
  height: 55px;
  box-shadow: none;
}
.cid-uST1zXdtZx .card-title,
.cid-uST1zXdtZx .mbr-section-btn {
  color: #FFFFFF;
  text-align: center;
}
.cid-uST1zXJhRD {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uST1zXJhRD .img-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-uST1zXJhRD img {
  margin: auto;
  border-radius: 15px;
  object-fit: cover;
  max-height: 150px;
}
.cid-uST1zXJhRD .row {
  align-items: flex-start;
}
.cid-uST1zXJhRD .card-wrapper {
  border-radius: 25px;
  background: #00acb1;
}
@media (max-width: 992px) {
  .cid-uST1zXJhRD .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-uST1zXJhRD .card-wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uST1zXJhRD .card-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 425px) {
  .cid-uST1zXJhRD .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uST1zXJhRD .card-box {
  min-height: 230px;
}
@media (max-width: 1200px) {
  .cid-uST1zXJhRD .card-box {
    min-height: 290px;
  }
}
@media (max-width: 768px) {
  .cid-uST1zXJhRD .card-box {
    min-height: auto;
  }
}
.cid-uST1zXJhRD .card-title {
  margin-bottom: 1rem;
}
.cid-uST1zXJhRD .mbr-text {
  margin-bottom: 1rem;
  color: #F0F4FF;
  text-align: left;
}
.cid-uST1zXJhRD .btn {
  width: 200px;
  height: 55px;
  box-shadow: none;
}
.cid-uST1zXJhRD .card-title,
.cid-uST1zXJhRD .mbr-section-btn {
  color: #FFFFFF;
  text-align: center;
}
.cid-uST1zYf7ws {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpeg");
}
.cid-uST1zYf7ws .mbr-overlay {
  background: #00acb1;
  opacity: 0.5;
}
.cid-uST1zYf7ws .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-uST1zYf7ws .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-uST1zYf7ws .container {
    padding: 0 24px;
  }
}
.cid-uST1zYf7ws .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uST1zYf7ws .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uST1zYf7ws .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uST1zYf7ws .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uST1zYf7ws .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-uST1zYf7ws .mbr-section-btn {
    text-align: left;
  }
}
.cid-uST1zYf7ws .mbr-section-title {
  color: #F9F6E0;
}
.cid-uST1zYf7ws .mbr-text {
  color: #ffffff;
}
.cid-uST1zYf7ws .mbr-section-title,
.cid-uST1zYf7ws .mbr-section-btn {
  color: #ffffff;
}
.cid-uST1zYF6c9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff3f3;
}
.cid-uST1zYF6c9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uST1zYF6c9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uST1zYF6c9 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uST1zYF6c9 .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uST1zYF6c9 .container {
    padding: 0 25px;
  }
}
.cid-uST1zYF6c9 .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uST1zYF6c9 .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uST1zYF6c9 .image-wrapper img {
  height: 570px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uST1zYF6c9 .image-wrapper img {
    height: 350px;
  }
}
.cid-uST1zYF6c9 .content-wrapper {
  margin-left: 40px;
  margin-left: 0;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-uST1zYF6c9 .content-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uST1zYF6c9 .content-wrapper {
    margin: 0;
  }
}
.cid-uST1zYF6c9 .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  margin-bottom: 8px;
  background-color: #87e4db;
  padding: 2px 4px 0;
}
.cid-uST1zYF6c9 .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uST1zYF6c9 .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uST1zYF6c9 .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uST1zYF6c9 .content-wrapper .contacts-wrap {
  margin-top: 30px;
}
.cid-uST1zYF6c9 .content-wrapper .contacts-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-uST1zYF6c9 .content-wrapper .contacts-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uST1zYF6c9 .content-wrapper .contacts-wrap .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uST1zYF6c9 .content-wrapper .contacts-wrap .list .item-wrap:hover,
.cid-uST1zYF6c9 .content-wrapper .contacts-wrap .list .item-wrap:focus {
  text-decoration: underline;
}
.cid-uST1zYF6c9 .content-wrapper .social-wrap {
  margin-top: 30px;
}
.cid-uST1zYF6c9 .content-wrapper .social-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-uST1zYF6c9 .content-wrapper .social-wrap .social-row {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uST1zYF6c9 .content-wrapper .social-wrap .social-row .soc-item {
  margin-right: 10px;
}
.cid-uST1zYF6c9 .content-wrapper .social-wrap .social-row .soc-item a:hover .mbr-iconfont {
  background-color: #a0ffc2;
}
.cid-uST1zYF6c9 .content-wrapper .social-wrap .social-row .soc-item a .mbr-iconfont {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  color: #2f2e30;
}
.cid-uST1zYF6c9 .mbr-section-title {
  color: #2f2e30;
}
.cid-uST1zYF6c9 .mbr-desc {
  color: #2f2e30;
}
.cid-uST1zYF6c9 .mbr-text {
  color: #2f2e30;
}
.cid-uST1zYF6c9 .mbr-section-subtitle {
  color: #2f2e30;
}
.cid-uST1zYF6c9 .list {
  color: #2f2e30;
}
.cid-uST1zYF6c9 .mbr-section-title,
.cid-uST1zYF6c9 .mbr-section-btn {
  color: #00acb1;
}
.cid-uST1zZccdt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff3f3;
}
.cid-uST1zZccdt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uST1zZccdt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uST1zZccdt .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uST1zZccdt .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uST1zZccdt .container {
    padding: 0 25px;
  }
}
.cid-uST1zZccdt .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uST1zZccdt .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uST1zZccdt .image-wrapper img {
  height: 570px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uST1zZccdt .image-wrapper img {
    height: 350px;
  }
}
.cid-uST1zZccdt .content-wrapper {
  margin-left: 40px;
}
@media (max-width: 992px) {
  .cid-uST1zZccdt .content-wrapper {
    margin: 0;
  }
}
.cid-uST1zZccdt .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  margin-bottom: 8px;
  background-color: #87e4db;
  padding: 2px 4px 0;
}
.cid-uST1zZccdt .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uST1zZccdt .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uST1zZccdt .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uST1zZccdt .content-wrapper .contacts-wrap {
  margin-top: 30px;
}
.cid-uST1zZccdt .content-wrapper .contacts-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-uST1zZccdt .content-wrapper .contacts-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uST1zZccdt .content-wrapper .contacts-wrap .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uST1zZccdt .content-wrapper .contacts-wrap .list .item-wrap:hover,
.cid-uST1zZccdt .content-wrapper .contacts-wrap .list .item-wrap:focus {
  text-decoration: underline;
}
.cid-uST1zZccdt .content-wrapper .social-wrap {
  margin-top: 30px;
}
.cid-uST1zZccdt .content-wrapper .social-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-uST1zZccdt .content-wrapper .social-wrap .social-row {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uST1zZccdt .content-wrapper .social-wrap .social-row .soc-item {
  margin-right: 10px;
}
.cid-uST1zZccdt .content-wrapper .social-wrap .social-row .soc-item a:hover .mbr-iconfont {
  background-color: #a0ffc2;
}
.cid-uST1zZccdt .content-wrapper .social-wrap .social-row .soc-item a .mbr-iconfont {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  color: #2f2e30;
}
.cid-uST1zZccdt .mbr-section-title {
  color: #2f2e30;
}
.cid-uST1zZccdt .mbr-desc {
  color: #2f2e30;
}
.cid-uST1zZccdt .mbr-text {
  color: #2f2e30;
}
.cid-uST1zZccdt .mbr-section-subtitle {
  color: #2f2e30;
}
.cid-uST1zZccdt .list {
  color: #2f2e30;
}
.cid-uST1zZccdt .mbr-section-title,
.cid-uST1zZccdt .mbr-section-btn {
  color: #00acb1;
}
.cid-uST1zZIRXH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #eff3f3;
}
.cid-uST1zZIRXH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uST1zZIRXH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uST1zZIRXH .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uST1zZIRXH .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-uST1zZIRXH .container {
    padding: 0 25px;
  }
}
.cid-uST1zZIRXH .row {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uST1zZIRXH .image-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uST1zZIRXH .image-wrapper img {
  height: 570px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uST1zZIRXH .image-wrapper img {
    height: 350px;
  }
}
.cid-uST1zZIRXH .content-wrapper {
  margin-left: 40px;
  margin-left: 0;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .cid-uST1zZIRXH .content-wrapper {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uST1zZIRXH .content-wrapper {
    margin: 0;
  }
}
.cid-uST1zZIRXH .content-wrapper .desc-wrap .mbr-desc {
  display: inline-flex;
  margin-bottom: 8px;
  background-color: #87e4db;
  padding: 2px 4px 0;
}
.cid-uST1zZIRXH .content-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uST1zZIRXH .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uST1zZIRXH .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-uST1zZIRXH .content-wrapper .contacts-wrap {
  margin-top: 30px;
}
.cid-uST1zZIRXH .content-wrapper .contacts-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-uST1zZIRXH .content-wrapper .contacts-wrap .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uST1zZIRXH .content-wrapper .contacts-wrap .list .item-wrap {
  margin-bottom: 10px;
}
.cid-uST1zZIRXH .content-wrapper .contacts-wrap .list .item-wrap:hover,
.cid-uST1zZIRXH .content-wrapper .contacts-wrap .list .item-wrap:focus {
  text-decoration: underline;
}
.cid-uST1zZIRXH .content-wrapper .social-wrap {
  margin-top: 30px;
}
.cid-uST1zZIRXH .content-wrapper .social-wrap .mbr-section-subtitle {
  margin-bottom: 16px;
}
.cid-uST1zZIRXH .content-wrapper .social-wrap .social-row {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uST1zZIRXH .content-wrapper .social-wrap .social-row .soc-item {
  margin-right: 10px;
}
.cid-uST1zZIRXH .content-wrapper .social-wrap .social-row .soc-item a:hover .mbr-iconfont {
  background-color: #a0ffc2;
}
.cid-uST1zZIRXH .content-wrapper .social-wrap .social-row .soc-item a .mbr-iconfont {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  color: #2f2e30;
}
.cid-uST1zZIRXH .mbr-section-title {
  color: #2f2e30;
}
.cid-uST1zZIRXH .mbr-desc {
  color: #2f2e30;
}
.cid-uST1zZIRXH .mbr-text {
  color: #2f2e30;
}
.cid-uST1zZIRXH .mbr-section-subtitle {
  color: #2f2e30;
}
.cid-uST1zZIRXH .list {
  color: #2f2e30;
}
.cid-uST1zZIRXH .mbr-section-title,
.cid-uST1zZIRXH .mbr-section-btn {
  color: #00acb1;
}
.cid-uST1A23apL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #87e4db;
}
@media (max-width: 992px) {
  .cid-uST1A23apL .form-title,
  .cid-uST1A23apL .form-wrapper {
    padding: 0;
  }
}
.cid-uST1A23apL .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uST1A23apL .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uST1A23apL .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uST1A23apL .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uST1A23apL .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-uST1A23apL .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-uST1A23apL .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uST1A23apL .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uST1A23apL .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uST1A23apL .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-uST1A23apL .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-uST1A23apL .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uST1A23apL .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-uST1A23apL .mbr-form {
    margin: 0 30px;
  }
}
.cid-uST1A23apL .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uST1A23apL .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uST1A23apL .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-uST1A23apL .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-uST1A23apL .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-uST1A23apL .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-uST1A23apL .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-uST1A23apL .mbr-section-title {
  color: #00acb1;
}
.cid-uST1A23apL .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uST1A2H7vP {
  background-color: #efefec;
}
.cid-uST1A2H7vP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uST1A2H7vP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uST1A2H7vP .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uST1A2H7vP .row {
  align-items: center;
}
.cid-uST1A2H7vP .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uST1A2H7vP .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uST1A2H7vP .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uST1A2H7vP .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uST1A2H7vP .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uST1A2H7vP .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uST1A2H7vP .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uST1A2H7vP .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uST1A2H7vP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uST1A2H7vP .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uST1A2H7vP .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uST1A2H7vP .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uST1A2H7vP .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uST1A2H7vP .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uST1A2H7vP .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uST1A2H7vP .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uST1A2H7vP .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uST1A2H7vP .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uST1A2H7vP .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uST1A2H7vP .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uST1A2H7vP .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uST1A2H7vP .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uST1A2H7vP .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uST1A2H7vP .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uST1A2H7vP .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uST1A2H7vP .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uST1A2H7vP .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uST1A2H7vP .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uST1A2H7vP .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uST1A2H7vP .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uST1A2H7vP .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uST1A2H7vP .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uST1A2H7vP .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uST1A2H7vP .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uST1A2H7vP .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uST1A2H7vP .contact-container {
    width: 100%;
  }
}
.cid-uST1A2H7vP .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uST1A2H7vP .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uST1A2H7vP .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uST1A2H7vP .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uST1A2H7vP .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uST1A2H7vP .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uST1A2H7vP .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uST1A2H7vP .copyright {
  color: #efefec;
}
.cid-uST1A2H7vP .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uST1A2H7vP .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uST1A2H7vP .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uST1A3Ds87 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uST1A3Ds87 .container-fluid {
  padding: 0 3rem;
}
.cid-uST1A3Ds87 .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(to right, #87e4db 50%, #73c4bd 120%);
  display: inline-block;
}
.cid-uST1A3Ds87 .mbr-section-subtitle {
  color: #767676;
}
.cid-uST1A3Ds87 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uST1A3Ds87 .table-wrapper {
  margin: 0 auto;
}
.cid-uST1A3Ds87 table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-uST1A3Ds87 table th {
  padding: 1.5rem 1rem;
  transition: all .2s;
  text-align: center;
  background-color: #ffffff;
  color: white;
  vertical-align: middle;
}
.cid-uST1A3Ds87 table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-uST1A3Ds87 tr:hover {
  background-color: #efefef !important;
}
.cid-uST1A3Ds87 .table-striped tbody tr:nth-of-type(odd) {
  background: none;
}
.cid-uST1A3Ds87 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uST1A3Ds87 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uST1A3Ds87 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uST1A3Ds87 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-uST1A3Ds87 .dataTables_wrapper {
  display: block;
}
.cid-uST1A3Ds87 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uST1A3Ds87 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uST1A3Ds87 .head-item:after,
.cid-uST1A3Ds87 .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-uST1A3Ds87 .dataTables_filter {
    text-align: center;
  }
  .cid-uST1A3Ds87 .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-uST1A3Ds87 .dataTables_filter {
    text-align: center;
  }
  .cid-uST1A3Ds87 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-uST1A3Ds87 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uST1A3Ds87 table th,
  .cid-uST1A3Ds87 table td {
    padding: .75rem;
  }
}
.cid-uST1A3Ds87 .body-item {
  text-align: left;
}
.cid-uST1A3Ds87 .head-item {
  color: #00acb1;
  text-align: left;
}
.cid-uST1A3Ds87 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uST1A3Ds87 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uST1A3Ds87 .mbr-section-title,
.cid-uST1A3Ds87 .underline {
  color: #00acb1;
}
.cid-uTCuL8sNr1 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uTCuL8sNr1 .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uTCuL8sNr1 nav.navbar {
  position: fixed;
}
.cid-uTCuL8sNr1 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTCuL8sNr1 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uTCuL8sNr1 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uTCuL8sNr1 .dropdown-item:hover,
.cid-uTCuL8sNr1 .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uTCuL8sNr1 .dropdown-item:hover span {
  color: white;
}
.cid-uTCuL8sNr1 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uTCuL8sNr1 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uTCuL8sNr1 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uTCuL8sNr1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uTCuL8sNr1 .nav-link {
  position: relative;
}
.cid-uTCuL8sNr1 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uTCuL8sNr1 .container {
    flex-wrap: nowrap;
  }
}
.cid-uTCuL8sNr1 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uTCuL8sNr1 .dropdown-menu,
.cid-uTCuL8sNr1 .navbar.opened {
  background: #ffffff !important;
}
.cid-uTCuL8sNr1 .nav-item:focus,
.cid-uTCuL8sNr1 .nav-link:focus {
  outline: none;
}
.cid-uTCuL8sNr1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTCuL8sNr1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTCuL8sNr1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTCuL8sNr1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTCuL8sNr1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTCuL8sNr1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTCuL8sNr1 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uTCuL8sNr1 .navbar.opened {
  transition: all 0.3s;
}
.cid-uTCuL8sNr1 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uTCuL8sNr1 .navbar .navbar-logo img {
  width: auto;
}
.cid-uTCuL8sNr1 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uTCuL8sNr1 .navbar.collapsed {
  justify-content: center;
}
.cid-uTCuL8sNr1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTCuL8sNr1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uTCuL8sNr1 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uTCuL8sNr1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTCuL8sNr1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTCuL8sNr1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uTCuL8sNr1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTCuL8sNr1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uTCuL8sNr1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uTCuL8sNr1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTCuL8sNr1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTCuL8sNr1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTCuL8sNr1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uTCuL8sNr1 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uTCuL8sNr1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTCuL8sNr1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uTCuL8sNr1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uTCuL8sNr1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uTCuL8sNr1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTCuL8sNr1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uTCuL8sNr1 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uTCuL8sNr1 .navbar.navbar-short {
  min-height: 80px;
}
.cid-uTCuL8sNr1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uTCuL8sNr1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uTCuL8sNr1 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uTCuL8sNr1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uTCuL8sNr1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTCuL8sNr1 .dropdown-item.active,
.cid-uTCuL8sNr1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uTCuL8sNr1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTCuL8sNr1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTCuL8sNr1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTCuL8sNr1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uTCuL8sNr1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uTCuL8sNr1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTCuL8sNr1 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uTCuL8sNr1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uTCuL8sNr1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uTCuL8sNr1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uTCuL8sNr1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uTCuL8sNr1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTCuL8sNr1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTCuL8sNr1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uTCuL8sNr1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTCuL8sNr1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTCuL8sNr1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTCuL8sNr1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTCuL8sNr1 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uTCuL8sNr1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTCuL8sNr1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uTCuL8sNr1 .navbar {
    height: 70px;
  }
  .cid-uTCuL8sNr1 .navbar.opened {
    height: auto;
  }
  .cid-uTCuL8sNr1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTCuL91AWU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1272.jpeg");
  display: flex;
  align-items: center;
  min-height: 670px;
}
@media (max-width: 767px) {
  .cid-uTCuL91AWU {
    background-size: 200% 100%;
    background-position: left center;
  }
}
.cid-uTCuL91AWU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTCuL91AWU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 1024px) {
  .cid-uTCuL91AWU {
    min-height: 500px;
  }
}
@media (max-width: 767px) {
  .cid-uTCuL91AWU {
    min-height: 0;
  }
}
.cid-uTCuL91AWU .container {
  max-width: 100%;
  width: 100%;
  padding-left: 8%;
  padding-right: 46%;
}
@media (max-width: 991px) {
  .cid-uTCuL91AWU .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uTCuL91AWU .row {
  margin-left: -20px;
  margin-right: -20px;
}
.cid-uTCuL91AWU .row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.cid-uTCuL91AWU .content-container {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uTCuL91AWU .content-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uTCuL91AWU .content-container {
    padding-right: 200px;
  }
}
.cid-uTCuL91AWU .mbr-section-title {
  color: #ffffff;
  margin-bottom: 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uTCuL91AWU .mbr-section-title {
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .cid-uTCuL91AWU .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uTCuL91AWU .mbr-section-subtitle {
  color: #ffffff;
  margin-bottom: 20px;
  width: 100%;
}
.cid-uTCuL91AWU .mbr-text {
  color: #112B6D;
  margin-bottom: 0.9rem;
  width: 100%;
}
.cid-uTCuL91AWU .mbr-section-btn {
  margin-top: 10px;
}
.cid-uTCuL9q1vD {
  background-color: #fbfbfb;
}
.cid-uTCuL9q1vD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTCuL9q1vD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTCuL9q1vD .row {
  justify-content: flex-start;
}
.cid-uTCuL9q1vD .mbr-section-title {
  color: #000000;
  width: 100%;
  margin-bottom: 4rem;
}
.cid-uTCuL9q1vD .item-wrap {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-uTCuL9q1vD .mbr-section-subtitle {
  color: #00acb1;
  width: 100%;
}
.cid-uTCuL9q1vD .mbr-text {
  color: #000000;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cid-uTCuL9q1vD .mbr-section-title,
.cid-uTCuL9q1vD .mbr-section-btn {
  color: #00acb1;
}
.cid-uTCuL9MiBW {
  background-color: #fbfbfb;
}
.cid-uTCuL9MiBW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTCuL9MiBW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTCuL9MiBW .row {
  justify-content: flex-start;
}
.cid-uTCuL9MiBW .mbr-section-title {
  color: #000000;
  width: 100%;
  margin-bottom: 4rem;
}
.cid-uTCuL9MiBW .item-wrap {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-uTCuL9MiBW .mbr-section-subtitle {
  color: #00acb1;
  width: 100%;
}
.cid-uTCuL9MiBW .mbr-text {
  color: #000000;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cid-uTCuL9MiBW .mbr-section-title,
.cid-uTCuL9MiBW .mbr-section-btn {
  color: #00acb1;
}
.cid-uTCuLa7a27 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #00acb1;
}
.cid-uTCuLa7a27 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTCuLa7a27 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTCuLa7a27 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uTCuLa7a27 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uTCuLa7a27 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uTCuLa7a27 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uTCuLa7a27 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-uTCuLa7a27 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uTCuLa7a27 .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uTCuLa7a27 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uTCuLa7a27 .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uTCuLa7a27 .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-uTCuLa7a27 .mbr-section-title {
  color: #FFFFFF;
}
.cid-uTCuLa7a27 .mbr-section-title,
.cid-uTCuLa7a27 .mbr-section-btn {
  text-align: center;
}
#custom-html-g8 {
  /* Type valid CSS here */
}
#custom-html-g8 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-g8 p {
  font-size: 60px;
  color: #777;
}
.cid-uTCuLavU1n {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}
.cid-uTCuLavU1n .title-col {
  width: 25%;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .cid-uTCuLavU1n .title-col {
    padding-right: 2rem !important;
    padding-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uTCuLavU1n .title-col {
    width: 100%;
    padding: 0 0 12px 0 !important;
  }
}
.cid-uTCuLavU1n .text-col {
  width: 75%;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .cid-uTCuLavU1n .text-col {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-uTCuLavU1n .mbr-section-title {
  color: #00acb1;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-uTCuLavU1n .mbr-section-title {
    width: 100%;
  }
}
.cid-uTCuLavU1n .mbr-section-subtitle {
  color: #727272;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-uTCuLavU1n .mbr-section-subtitle {
    width: 100%;
  }
}
.cid-uTCuLavU1n .mbr-text {
  color: #000000;
  width: 80%;
}
@media (max-width: 991px) {
  .cid-uTCuLavU1n .mbr-text {
    width: 100%;
  }
}
.cid-uTCuLaLy8F {
  background-color: #efefec;
}
.cid-uTCuLaLy8F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTCuLaLy8F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTCuLaLy8F .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uTCuLaLy8F .row {
  align-items: center;
}
.cid-uTCuLaLy8F .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uTCuLaLy8F .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uTCuLaLy8F .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uTCuLaLy8F .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uTCuLaLy8F .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uTCuLaLy8F .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uTCuLaLy8F .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uTCuLaLy8F .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uTCuLaLy8F .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTCuLaLy8F .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uTCuLaLy8F .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uTCuLaLy8F .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uTCuLaLy8F .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uTCuLaLy8F .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uTCuLaLy8F .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uTCuLaLy8F .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uTCuLaLy8F .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uTCuLaLy8F .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uTCuLaLy8F .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uTCuLaLy8F .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uTCuLaLy8F .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uTCuLaLy8F .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uTCuLaLy8F .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uTCuLaLy8F .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uTCuLaLy8F .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uTCuLaLy8F .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uTCuLaLy8F .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uTCuLaLy8F .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uTCuLaLy8F .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uTCuLaLy8F .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uTCuLaLy8F .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uTCuLaLy8F .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uTCuLaLy8F .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uTCuLaLy8F .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uTCuLaLy8F .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uTCuLaLy8F .contact-container {
    width: 100%;
  }
}
.cid-uTCuLaLy8F .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uTCuLaLy8F .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uTCuLaLy8F .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uTCuLaLy8F .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uTCuLaLy8F .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uTCuLaLy8F .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uTCuLaLy8F .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uTCuLaLy8F .copyright {
  color: #efefec;
}
.cid-uTCuLaLy8F .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uTCuLaLy8F .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uTCuLaLy8F .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uVvKRpqXVz {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uVvKRpqXVz .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uVvKRpqXVz nav.navbar {
  position: fixed;
}
.cid-uVvKRpqXVz .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVvKRpqXVz .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVvKRpqXVz .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVvKRpqXVz .dropdown-item:hover,
.cid-uVvKRpqXVz .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uVvKRpqXVz .dropdown-item:hover span {
  color: white;
}
.cid-uVvKRpqXVz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVvKRpqXVz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVvKRpqXVz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVvKRpqXVz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVvKRpqXVz .nav-link {
  position: relative;
}
.cid-uVvKRpqXVz .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uVvKRpqXVz .container {
    flex-wrap: nowrap;
  }
}
.cid-uVvKRpqXVz .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVvKRpqXVz .dropdown-menu,
.cid-uVvKRpqXVz .navbar.opened {
  background: #ffffff !important;
}
.cid-uVvKRpqXVz .nav-item:focus,
.cid-uVvKRpqXVz .nav-link:focus {
  outline: none;
}
.cid-uVvKRpqXVz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVvKRpqXVz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVvKRpqXVz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVvKRpqXVz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVvKRpqXVz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVvKRpqXVz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVvKRpqXVz .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uVvKRpqXVz .navbar.opened {
  transition: all 0.3s;
}
.cid-uVvKRpqXVz .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVvKRpqXVz .navbar .navbar-logo img {
  width: auto;
}
.cid-uVvKRpqXVz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVvKRpqXVz .navbar.collapsed {
  justify-content: center;
}
.cid-uVvKRpqXVz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVvKRpqXVz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVvKRpqXVz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uVvKRpqXVz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVvKRpqXVz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVvKRpqXVz .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uVvKRpqXVz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVvKRpqXVz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVvKRpqXVz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVvKRpqXVz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVvKRpqXVz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVvKRpqXVz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVvKRpqXVz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVvKRpqXVz .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uVvKRpqXVz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVvKRpqXVz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVvKRpqXVz .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVvKRpqXVz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVvKRpqXVz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVvKRpqXVz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVvKRpqXVz .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVvKRpqXVz .navbar.navbar-short {
  min-height: 80px;
}
.cid-uVvKRpqXVz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVvKRpqXVz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uVvKRpqXVz .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVvKRpqXVz .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVvKRpqXVz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVvKRpqXVz .dropdown-item.active,
.cid-uVvKRpqXVz .dropdown-item:active {
  background-color: transparent;
}
.cid-uVvKRpqXVz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVvKRpqXVz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVvKRpqXVz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVvKRpqXVz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uVvKRpqXVz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVvKRpqXVz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVvKRpqXVz ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVvKRpqXVz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVvKRpqXVz button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVvKRpqXVz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uVvKRpqXVz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVvKRpqXVz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVvKRpqXVz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVvKRpqXVz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVvKRpqXVz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVvKRpqXVz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVvKRpqXVz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVvKRpqXVz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVvKRpqXVz .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVvKRpqXVz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVvKRpqXVz .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uVvKRpqXVz .navbar {
    height: 70px;
  }
  .cid-uVvKRpqXVz .navbar.opened {
    height: auto;
  }
  .cid-uVvKRpqXVz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVvKRpSIAE {
  padding-top: 225px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-1920x1228.jpeg");
}
.cid-uVvKRpSIAE .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-uVvKRpSIAE .mbr-section-title {
  color: #ffffff;
  font-weight: 900;
  line-height: 1.09;
  letter-spacing: -1px;
}
.cid-uVvKRpSIAE .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-uVvKRpSIAE .mbr-text {
  color: #6d7a8c;
}
.cid-uVvKRpSIAE .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
  margin-left: 0.6rem;
}
.cid-uVvKRpSIAE .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-uVvKRpSIAE .mbr-section-btn {
  display: flex;
}
.cid-uVvKRpSIAE .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 2;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-uVvKRpSIAE .mbr-section-btn.display-4,
.cid-uVvKRpSIAE .btn.display-4 {
  font-size: 12px !important;
}
.cid-uVvKRpSIAE .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-uVvKRpSIAE .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-uVvKRpSIAE .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #4f87fb;
  position: absolute;
  top: 50%;
  left: 55 %;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-uVvKRpSIAE .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uVvKRpSIAE .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-uVvKRpSIAE .video-wrap .icon-wrap span {
  font-weight: bold;
}
.cid-uVvKRpSIAE .video-wrap .mbr-text {
  line-height: 1.69;
  font-weight: 800;
  letter-spacing: 0px;
  color: #130947;
}
.cid-uVvKRpSIAE .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-uVvKRpSIAE .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uVvKRpSIAE .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uVvKRpSIAE .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uVvKRpSIAE a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-uVvKRpSIAE .separator,
  .cid-uVvKRpSIAE .sep-holder,
  .cid-uVvKRpSIAE .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-uVvKRpSIAE .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-uVvKRpSIAE .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-uVvKRpSIAE .mbr-section-subtitle,
.cid-uVvKRpSIAE .mbr-section-title .accent-word .mbr-section-subtitle,
.cid-uVvKRpSIAE .mbr-section-title .accent-word {
  color: #ffffff;
}
.cid-uVvM8T5v2D {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uVvM8T5v2D .mbr-text {
  color: #000000;
}
.cid-uVvM8T5v2D .mbr-section-subtitle {
  color: #000000;
}
.cid-uVvM8T5v2D .mbr-section-title {
  color: #000000;
}
.cid-uVvKRroILm {
  background-color: #efefec;
}
.cid-uVvKRroILm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVvKRroILm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVvKRroILm .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uVvKRroILm .row {
  align-items: center;
}
.cid-uVvKRroILm .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uVvKRroILm .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uVvKRroILm .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uVvKRroILm .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uVvKRroILm .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uVvKRroILm .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uVvKRroILm .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uVvKRroILm .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uVvKRroILm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVvKRroILm .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uVvKRroILm .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uVvKRroILm .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uVvKRroILm .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uVvKRroILm .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uVvKRroILm .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uVvKRroILm .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVvKRroILm .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uVvKRroILm .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uVvKRroILm .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uVvKRroILm .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uVvKRroILm .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uVvKRroILm .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uVvKRroILm .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uVvKRroILm .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uVvKRroILm .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uVvKRroILm .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uVvKRroILm .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uVvKRroILm .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uVvKRroILm .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uVvKRroILm .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uVvKRroILm .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uVvKRroILm .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uVvKRroILm .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uVvKRroILm .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uVvKRroILm .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uVvKRroILm .contact-container {
    width: 100%;
  }
}
.cid-uVvKRroILm .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uVvKRroILm .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uVvKRroILm .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uVvKRroILm .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uVvKRroILm .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uVvKRroILm .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uVvKRroILm .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uVvKRroILm .copyright {
  color: #efefec;
}
.cid-uVvKRroILm .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uVvKRroILm .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uVvKRroILm .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uVO0QT02ey {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uVO0QT02ey .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uVO0QT02ey nav.navbar {
  position: fixed;
}
.cid-uVO0QT02ey .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVO0QT02ey .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVO0QT02ey .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVO0QT02ey .dropdown-item:hover,
.cid-uVO0QT02ey .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uVO0QT02ey .dropdown-item:hover span {
  color: white;
}
.cid-uVO0QT02ey .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVO0QT02ey .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVO0QT02ey .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVO0QT02ey .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVO0QT02ey .nav-link {
  position: relative;
}
.cid-uVO0QT02ey .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uVO0QT02ey .container {
    flex-wrap: nowrap;
  }
}
.cid-uVO0QT02ey .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVO0QT02ey .dropdown-menu,
.cid-uVO0QT02ey .navbar.opened {
  background: #ffffff !important;
}
.cid-uVO0QT02ey .nav-item:focus,
.cid-uVO0QT02ey .nav-link:focus {
  outline: none;
}
.cid-uVO0QT02ey .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVO0QT02ey .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVO0QT02ey .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVO0QT02ey .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVO0QT02ey .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVO0QT02ey .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVO0QT02ey .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uVO0QT02ey .navbar.opened {
  transition: all 0.3s;
}
.cid-uVO0QT02ey .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVO0QT02ey .navbar .navbar-logo img {
  width: auto;
}
.cid-uVO0QT02ey .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVO0QT02ey .navbar.collapsed {
  justify-content: center;
}
.cid-uVO0QT02ey .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVO0QT02ey .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVO0QT02ey .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uVO0QT02ey .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVO0QT02ey .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVO0QT02ey .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uVO0QT02ey .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVO0QT02ey .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVO0QT02ey .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVO0QT02ey .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVO0QT02ey .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVO0QT02ey .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVO0QT02ey .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVO0QT02ey .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uVO0QT02ey .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVO0QT02ey .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVO0QT02ey .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVO0QT02ey .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVO0QT02ey .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVO0QT02ey .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVO0QT02ey .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVO0QT02ey .navbar.navbar-short {
  min-height: 80px;
}
.cid-uVO0QT02ey .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVO0QT02ey .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uVO0QT02ey .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVO0QT02ey .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVO0QT02ey .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVO0QT02ey .dropdown-item.active,
.cid-uVO0QT02ey .dropdown-item:active {
  background-color: transparent;
}
.cid-uVO0QT02ey .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVO0QT02ey .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVO0QT02ey .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVO0QT02ey .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uVO0QT02ey .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVO0QT02ey .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVO0QT02ey ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVO0QT02ey .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVO0QT02ey button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVO0QT02ey button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uVO0QT02ey button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVO0QT02ey button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVO0QT02ey button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVO0QT02ey button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVO0QT02ey nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVO0QT02ey nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVO0QT02ey nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVO0QT02ey nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVO0QT02ey .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVO0QT02ey a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVO0QT02ey .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uVO0QT02ey .navbar {
    height: 70px;
  }
  .cid-uVO0QT02ey .navbar.opened {
    height: auto;
  }
  .cid-uVO0QT02ey .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVO0QTEl7u {
  background-image: url("../../../assets/images/mbr-1920x1281.jpeg");
}
.cid-uVO0QTEl7u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVO0QTEl7u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVO0QTEl7u .mbr-section-title {
  color: #FFFFFF;
}
.cid-uVO0QTEl7u .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-uVO0QTEl7u .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-uVO0QTEl7u .mbr-section-btn {
  margin-top: 18px;
}
.cid-uVO0QTEl7u .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-uVO0QTEl7u .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-uVO0QUdPty {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-uVO0QUdPty .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVO0QUdPty .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVO0QUdPty .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uVO0QUdPty .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uVO0QUdPty .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uVO0QUdPty .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-uVO0QUdPty .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uVO0QUdPty .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uVO0QUdPty .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-uVO0QUdPty .mbr-section-title {
  color: #FFFFFF;
}
.cid-uVO0QUdPty .mbr-desc {
  color: #FFFFFF;
}
.cid-uVO0QUdPty .mbr-text {
  color: #FFFFFF;
}
.cid-uVO9zqliwO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uVO9zqliwO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVO9zqliwO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVO9zqliwO .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uVO9zqliwO .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uVO9zqliwO .row {
    padding: 0 24px;
  }
}
.cid-uVO9zqliwO .row {
  justify-content: center;
}
.cid-uVO9zqliwO .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uVO9zqliwO .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uVO9zqliwO .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uVO9zqliwO .title-wrapper .mbr-section-title span {
  position: relative;
  z-index: 1;
}
.cid-uVO9zqliwO .title-wrapper .mbr-section-title span::before {
  content: '';
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #00acb1;
  z-index: -1;
}
.cid-uVO9zqliwO .card {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-uVO9zqliwO .card {
    margin-bottom: 24px;
  }
}
.cid-uVO9zqliwO .card .blur-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.cid-uVO9zqliwO .card .blur-circle .circle {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  filter: blur(5px) blur(5px);
  background-image: linear-gradient(90deg, #ffffff 30%, #ffffff);
}
.cid-uVO9zqliwO .card .card-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uVO9zqliwO .card .card-wrapper .mbr-iconfont {
  font-size: 50px;
  margin-bottom: 18px;
  display: block;
}
.cid-uVO9zqliwO .card .card-wrapper .mbr-card-title {
  margin-bottom: 10px;
}
.cid-uVO9zqliwO .card .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uVO9zqliwO .mbr-section-title {
  color: #00acb1;
}
.cid-uVO9zqliwO .mbr-text {
  color: #111111;
}
.cid-uVO9zqliwO .mbr-card-title {
  color: #111111;
}
.cid-uVO9zqliwO .mbr-card-title,
.cid-uVO9zqliwO .mbr-iconfont,
.cid-uVO9zqliwO .blur-circle {
  color: #00acb1;
}
.cid-uVO0QUHMa6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #f7f7f7;
}
.cid-uVO0QUHMa6 .list-group-item {
  background-color: transparent;
  border-top: 1px solid currentColor;
  padding: 0.5rem 0;
  color: #000000;
}
.cid-uVO0QUHMa6 .d-flex {
  align-items: flex-end;
}
.cid-uVO0QUHMa6 .plan-price {
  display: inline-block;
}
.cid-uVO0QUHMa6 .price-wrapper {
  width: 100%;
}
.cid-uVO0QUHMa6 ul {
  padding: 0.5rem 2rem;
}
.cid-uVO0QUHMa6 .list-group {
  margin-top: 1.5rem;
}
.cid-uVO0QUHMa6 .plan-body {
  padding-bottom: 4rem;
}
.cid-uVO0QUHMa6 .plan-header {
  padding-top: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.cid-uVO0QUHMa6 .price {
  color: #669900;
}
.cid-uVO0QUHMa6 .plan-title,
.cid-uVO0QUHMa6 .plan-price,
.cid-uVO0QUHMa6 .price-term,
.cid-uVO0QUHMa6 .price-text,
.cid-uVO0QUHMa6 .list-group-item,
.cid-uVO0QUHMa6 .price {
  transition: all 0.3s;
}
.cid-uVO0QUHMa6 .plan {
  word-break: break-word;
  border: 1px solid black;
  transition: all 0.3s;
}
.cid-uVO0QUHMa6 .plan:hover {
  background: #87e4db;
  border-color: #87e4db;
}
.cid-uVO0QUHMa6 .plan:hover .plan-title,
.cid-uVO0QUHMa6 .plan:hover .plan-price,
.cid-uVO0QUHMa6 .plan:hover .price-term,
.cid-uVO0QUHMa6 .plan:hover .price-text,
.cid-uVO0QUHMa6 .plan:hover .list-group-item,
.cid-uVO0QUHMa6 .plan:hover .price {
  color: #678283 !important;
  border-color: #678283 !important;
}
.cid-uVO0QUHMa6 .plan:hover .btn {
  background: white !important;
  color: black !important;
}
@media (max-width: 991px) {
  .cid-uVO0QUHMa6 .plan {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uVO0QUHMa6 ul {
    padding: 0.5rem 1rem;
  }
  .cid-uVO0QUHMa6 .plan-header {
    padding-top: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-uVO0QUHMa6 .plan-title {
  text-align: left;
  color: #00acb1;
}
.cid-uVO0QUHMa6 UL {
  text-align: left;
  color: #fa4529;
}
.cid-uVO0QUHMa6 .price-text {
  text-align: left;
  color: #bbbbbb;
}
.cid-uVO0QUHMa6 .mbr-section-subtitle {
  color: #666666;
}
.cid-uVO0QUHMa6 .price,
.cid-uVO0QUHMa6 .price-wrapper {
  text-align: center;
  color: #678283;
}
.cid-uVO0QUHMa6 .mbr-section-title {
  color: #678283;
}
.cid-uVO0QUHMa6 .price-term {
  color: #678283;
}
.cid-uVO0QVj5O4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-uVO0QVj5O4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVO0QVj5O4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVO0QVj5O4 .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uVO0QVj5O4 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uVO0QVj5O4 .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uVO0QVj5O4 .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-uVO0QVj5O4 .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uVO0QVj5O4 .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uVO0QVj5O4 .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-uVO0QVj5O4 .mbr-section-title {
  color: #FFFFFF;
}
.cid-uVO0QVj5O4 .mbr-desc {
  color: #FFFFFF;
}
.cid-uVO0QVj5O4 .mbr-text {
  color: #FFFFFF;
}
.cid-uVO0QVTARF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #87e4db;
}
@media (max-width: 992px) {
  .cid-uVO0QVTARF .form-title,
  .cid-uVO0QVTARF .form-wrapper {
    padding: 0;
  }
}
.cid-uVO0QVTARF .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uVO0QVTARF .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uVO0QVTARF .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uVO0QVTARF .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uVO0QVTARF .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-uVO0QVTARF .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-uVO0QVTARF .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uVO0QVTARF .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uVO0QVTARF .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uVO0QVTARF .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-uVO0QVTARF .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-uVO0QVTARF .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uVO0QVTARF .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-uVO0QVTARF .mbr-form {
    margin: 0 30px;
  }
}
.cid-uVO0QVTARF .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uVO0QVTARF .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uVO0QVTARF .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-uVO0QVTARF .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-uVO0QVTARF .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-uVO0QVTARF .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-uVO0QVTARF .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-uVO0QVTARF .mbr-section-title {
  color: #00acb1;
}
.cid-uVO0QVTARF .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uVO0QWxYdg {
  background-color: #efefec;
}
.cid-uVO0QWxYdg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVO0QWxYdg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVO0QWxYdg .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uVO0QWxYdg .row {
  align-items: center;
}
.cid-uVO0QWxYdg .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uVO0QWxYdg .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uVO0QWxYdg .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uVO0QWxYdg .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uVO0QWxYdg .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uVO0QWxYdg .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uVO0QWxYdg .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uVO0QWxYdg .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uVO0QWxYdg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVO0QWxYdg .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uVO0QWxYdg .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uVO0QWxYdg .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uVO0QWxYdg .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uVO0QWxYdg .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uVO0QWxYdg .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uVO0QWxYdg .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVO0QWxYdg .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uVO0QWxYdg .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uVO0QWxYdg .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uVO0QWxYdg .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uVO0QWxYdg .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uVO0QWxYdg .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uVO0QWxYdg .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uVO0QWxYdg .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uVO0QWxYdg .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uVO0QWxYdg .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uVO0QWxYdg .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uVO0QWxYdg .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uVO0QWxYdg .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uVO0QWxYdg .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uVO0QWxYdg .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uVO0QWxYdg .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uVO0QWxYdg .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uVO0QWxYdg .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uVO0QWxYdg .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uVO0QWxYdg .contact-container {
    width: 100%;
  }
}
.cid-uVO0QWxYdg .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uVO0QWxYdg .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uVO0QWxYdg .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uVO0QWxYdg .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uVO0QWxYdg .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uVO0QWxYdg .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uVO0QWxYdg .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uVO0QWxYdg .copyright {
  color: #efefec;
}
.cid-uVO0QWxYdg .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uVO0QWxYdg .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uVO0QWxYdg .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uzUA6ACCAt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uzUA6ACCAt .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uzUA6ACCAt nav.navbar {
  position: fixed;
}
.cid-uzUA6ACCAt .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uzUA6ACCAt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uzUA6ACCAt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uzUA6ACCAt .dropdown-item:hover,
.cid-uzUA6ACCAt .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uzUA6ACCAt .dropdown-item:hover span {
  color: white;
}
.cid-uzUA6ACCAt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uzUA6ACCAt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uzUA6ACCAt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uzUA6ACCAt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uzUA6ACCAt .nav-link {
  position: relative;
}
.cid-uzUA6ACCAt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uzUA6ACCAt .container {
    flex-wrap: nowrap;
  }
}
.cid-uzUA6ACCAt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uzUA6ACCAt .dropdown-menu,
.cid-uzUA6ACCAt .navbar.opened {
  background: #ffffff !important;
}
.cid-uzUA6ACCAt .nav-item:focus,
.cid-uzUA6ACCAt .nav-link:focus {
  outline: none;
}
.cid-uzUA6ACCAt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uzUA6ACCAt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uzUA6ACCAt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uzUA6ACCAt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uzUA6ACCAt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uzUA6ACCAt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uzUA6ACCAt .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uzUA6ACCAt .navbar.opened {
  transition: all 0.3s;
}
.cid-uzUA6ACCAt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uzUA6ACCAt .navbar .navbar-logo img {
  width: auto;
}
.cid-uzUA6ACCAt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uzUA6ACCAt .navbar.collapsed {
  justify-content: center;
}
.cid-uzUA6ACCAt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uzUA6ACCAt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uzUA6ACCAt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uzUA6ACCAt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uzUA6ACCAt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uzUA6ACCAt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uzUA6ACCAt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uzUA6ACCAt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uzUA6ACCAt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uzUA6ACCAt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uzUA6ACCAt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uzUA6ACCAt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uzUA6ACCAt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uzUA6ACCAt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uzUA6ACCAt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uzUA6ACCAt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uzUA6ACCAt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uzUA6ACCAt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uzUA6ACCAt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uzUA6ACCAt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uzUA6ACCAt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uzUA6ACCAt .navbar.navbar-short {
  min-height: 80px;
}
.cid-uzUA6ACCAt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uzUA6ACCAt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uzUA6ACCAt .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uzUA6ACCAt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uzUA6ACCAt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzUA6ACCAt .dropdown-item.active,
.cid-uzUA6ACCAt .dropdown-item:active {
  background-color: transparent;
}
.cid-uzUA6ACCAt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uzUA6ACCAt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uzUA6ACCAt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uzUA6ACCAt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uzUA6ACCAt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uzUA6ACCAt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uzUA6ACCAt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uzUA6ACCAt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uzUA6ACCAt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uzUA6ACCAt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uzUA6ACCAt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uzUA6ACCAt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzUA6ACCAt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uzUA6ACCAt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uzUA6ACCAt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzUA6ACCAt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uzUA6ACCAt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uzUA6ACCAt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uzUA6ACCAt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uzUA6ACCAt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uzUA6ACCAt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uzUA6ACCAt .navbar {
    height: 70px;
  }
  .cid-uzUA6ACCAt .navbar.opened {
    height: auto;
  }
  .cid-uzUA6ACCAt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVTGGU326a {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uVTGGU326a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVTGGU326a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVTGGU326a .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uVTGGU326a .container-fluid {
    padding: 0 15px;
  }
}
.cid-uVTGGU326a .row {
  margin: 0;
}
.cid-uVTGGU326a .row .card {
  padding: 0;
}
.cid-uVTGGU326a .card-wrapper {
  padding: 140px 30px;
  background-color: #d2e534;
}
@media (max-width: 1440px) {
  .cid-uVTGGU326a .card-wrapper {
    padding: 40px 30px;
  }
}
@media (max-width: 992px) {
  .cid-uVTGGU326a .card-wrapper {
    padding: 15px;
  }
}
.cid-uVTGGU326a .card-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 3px 10px;
  background-color: #ffffff;
  margin-bottom: 15px;
}
.cid-uVTGGU326a .card-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uVTGGU326a .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-uVTGGU326a .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uVTGGU326a .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uVTGGU326a .image-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uVTGGU326a .image-wrapper {
    height: 350px;
    margin-bottom: 15px;
  }
}
.cid-uVTGGU326a .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uVTGGU326a .mbr-label {
  color: #000000;
}
.cid-uVTGGU326a .mbr-section-title {
  color: #000000;
}
.cid-uVTGGU326a .mbr-text,
.cid-uVTGGU326a .text-wrapper {
  color: #000000;
}
.cid-uWa7xdPs57 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWa7xdPs57 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWa7xdPs57 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWa7xdPs57 .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uWa7xdPs57 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uWa7xdPs57 .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uWa7xdPs57 .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-uWa7xdPs57 .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uWa7xdPs57 .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uWa7xdPs57 .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-uWa7xdPs57 .mbr-section-title {
  color: #00acb1;
}
.cid-uWa7xdPs57 .mbr-desc {
  color: #FFFFFF;
}
.cid-uWa7xdPs57 .mbr-text {
  color: #232323;
}
.cid-uWa7sFXqC0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uWa7sFXqC0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWa7sFXqC0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWa7sFXqC0 .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 80%;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uWa7sFXqC0 .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 22px;
  }
}
.cid-uWa7sFXqC0 .items-wrapper {
  margin: 0 -13px;
}
.cid-uWa7sFXqC0 .items-wrapper .item {
  padding: 0 13px;
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .cid-uWa7sFXqC0 .items-wrapper .item {
    margin-bottom: 16px;
  }
}
.cid-uWa7sFXqC0 .items-wrapper .item:hover .item-wrapper .item-img img,
.cid-uWa7sFXqC0 .items-wrapper .item:focus .item-wrapper .item-img img {
  transform: translateX(-52px);
}
.cid-uWa7sFXqC0 .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 26px 0 26px;
  height: 100%;
  overflow: hidden !important;
}
@media (max-width: 992px) {
  .cid-uWa7sFXqC0 .items-wrapper .item .item-wrapper {
    padding: 16px 16px 0 16px;
  }
}
.cid-uWa7sFXqC0 .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-uWa7sFXqC0 .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 16px;
}
.cid-uWa7sFXqC0 .items-wrapper .item .item-wrapper .card-box .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uWa7sFXqC0 .items-wrapper .item .item-wrapper .item-img {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-uWa7sFXqC0 .items-wrapper .item .item-wrapper .item-img {
    margin-top: 22px;
  }
}
.cid-uWa7sFXqC0 .items-wrapper .item .item-wrapper .item-img img {
  height: 350px;
  object-fit: cover;
  transition: all .3s ease;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.cid-uWa7sFXqC0 .items-wrapper .item .card_1 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00acb1, #1f2329 85%);
}
.cid-uWa7sFXqC0 .items-wrapper .item .card_2 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #00acb1, #1f2329 85%);
}
.cid-uWa7sFXqC0 .items-wrapper .item .card_3 {
  background-image: radial-gradient(circle farthest-corner at 50% 100%, #051744, #1f2329 85%);
}
.cid-uWa7sFXqC0 .mbr-section-title,
.cid-uWa7sFXqC0 .title-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uWa7sFXqC0 .item-title {
  color: #ffffff;
}
.cid-uWa7sFXqC0 .item-text {
  color: #ffffff;
}
.cid-uWapgTsT0p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uWapgTsT0p .row {
    flex-direction: column-reverse;
  }
}
.cid-uWapgTsT0p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWapgTsT0p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWapgTsT0p .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uWapgTsT0p .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uWapgTsT0p .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-uWapgTsT0p .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uWapgTsT0p .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uWapgTsT0p .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uWapgTsT0p .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uWapgTsT0p .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uWapgTsT0p .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uWapgTsT0p .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-uWapgTsT0p .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-uWapgTsT0p .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-uWapgTsT0p .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-uWapgTsT0p .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uWapgTsT0p .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-uWapgTsT0p .image-wrapper img {
    min-height: 100%;
  }
}
.cid-uWapgTsT0p .mbr-section-title {
  color: #000000;
}
.cid-uWapgTsT0p .mbr-text {
  color: #000000;
}
.cid-uWaq4Wdt8C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWaq4Wdt8C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWaq4Wdt8C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWaq4Wdt8C .card {
  justify-content: center;
}
.cid-uWaq4Wdt8C .image-wrapper {
  padding-right: 70px;
}
@media (max-width: 992px) {
  .cid-uWaq4Wdt8C .image-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cid-uWaq4Wdt8C .image-wrapper img {
  height: 650px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uWaq4Wdt8C .image-wrapper img {
    height: 350px;
  }
}
.cid-uWaq4Wdt8C .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uWaq4Wdt8C .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uWaq4Wdt8C .content-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
.cid-uWaq4Wdt8C .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uWaq4Wdt8C .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uWaq4Wdt8C .mbr-section-title {
  color: #000000;
}
.cid-uWaq4Wdt8C .mbr-section-subtitle {
  color: #000000;
}
.cid-uWaq4Wdt8C .mbr-text,
.cid-uWaq4Wdt8C .text-wrapper {
  color: #000000;
}
.cid-uVTJ7D6qCc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #87e4db;
}
@media (max-width: 992px) {
  .cid-uVTJ7D6qCc .form-title,
  .cid-uVTJ7D6qCc .form-wrapper {
    padding: 0;
  }
}
.cid-uVTJ7D6qCc .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uVTJ7D6qCc .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uVTJ7D6qCc .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uVTJ7D6qCc .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uVTJ7D6qCc .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-uVTJ7D6qCc .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-uVTJ7D6qCc .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uVTJ7D6qCc .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uVTJ7D6qCc .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uVTJ7D6qCc .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-uVTJ7D6qCc .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-uVTJ7D6qCc .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uVTJ7D6qCc .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-uVTJ7D6qCc .mbr-form {
    margin: 0 30px;
  }
}
.cid-uVTJ7D6qCc .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uVTJ7D6qCc .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uVTJ7D6qCc .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-uVTJ7D6qCc .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-uVTJ7D6qCc .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-uVTJ7D6qCc .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-uVTJ7D6qCc .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-uVTJ7D6qCc .mbr-section-title {
  color: #00acb1;
}
.cid-uVTJ7D6qCc .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uzUA6BIBj4 {
  background-color: #efefec;
}
.cid-uzUA6BIBj4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uzUA6BIBj4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uzUA6BIBj4 .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uzUA6BIBj4 .row {
  align-items: center;
}
.cid-uzUA6BIBj4 .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uzUA6BIBj4 .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uzUA6BIBj4 .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uzUA6BIBj4 .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uzUA6BIBj4 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uzUA6BIBj4 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uzUA6BIBj4 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uzUA6BIBj4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uzUA6BIBj4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uzUA6BIBj4 .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uzUA6BIBj4 .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uzUA6BIBj4 .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uzUA6BIBj4 .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uzUA6BIBj4 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uzUA6BIBj4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uzUA6BIBj4 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uzUA6BIBj4 .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uzUA6BIBj4 .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uzUA6BIBj4 .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uzUA6BIBj4 .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uzUA6BIBj4 .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uzUA6BIBj4 .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uzUA6BIBj4 .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uzUA6BIBj4 .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uzUA6BIBj4 .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uzUA6BIBj4 .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uzUA6BIBj4 .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uzUA6BIBj4 .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uzUA6BIBj4 .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uzUA6BIBj4 .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uzUA6BIBj4 .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uzUA6BIBj4 .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uzUA6BIBj4 .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uzUA6BIBj4 .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uzUA6BIBj4 .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uzUA6BIBj4 .contact-container {
    width: 100%;
  }
}
.cid-uzUA6BIBj4 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uzUA6BIBj4 .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uzUA6BIBj4 .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uzUA6BIBj4 .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uzUA6BIBj4 .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uzUA6BIBj4 .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uzUA6BIBj4 .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uzUA6BIBj4 .copyright {
  color: #efefec;
}
.cid-uzUA6BIBj4 .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uzUA6BIBj4 .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uzUA6BIBj4 .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uVTZSJmEIm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uVTZSJmEIm .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uVTZSJmEIm nav.navbar {
  position: fixed;
}
.cid-uVTZSJmEIm .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVTZSJmEIm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVTZSJmEIm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVTZSJmEIm .dropdown-item:hover,
.cid-uVTZSJmEIm .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uVTZSJmEIm .dropdown-item:hover span {
  color: white;
}
.cid-uVTZSJmEIm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVTZSJmEIm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVTZSJmEIm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVTZSJmEIm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVTZSJmEIm .nav-link {
  position: relative;
}
.cid-uVTZSJmEIm .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uVTZSJmEIm .container {
    flex-wrap: nowrap;
  }
}
.cid-uVTZSJmEIm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVTZSJmEIm .dropdown-menu,
.cid-uVTZSJmEIm .navbar.opened {
  background: #ffffff !important;
}
.cid-uVTZSJmEIm .nav-item:focus,
.cid-uVTZSJmEIm .nav-link:focus {
  outline: none;
}
.cid-uVTZSJmEIm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVTZSJmEIm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVTZSJmEIm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVTZSJmEIm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVTZSJmEIm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVTZSJmEIm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVTZSJmEIm .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uVTZSJmEIm .navbar.opened {
  transition: all 0.3s;
}
.cid-uVTZSJmEIm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVTZSJmEIm .navbar .navbar-logo img {
  width: auto;
}
.cid-uVTZSJmEIm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uVTZSJmEIm .navbar.collapsed {
  justify-content: center;
}
.cid-uVTZSJmEIm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVTZSJmEIm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVTZSJmEIm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uVTZSJmEIm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVTZSJmEIm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVTZSJmEIm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uVTZSJmEIm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uVTZSJmEIm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVTZSJmEIm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVTZSJmEIm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVTZSJmEIm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVTZSJmEIm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVTZSJmEIm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVTZSJmEIm .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uVTZSJmEIm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVTZSJmEIm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVTZSJmEIm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVTZSJmEIm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVTZSJmEIm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVTZSJmEIm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uVTZSJmEIm .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uVTZSJmEIm .navbar.navbar-short {
  min-height: 80px;
}
.cid-uVTZSJmEIm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVTZSJmEIm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uVTZSJmEIm .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uVTZSJmEIm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uVTZSJmEIm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVTZSJmEIm .dropdown-item.active,
.cid-uVTZSJmEIm .dropdown-item:active {
  background-color: transparent;
}
.cid-uVTZSJmEIm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVTZSJmEIm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVTZSJmEIm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVTZSJmEIm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uVTZSJmEIm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVTZSJmEIm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVTZSJmEIm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uVTZSJmEIm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uVTZSJmEIm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uVTZSJmEIm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uVTZSJmEIm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVTZSJmEIm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVTZSJmEIm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uVTZSJmEIm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uVTZSJmEIm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVTZSJmEIm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uVTZSJmEIm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uVTZSJmEIm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVTZSJmEIm .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uVTZSJmEIm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVTZSJmEIm .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uVTZSJmEIm .navbar {
    height: 70px;
  }
  .cid-uVTZSJmEIm .navbar.opened {
    height: auto;
  }
  .cid-uVTZSJmEIm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVTZSJRd6I {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uVTZSJRd6I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVTZSJRd6I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVTZSJRd6I .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uVTZSJRd6I .container-fluid {
    padding: 0 15px;
  }
}
.cid-uVTZSJRd6I .row {
  margin: 0;
}
.cid-uVTZSJRd6I .row .card {
  padding: 0;
}
.cid-uVTZSJRd6I .card-wrapper {
  padding: 140px 30px;
  background-color: #d2e534;
}
@media (max-width: 1440px) {
  .cid-uVTZSJRd6I .card-wrapper {
    padding: 40px 30px;
  }
}
@media (max-width: 992px) {
  .cid-uVTZSJRd6I .card-wrapper {
    padding: 15px;
  }
}
.cid-uVTZSJRd6I .card-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 3px 10px;
  background-color: #ffffff;
  margin-bottom: 15px;
}
.cid-uVTZSJRd6I .card-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uVTZSJRd6I .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 60%;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-uVTZSJRd6I .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-uVTZSJRd6I .card-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uVTZSJRd6I .image-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-uVTZSJRd6I .image-wrapper {
    height: 350px;
    margin-bottom: 15px;
  }
}
.cid-uVTZSJRd6I .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-uVTZSJRd6I .mbr-label {
  color: #000000;
}
.cid-uVTZSJRd6I .mbr-section-title {
  color: #000000;
}
.cid-uVTZSJRd6I .mbr-text,
.cid-uVTZSJRd6I .text-wrapper {
  color: #000000;
}
.cid-uVU4fTcdCr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-uVU4fTcdCr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVU4fTcdCr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVU4fTcdCr .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uVU4fTcdCr .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uVU4fTcdCr .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uVU4fTcdCr .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-uVU4fTcdCr .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uVU4fTcdCr .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uVU4fTcdCr .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-uVU4fTcdCr .mbr-section-title {
  color: #FFFFFF;
}
.cid-uVU4fTcdCr .mbr-desc {
  color: #FFFFFF;
}
.cid-uVU4fTcdCr .mbr-text {
  color: #FFFFFF;
}
.cid-uVU5AGBQJZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uVU5AGBQJZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVU5AGBQJZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVU5AGBQJZ .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uVU5AGBQJZ .text-wrapper {
    margin: 0 30px;
  }
}
.cid-uVU5AGBQJZ .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uVU5AGBQJZ .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-uVU5AGBQJZ .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uVU5AGBQJZ .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-uVU5AGBQJZ .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-uVU5AGBQJZ .mbr-section-title {
  color: #232323;
}
.cid-uVU5AGBQJZ .mbr-desc {
  color: #00acb1;
}
.cid-uVU5AGBQJZ .mbr-text {
  color: #232323;
}
.cid-uVTZSKHlkX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #87e4db;
}
@media (max-width: 992px) {
  .cid-uVTZSKHlkX .form-title,
  .cid-uVTZSKHlkX .form-wrapper {
    padding: 0;
  }
}
.cid-uVTZSKHlkX .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-uVTZSKHlkX .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-uVTZSKHlkX .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-uVTZSKHlkX .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-uVTZSKHlkX .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-uVTZSKHlkX .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-uVTZSKHlkX .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-uVTZSKHlkX .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-uVTZSKHlkX .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-uVTZSKHlkX .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-uVTZSKHlkX .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-uVTZSKHlkX .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-uVTZSKHlkX .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-uVTZSKHlkX .mbr-form {
    margin: 0 30px;
  }
}
.cid-uVTZSKHlkX .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uVTZSKHlkX .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-uVTZSKHlkX .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-uVTZSKHlkX .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-uVTZSKHlkX .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-uVTZSKHlkX .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-uVTZSKHlkX .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-uVTZSKHlkX .mbr-section-title {
  color: #00acb1;
}
.cid-uVTZSKHlkX .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uVTZSL7gEV {
  background-color: #efefec;
}
.cid-uVTZSL7gEV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVTZSL7gEV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVTZSL7gEV .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uVTZSL7gEV .row {
  align-items: center;
}
.cid-uVTZSL7gEV .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uVTZSL7gEV .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uVTZSL7gEV .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uVTZSL7gEV .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uVTZSL7gEV .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uVTZSL7gEV .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uVTZSL7gEV .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uVTZSL7gEV .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uVTZSL7gEV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVTZSL7gEV .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uVTZSL7gEV .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uVTZSL7gEV .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uVTZSL7gEV .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uVTZSL7gEV .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uVTZSL7gEV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uVTZSL7gEV .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVTZSL7gEV .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uVTZSL7gEV .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uVTZSL7gEV .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uVTZSL7gEV .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uVTZSL7gEV .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uVTZSL7gEV .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uVTZSL7gEV .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uVTZSL7gEV .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uVTZSL7gEV .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uVTZSL7gEV .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uVTZSL7gEV .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uVTZSL7gEV .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uVTZSL7gEV .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uVTZSL7gEV .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uVTZSL7gEV .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uVTZSL7gEV .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uVTZSL7gEV .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uVTZSL7gEV .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uVTZSL7gEV .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uVTZSL7gEV .contact-container {
    width: 100%;
  }
}
.cid-uVTZSL7gEV .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uVTZSL7gEV .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uVTZSL7gEV .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uVTZSL7gEV .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uVTZSL7gEV .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uVTZSL7gEV .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uVTZSL7gEV .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uVTZSL7gEV .copyright {
  color: #efefec;
}
.cid-uVTZSL7gEV .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uVTZSL7gEV .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uVTZSL7gEV .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uVTZSLL7xA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uVTZSLL7xA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVTZSLL7xA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVTZSLL7xA .content-wrapper {
  position: relative;
  margin: 0 160px;
}
@media (max-width: 992px) {
  .cid-uVTZSLL7xA .content-wrapper {
    margin: 0 30px;
  }
}
.cid-uVTZSLL7xA .content-wrapper .mbr-section-title {
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 2px solid #e5e5e5;
}
@media (max-width: 992px) {
  .cid-uVTZSLL7xA .content-wrapper .mbr-section-title {
    padding-top: 12px;
    margin-bottom: 12px;
  }
}
.cid-uVTZSLL7xA .content-wrapper .list-wrapper .mbr-item {
  padding: 20px 0 33px 0;
  border-top: 2px solid #124ad6;
  margin: 0;
}
.cid-uVTZSLL7xA .content-wrapper .list-wrapper .mbr-item:first-child {
  border: none;
}
@media (max-width: 992px) {
  .cid-uVTZSLL7xA .content-wrapper .list-wrapper .mbr-item {
    padding: 12px 0 20px 0;
  }
}
.cid-uVTZSLL7xA .mbr-section-title {
  color: #000000;
}
.cid-uVTZSLL7xA .mbr-item {
  color: #000000;
}
.cid-uZ0ShUCB2q {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uZ0ShUCB2q .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uZ0ShUCB2q nav.navbar {
  position: fixed;
}
.cid-uZ0ShUCB2q .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ0ShUCB2q .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uZ0ShUCB2q .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uZ0ShUCB2q .dropdown-item:hover,
.cid-uZ0ShUCB2q .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uZ0ShUCB2q .dropdown-item:hover span {
  color: white;
}
.cid-uZ0ShUCB2q .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uZ0ShUCB2q .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uZ0ShUCB2q .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uZ0ShUCB2q .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uZ0ShUCB2q .nav-link {
  position: relative;
}
.cid-uZ0ShUCB2q .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uZ0ShUCB2q .container {
    flex-wrap: nowrap;
  }
}
.cid-uZ0ShUCB2q .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uZ0ShUCB2q .dropdown-menu,
.cid-uZ0ShUCB2q .navbar.opened {
  background: #ffffff !important;
}
.cid-uZ0ShUCB2q .nav-item:focus,
.cid-uZ0ShUCB2q .nav-link:focus {
  outline: none;
}
.cid-uZ0ShUCB2q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZ0ShUCB2q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZ0ShUCB2q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZ0ShUCB2q .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZ0ShUCB2q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZ0ShUCB2q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZ0ShUCB2q .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uZ0ShUCB2q .navbar.opened {
  transition: all 0.3s;
}
.cid-uZ0ShUCB2q .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uZ0ShUCB2q .navbar .navbar-logo img {
  width: auto;
}
.cid-uZ0ShUCB2q .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uZ0ShUCB2q .navbar.collapsed {
  justify-content: center;
}
.cid-uZ0ShUCB2q .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZ0ShUCB2q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uZ0ShUCB2q .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uZ0ShUCB2q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZ0ShUCB2q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZ0ShUCB2q .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uZ0ShUCB2q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uZ0ShUCB2q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uZ0ShUCB2q .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uZ0ShUCB2q .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZ0ShUCB2q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZ0ShUCB2q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZ0ShUCB2q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZ0ShUCB2q .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uZ0ShUCB2q .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZ0ShUCB2q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uZ0ShUCB2q .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uZ0ShUCB2q .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uZ0ShUCB2q .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZ0ShUCB2q .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uZ0ShUCB2q .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uZ0ShUCB2q .navbar.navbar-short {
  min-height: 80px;
}
.cid-uZ0ShUCB2q .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZ0ShUCB2q .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uZ0ShUCB2q .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uZ0ShUCB2q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uZ0ShUCB2q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ0ShUCB2q .dropdown-item.active,
.cid-uZ0ShUCB2q .dropdown-item:active {
  background-color: transparent;
}
.cid-uZ0ShUCB2q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZ0ShUCB2q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZ0ShUCB2q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZ0ShUCB2q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uZ0ShUCB2q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZ0ShUCB2q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZ0ShUCB2q ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uZ0ShUCB2q .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uZ0ShUCB2q button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uZ0ShUCB2q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uZ0ShUCB2q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZ0ShUCB2q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ0ShUCB2q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uZ0ShUCB2q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uZ0ShUCB2q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ0ShUCB2q nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uZ0ShUCB2q nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uZ0ShUCB2q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZ0ShUCB2q .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uZ0ShUCB2q a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZ0ShUCB2q .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uZ0ShUCB2q .navbar {
    height: 70px;
  }
  .cid-uZ0ShUCB2q .navbar.opened {
    height: auto;
  }
  .cid-uZ0ShUCB2q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZ0T1vbdCS {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background: #0225ac;
}
.cid-uZ0T1vbdCS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ0T1vbdCS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ0T1vbdCS .team-card {
  margin-bottom: 1rem;
  transition: all 0.3s;
}
.cid-uZ0T1vbdCS .team-card:hover {
  transform: translateY(-10px);
}
.cid-uZ0T1vbdCS .card1 {
  background: #0225ac;
}
.cid-uZ0T1vbdCS .card2 {
  background: #0225ac;
}
.cid-uZ0T1vbdCS .card3 {
  background: #0e3aa7;
}
.cid-uZ0T1vbdCS .card4 {
  background: #2e481a;
}
.cid-uZ0T1vbdCS .image-wrap {
  padding-bottom: 0rem;
  position: relative;
}
.cid-uZ0T1vbdCS .image-wrap .social-row {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
}
.cid-uZ0T1vbdCS .card-wrap {
  margin-bottom: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .cid-uZ0T1vbdCS .card-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uZ0T1vbdCS .card-wrap .image-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uZ0T1vbdCS .card-wrap .content-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cid-uZ0T1vbdCS .card-wrap .content-wrap .content-footer {
  margin-top: auto;
}
@media (min-width: 768px) {
  .cid-uZ0T1vbdCS .card-wrap .content-wrap {
    padding: 2.25rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ0T1vbdCS .card-wrap .content-wrap {
    padding: 1.5rem;
  }
}
.cid-uZ0T1vbdCS .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 1.5rem;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
}
.cid-uZ0T1vbdCS .tag1 {
  background: #0225ac;
  color: #502274;
}
.cid-uZ0T1vbdCS .tag2 {
  background: #0225ac;
  color: #ffd7ef;
}
.cid-uZ0T1vbdCS .tag3 {
  background: #0e3aa7;
  color: #232323;
  text-align: right;
}
.cid-uZ0T1vbdCS .tag4 {
  background: #2e481a;
  color: #ffffff;
}
.cid-uZ0T1vbdCS .card-text3,
.cid-uZ0T1vbdCS .mbr-section-btn {
  color: #232323;
}
.cid-uZ0T1vbdCS .card-text2,
.cid-uZ0T1vbdCS .mbr-section-btn {
  color: #ffd7ef;
}
.cid-uZ0T1vbdCS .card-text1,
.cid-uZ0T1vbdCS .mbr-section-btn {
  color: #502274;
}
.cid-uZ0T1vbdCS .card-title2,
.cid-uZ0T1vbdCS .social-row {
  color: #ff8cbc;
}
.cid-uZ0T1vbdCS .mbr-role3,
.cid-uZ0T1vbdCS .social-row {
  color: #ffffff;
}
.cid-uZ0T1vbdCS .card-title3,
.cid-uZ0T1vbdCS .social-row {
  color: #320707;
}
.cid-uZ0T1vbdCS .card-title4,
.cid-uZ0T1vbdCS .social-row {
  color: #ffffff;
}
.cid-uZ0T1vbdCS .mbr-role3 {
  color: #232323;
}
.cid-uZ0T1vbdCS .mbr-role2 {
  color: #ffd7ef;
}
.cid-uZ0T1vbdCS .mbr-role4 {
  color: #ffffff;
}
.cid-uZ0T1vbdCS .card-text4,
.cid-uZ0T1vbdCS .mbr-section-btn {
  color: #ffffff;
}
.cid-uZ0T1vbdCS .mbr-section-title {
  text-align: center;
  color: #ffaac7;
}
.cid-uZ0T1vbdCS .card-title1,
.cid-uZ0T1vbdCS .social-row {
  color: #008063;
}
.cid-uZ0T1vbdCS .card-text2,
.cid-uZ0T1vbdCS .card2 .mbr-section-btn {
  color: #ffffff;
}
.cid-uZ0T1vbdCS .card-text1,
.cid-uZ0T1vbdCS .card1 .mbr-section-btn {
  color: #000000;
}
.cid-uZ0T1vbdCS .card-text3,
.cid-uZ0T1vbdCS .card3 .mbr-section-btn {
  color: #000000;
}
.cid-vimdKLdbT0 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vimdKLdbT0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vimdKLdbT0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vimdKLdbT0 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-vimdKLdbT0 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-vimdKLdbT0 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-vimdKLdbT0 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-vimdKLdbT0 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-vimdKLdbT0 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-vimdKLdbT0 .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-vimdKLdbT0 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-vimdKLdbT0 .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-vimdKLdbT0 .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-vimdKLdbT0 .mbr-section-title {
  color: #FFFFFF;
}
.cid-vimdKLdbT0 .mbr-section-title,
.cid-vimdKLdbT0 .mbr-section-btn {
  text-align: center;
  color: #00acb1;
}
#custom-html-q1 {
  /* Type valid CSS here 
Be sure to add this line before </form>

<input type="hidden" id="zc_gad" name="zc_gad" value="">

*/
  /* Zoho CRM form - Persona Health styling */
  /* Form container */
  /* Labels and field text */
  /* Keep Zoho row spacing sane */
  /* Remove any unwanted padding from Zoho internal divs */
  /* Label column */
  /* Field column */
  /* Input fields */
  /* Message box */
  /* Buttons */
}
#custom-html-q1 #crmWebToEntityForm .zoho-form-title {
  font-family: 'Exo', Arial, sans-serif !important;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
  margin: 0 0 25px 0;
  padding: 0;
}
#custom-html-q1 #crmWebToEntityForm {
  font-family: 'Exo', sans-serif !important;
  color: #ffffff;
  text-align: left !important;
}
#custom-html-q1 #crmWebToEntityForm label,
#custom-html-q1 #crmWebToEntityForm input,
#custom-html-q1 #crmWebToEntityForm textarea,
#custom-html-q1 #crmWebToEntityForm select,
#custom-html-q1 #crmWebToEntityForm option,
#custom-html-q1 #crmWebToEntityForm .zcwf_button,
#custom-html-q1 #crmWebToEntityForm .formsubmit {
  font-family: 'Exo', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
}
#custom-html-q1 #crmWebToEntityForm .zcwf_row {
  margin: 12px 0 !important;
}
#custom-html-q1 #crmWebToEntityForm div {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  text-align: left !important;
}
#custom-html-q1 #crmWebToEntityForm .zcwf_col_lab {
  line-height: 1.3 !important;
  margin-top: 5px !important;
}
#custom-html-q1 #crmWebToEntityForm .zcwf_col_fld {
  margin-top: 5px !important;
}
#custom-html-q1 #crmWebToEntityForm input,
#custom-html-q1 #crmWebToEntityForm select,
#custom-html-q1 #crmWebToEntityForm textarea {
  line-height: 1.3 !important;
  padding: 4px 6px !important;
  color: #313949;
}
#custom-html-q1 #crmWebToEntityForm textarea {
  min-height: 90px;
}
#custom-html-q1 #crmWebToEntityForm .zcwf_button {
  cursor: pointer;
}
.cid-vimesrxv9K {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vimesrxv9K .mbr-fallback-image.disabled {
  display: none;
}
.cid-vimesrxv9K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vimesrxv9K .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-vimesrxv9K .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-vimesrxv9K .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-vimesrxv9K .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-vimesrxv9K .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-vimesrxv9K .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-vimesrxv9K .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-vimesrxv9K .text-wrapper {
    margin: 0 30px;
  }
}
.cid-vimesrxv9K .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-vimesrxv9K .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-vimesrxv9K .mbr-section-title {
  color: #FFFFFF;
}
.cid-vimesrxv9K .mbr-section-title,
.cid-vimesrxv9K .mbr-section-btn {
  text-align: center;
}
.cid-uZ0ShWBLrI {
  background-color: #efefec;
}
.cid-uZ0ShWBLrI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ0ShWBLrI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ0ShWBLrI .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uZ0ShWBLrI .row {
  align-items: center;
}
.cid-uZ0ShWBLrI .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uZ0ShWBLrI .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uZ0ShWBLrI .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uZ0ShWBLrI .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uZ0ShWBLrI .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uZ0ShWBLrI .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uZ0ShWBLrI .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uZ0ShWBLrI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uZ0ShWBLrI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZ0ShWBLrI .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uZ0ShWBLrI .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uZ0ShWBLrI .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uZ0ShWBLrI .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uZ0ShWBLrI .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uZ0ShWBLrI .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uZ0ShWBLrI .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZ0ShWBLrI .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uZ0ShWBLrI .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uZ0ShWBLrI .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uZ0ShWBLrI .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uZ0ShWBLrI .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uZ0ShWBLrI .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uZ0ShWBLrI .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uZ0ShWBLrI .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uZ0ShWBLrI .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uZ0ShWBLrI .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uZ0ShWBLrI .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uZ0ShWBLrI .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uZ0ShWBLrI .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uZ0ShWBLrI .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uZ0ShWBLrI .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uZ0ShWBLrI .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uZ0ShWBLrI .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uZ0ShWBLrI .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uZ0ShWBLrI .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uZ0ShWBLrI .contact-container {
    width: 100%;
  }
}
.cid-uZ0ShWBLrI .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uZ0ShWBLrI .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uZ0ShWBLrI .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uZ0ShWBLrI .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uZ0ShWBLrI .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uZ0ShWBLrI .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uZ0ShWBLrI .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uZ0ShWBLrI .copyright {
  color: #efefec;
}
.cid-uZ0ShWBLrI .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uZ0ShWBLrI .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uZ0ShWBLrI .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSj57N4Xo6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uSj57N4Xo6 .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uSj57N4Xo6 nav.navbar {
  position: fixed;
}
.cid-uSj57N4Xo6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSj57N4Xo6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSj57N4Xo6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSj57N4Xo6 .dropdown-item:hover,
.cid-uSj57N4Xo6 .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uSj57N4Xo6 .dropdown-item:hover span {
  color: white;
}
.cid-uSj57N4Xo6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSj57N4Xo6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSj57N4Xo6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSj57N4Xo6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSj57N4Xo6 .nav-link {
  position: relative;
}
.cid-uSj57N4Xo6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSj57N4Xo6 .container {
    flex-wrap: nowrap;
  }
}
.cid-uSj57N4Xo6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSj57N4Xo6 .dropdown-menu,
.cid-uSj57N4Xo6 .navbar.opened {
  background: #ffffff !important;
}
.cid-uSj57N4Xo6 .nav-item:focus,
.cid-uSj57N4Xo6 .nav-link:focus {
  outline: none;
}
.cid-uSj57N4Xo6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSj57N4Xo6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSj57N4Xo6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSj57N4Xo6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSj57N4Xo6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSj57N4Xo6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSj57N4Xo6 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uSj57N4Xo6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uSj57N4Xo6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSj57N4Xo6 .navbar .navbar-logo img {
  width: auto;
}
.cid-uSj57N4Xo6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSj57N4Xo6 .navbar.collapsed {
  justify-content: center;
}
.cid-uSj57N4Xo6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSj57N4Xo6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSj57N4Xo6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uSj57N4Xo6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSj57N4Xo6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSj57N4Xo6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uSj57N4Xo6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSj57N4Xo6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSj57N4Xo6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSj57N4Xo6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSj57N4Xo6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSj57N4Xo6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSj57N4Xo6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSj57N4Xo6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uSj57N4Xo6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSj57N4Xo6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSj57N4Xo6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSj57N4Xo6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSj57N4Xo6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSj57N4Xo6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uSj57N4Xo6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uSj57N4Xo6 .navbar.navbar-short {
  min-height: 80px;
}
.cid-uSj57N4Xo6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSj57N4Xo6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSj57N4Xo6 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSj57N4Xo6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSj57N4Xo6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSj57N4Xo6 .dropdown-item.active,
.cid-uSj57N4Xo6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uSj57N4Xo6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSj57N4Xo6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSj57N4Xo6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSj57N4Xo6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uSj57N4Xo6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSj57N4Xo6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSj57N4Xo6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSj57N4Xo6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSj57N4Xo6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSj57N4Xo6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uSj57N4Xo6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSj57N4Xo6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSj57N4Xo6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSj57N4Xo6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSj57N4Xo6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSj57N4Xo6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSj57N4Xo6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSj57N4Xo6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSj57N4Xo6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSj57N4Xo6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSj57N4Xo6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSj57N4Xo6 .navbar {
    height: 70px;
  }
  .cid-uSj57N4Xo6 .navbar.opened {
    height: auto;
  }
  .cid-uSj57N4Xo6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSj57NsmXJ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uSj57NsmXJ .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uSj57NsmXJ .photo-split .image-wrap img {
  max-width: 100%;
  max-height: 800px;
  z-index: 9;
  position: relative;
}
.cid-uSj57NsmXJ .photo-split .element-outer {
  border-radius: 100%;
  padding: 60px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uSj57NsmXJ .photo-split .element-outer2 {
  border-radius: 100%;
  padding: 100px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uSj57NsmXJ .photo-split .element-inner {
  position: absolute;
  z-index: 10;
  left: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uSj57NsmXJ .photo-split .element-inner .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 31px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4db;
  margin-right: 15px;
  z-index: 10;
}
.cid-uSj57NsmXJ .wrap-block {
  padding: 3rem 3rem;
}
.cid-uSj57NsmXJ .wrap-block .contents {
  margin-bottom: 40px;
  padding-right: 50px;
}
.cid-uSj57NsmXJ .wrap-block .contents .mbr-subtitle {
  color: #87e4db;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-uSj57NsmXJ .wrap-block .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-uSj57NsmXJ .wrap-block .contents .mbr-section-title {
  margin-bottom: 10px;
  color: #73c4bd;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.cid-uSj57NsmXJ .wrap-block .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
}
.cid-uSj57NsmXJ .wrap-block .contents .mbr-section-text.display-7 {
  font-size: 20px;
}
.cid-uSj57NsmXJ .wrap-block .contents .mbr-section-text.display-4 {
  font-size: 16px;
}
.cid-uSj57NsmXJ .wrap-block .contents h3 {
  color: #73c4bd;
  letter-spacing: -0.5px;
  line-height: 30px;
}
.cid-uSj57NsmXJ .wrap-block .contents h4 {
  color: #16324f;
}
.cid-uSj57NsmXJ .info-widget {
  padding-top: 0.5rem;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.cid-uSj57NsmXJ .info-widget .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 18px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4da;
  margin-right: 15px;
}
.cid-uSj57NsmXJ .info-widget .signature {
  height: 75px;
  display: inline-block;
  margin-right: 15px;
  object-fit: contain;
}
.cid-uSj57NsmXJ .info-widget .widget-content {
  display: flex;
  vertical-align: baseline;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uSj57NsmXJ .info-widget .widget-content .widget-title {
  margin-bottom: 7px;
  color: #73c4bd;
}
.cid-uSj57NsmXJ .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  color: #7e7e7e;
}
@media (max-width: 991px) {
  .cid-uSj57NsmXJ .photo-split {
    padding: 3rem 3rem;
  }
  .cid-uSj57NsmXJ .photo-split .element-outer,
  .cid-uSj57NsmXJ .photo-split .element-outer2 {
    display: none;
  }
  .cid-uSj57NsmXJ .photo-split .element-inner {
    left: 0;
  }
}
@media (max-width: 767px) {
  .cid-uSj57NsmXJ .mbr-section-title,
  .cid-uSj57NsmXJ .mbr-section-subtitle,
  .cid-uSj57NsmXJ .mbr-text {
    text-align: left !important;
  }
  .cid-uSj57NsmXJ .social-list {
    text-align: left !important;
  }
}
.cid-uSj57NsmXJ .boldSubtitle {
  margin-top: 40px !important;
}
@media (max-width: 500px) {
  .cid-uSj57NsmXJ .wrap-block {
    padding: 3rem 1rem;
  }
}
.cid-uSj57NsmXJ .wrap-block .contents h4,
.cid-uSj57NsmXJ .menu-content-right {
  color: #00acb1;
}
.cid-uSj57NNhQf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uSj57NNhQf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSj57NNhQf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSj57NNhQf .mbr-section-title {
  color: #00acb1;
}
.cid-uSj57NNhQf .mbr-text {
  color: #00acb1;
}
.cid-uSj57O3Dr8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uSj57O3Dr8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSj57O3Dr8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSj57O3Dr8 .google-map {
  height: 35rem;
  position: relative;
}
.cid-uSj57O3Dr8 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uSj57O3Dr8 .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-uSj57O3Dr8 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uSj57O3Dr8 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uSj57OlWer {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uSj57OlWer .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #f3f7f9 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uSj57OlWer .mbr-iconfont {
  align-items: center;
}
.cid-uSj57OlWer .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-uSj57OlWer .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uSj57OlWer .icon-transition span:hover {
  background-color: #000000;
  color: #f3f7f9;
}
.cid-uSj57OlWer .social-media {
  padding: 0;
}
.cid-uSj57OlWer .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uSj57OlWer .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uSj57OlWer .mbr-list,
.cid-uSj57OlWer .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uSj57OlWer .social-list {
    text-align: center !important;
  }
}
.cid-uSj57OlWer .mbr-section-title,
.cid-uSj57OlWer .social-list {
  color: #00acb1;
}
.cid-uSj57OGt1i {
  background-color: #efefec;
}
.cid-uSj57OGt1i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSj57OGt1i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSj57OGt1i .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uSj57OGt1i .row {
  align-items: center;
}
.cid-uSj57OGt1i .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uSj57OGt1i .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSj57OGt1i .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSj57OGt1i .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uSj57OGt1i .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uSj57OGt1i .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uSj57OGt1i .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uSj57OGt1i .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uSj57OGt1i .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSj57OGt1i .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSj57OGt1i .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uSj57OGt1i .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uSj57OGt1i .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uSj57OGt1i .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uSj57OGt1i .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uSj57OGt1i .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSj57OGt1i .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uSj57OGt1i .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSj57OGt1i .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSj57OGt1i .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uSj57OGt1i .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uSj57OGt1i .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uSj57OGt1i .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uSj57OGt1i .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uSj57OGt1i .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uSj57OGt1i .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uSj57OGt1i .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSj57OGt1i .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uSj57OGt1i .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uSj57OGt1i .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uSj57OGt1i .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uSj57OGt1i .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uSj57OGt1i .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uSj57OGt1i .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSj57OGt1i .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uSj57OGt1i .contact-container {
    width: 100%;
  }
}
.cid-uSj57OGt1i .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uSj57OGt1i .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uSj57OGt1i .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uSj57OGt1i .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uSj57OGt1i .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uSj57OGt1i .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uSj57OGt1i .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uSj57OGt1i .copyright {
  color: #efefec;
}
.cid-uSj57OGt1i .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uSj57OGt1i .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSj57OGt1i .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSjjkEKoW6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uSjjkEKoW6 .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uSjjkEKoW6 nav.navbar {
  position: fixed;
}
.cid-uSjjkEKoW6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSjjkEKoW6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSjjkEKoW6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSjjkEKoW6 .dropdown-item:hover,
.cid-uSjjkEKoW6 .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uSjjkEKoW6 .dropdown-item:hover span {
  color: white;
}
.cid-uSjjkEKoW6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSjjkEKoW6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSjjkEKoW6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSjjkEKoW6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSjjkEKoW6 .nav-link {
  position: relative;
}
.cid-uSjjkEKoW6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSjjkEKoW6 .container {
    flex-wrap: nowrap;
  }
}
.cid-uSjjkEKoW6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSjjkEKoW6 .dropdown-menu,
.cid-uSjjkEKoW6 .navbar.opened {
  background: #ffffff !important;
}
.cid-uSjjkEKoW6 .nav-item:focus,
.cid-uSjjkEKoW6 .nav-link:focus {
  outline: none;
}
.cid-uSjjkEKoW6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSjjkEKoW6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSjjkEKoW6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSjjkEKoW6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSjjkEKoW6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSjjkEKoW6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSjjkEKoW6 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uSjjkEKoW6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uSjjkEKoW6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSjjkEKoW6 .navbar .navbar-logo img {
  width: auto;
}
.cid-uSjjkEKoW6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSjjkEKoW6 .navbar.collapsed {
  justify-content: center;
}
.cid-uSjjkEKoW6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSjjkEKoW6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSjjkEKoW6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uSjjkEKoW6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSjjkEKoW6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSjjkEKoW6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uSjjkEKoW6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSjjkEKoW6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSjjkEKoW6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSjjkEKoW6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSjjkEKoW6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSjjkEKoW6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSjjkEKoW6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSjjkEKoW6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uSjjkEKoW6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSjjkEKoW6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSjjkEKoW6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSjjkEKoW6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSjjkEKoW6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSjjkEKoW6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uSjjkEKoW6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uSjjkEKoW6 .navbar.navbar-short {
  min-height: 80px;
}
.cid-uSjjkEKoW6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSjjkEKoW6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSjjkEKoW6 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSjjkEKoW6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSjjkEKoW6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSjjkEKoW6 .dropdown-item.active,
.cid-uSjjkEKoW6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uSjjkEKoW6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSjjkEKoW6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSjjkEKoW6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSjjkEKoW6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uSjjkEKoW6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSjjkEKoW6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSjjkEKoW6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSjjkEKoW6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSjjkEKoW6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSjjkEKoW6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uSjjkEKoW6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSjjkEKoW6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSjjkEKoW6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSjjkEKoW6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSjjkEKoW6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSjjkEKoW6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSjjkEKoW6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSjjkEKoW6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSjjkEKoW6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSjjkEKoW6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSjjkEKoW6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSjjkEKoW6 .navbar {
    height: 70px;
  }
  .cid-uSjjkEKoW6 .navbar.opened {
    height: auto;
  }
  .cid-uSjjkEKoW6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v3CqRNp6Em {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v3CqRNp6Em .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3CqRNp6Em .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3CqRNp6Em .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v3CqRNp6Em .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v3CqRNp6Em .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v3CqRNp6Em .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v3CqRNp6Em .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 0;
}
.cid-v3CqRNp6Em .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-v3CqRNp6Em .mbr-section-title {
  color: #111111;
}
.cid-v3CqRNp6Em .mbr-section-subtitle {
  color: #00acb1;
}
.cid-v3CqRNp6Em .mbr-text,
.cid-v3CqRNp6Em .text-wrapper {
  color: #666666;
}
.cid-v3CuYNtygd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v3CuYNtygd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v3CuYNtygd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v3CuYNtygd .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-v3CuYNtygd .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v3CuYNtygd .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-v3CuYNtygd .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-v3CuYNtygd .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-v3CuYNtygd .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v3CuYNtygd .title-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v3CuYNtygd .title-wrapper {
    margin: 0 30px;
  }
}
.cid-v3CuYNtygd .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
.cid-v3CuYNtygd .text-wrapper {
  margin-right: 160px;
  position: relative;
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-v3CuYNtygd .text-wrapper {
    margin: 0 30px 60px;
  }
}
.cid-v3CuYNtygd .cards {
  margin: 0 144px;
}
@media (max-width: 992px) {
  .cid-v3CuYNtygd .cards {
    margin: 0 18px;
  }
}
.cid-v3CuYNtygd .card:hover .mbr-section-btn .btn {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-v3CuYNtygd .card:hover .mbr-section-btn .btn span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v3CuYNtygd .card {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3CuYNtygd .card {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .cid-v3CuYNtygd .card {
    margin-bottom: 30px;
  }
}
.cid-v3CuYNtygd .card:hover .card-wrapper {
  background-color: #000000;
}
.cid-v3CuYNtygd .card:hover .card-wrapper .card-wrap_1 {
  border-color: #000000;
}
.cid-v3CuYNtygd .card .card-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
  padding: 40px;
  background-color: #00acb1;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-v3CuYNtygd .card .card-wrapper {
    padding: 25px;
    min-height: 550px;
  }
}
@media (max-width: 768px) {
  .cid-v3CuYNtygd .card .card-wrapper {
    min-height: 500px;
  }
}
.cid-v3CuYNtygd .card .card-wrapper .card-wrap_1 {
  border-top: 2px solid #00acb1;
  padding-top: 10px;
  transition: all .3s ease;
}
.cid-v3CuYNtygd .card .card-wrapper .card-wrap_1 .mbr-date {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v3CuYNtygd .card .card-wrapper .card-wrap_1 .mbr-date {
    margin-bottom: 12px;
  }
}
.cid-v3CuYNtygd .card .card-wrapper .card-wrap_1 .mbr-card-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v3CuYNtygd .card .card-wrapper .card-wrap_1 .mbr-card-title {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .cid-v3CuYNtygd .card .card-wrapper .card-wrap_1 .mbr-card-title {
    margin-bottom: 30px;
  }
}
.cid-v3CuYNtygd .card .card-wrapper .card-wrap_2 .mbr-card-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v3CuYNtygd .card .card-wrapper .card-wrap_2 .mbr-card-text {
    margin-bottom: 20px;
  }
}
.cid-v3CuYNtygd .mbr-section-title {
  color: #00acb1;
}
.cid-v3CuYNtygd .mbr-text {
  color: #000000;
}
.cid-v3CuYNtygd .mbr-date {
  color: #ffffff;
}
.cid-v3CuYNtygd .mbr-card-title {
  color: #FFFFFF;
}
.cid-v3CuYNtygd .mbr-card-text {
  color: #FFFFFF;
}
.cid-v3CxTitC45 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #0936a7;
}
.cid-v3CxTitC45 .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-v3CxTitC45 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-v3CxTitC45 .container {
    padding: 0 24px;
  }
}
.cid-v3CxTitC45 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-v3CxTitC45 .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v3CxTitC45 .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-v3CxTitC45 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-v3CxTitC45 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v3CxTitC45 .mbr-section-btn {
    text-align: left;
  }
}
.cid-v3CxTitC45 .mbr-section-title {
  color: #F9F6E0;
}
.cid-v3CxTitC45 .mbr-text {
  color: #ffffff;
}
.cid-v3CxTitC45 .mbr-section-title,
.cid-v3CxTitC45 .mbr-section-btn {
  color: #ffffff;
}
.cid-uSjjkGsjhC {
  background-color: #efefec;
}
.cid-uSjjkGsjhC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSjjkGsjhC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSjjkGsjhC .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uSjjkGsjhC .row {
  align-items: center;
}
.cid-uSjjkGsjhC .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uSjjkGsjhC .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSjjkGsjhC .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSjjkGsjhC .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uSjjkGsjhC .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uSjjkGsjhC .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uSjjkGsjhC .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uSjjkGsjhC .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uSjjkGsjhC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSjjkGsjhC .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSjjkGsjhC .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uSjjkGsjhC .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uSjjkGsjhC .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uSjjkGsjhC .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uSjjkGsjhC .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uSjjkGsjhC .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSjjkGsjhC .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uSjjkGsjhC .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSjjkGsjhC .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSjjkGsjhC .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uSjjkGsjhC .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uSjjkGsjhC .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uSjjkGsjhC .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uSjjkGsjhC .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uSjjkGsjhC .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uSjjkGsjhC .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uSjjkGsjhC .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSjjkGsjhC .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uSjjkGsjhC .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uSjjkGsjhC .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uSjjkGsjhC .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uSjjkGsjhC .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uSjjkGsjhC .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uSjjkGsjhC .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSjjkGsjhC .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uSjjkGsjhC .contact-container {
    width: 100%;
  }
}
.cid-uSjjkGsjhC .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uSjjkGsjhC .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uSjjkGsjhC .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uSjjkGsjhC .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uSjjkGsjhC .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uSjjkGsjhC .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uSjjkGsjhC .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uSjjkGsjhC .copyright {
  color: #efefec;
}
.cid-uSjjkGsjhC .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uSjjkGsjhC .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSjjkGsjhC .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-v46wGBmqdu {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v46wGBmqdu .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-v46wGBmqdu nav.navbar {
  position: fixed;
}
.cid-v46wGBmqdu .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v46wGBmqdu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v46wGBmqdu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v46wGBmqdu .dropdown-item:hover,
.cid-v46wGBmqdu .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-v46wGBmqdu .dropdown-item:hover span {
  color: white;
}
.cid-v46wGBmqdu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v46wGBmqdu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v46wGBmqdu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v46wGBmqdu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v46wGBmqdu .nav-link {
  position: relative;
}
.cid-v46wGBmqdu .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v46wGBmqdu .container {
    flex-wrap: nowrap;
  }
}
.cid-v46wGBmqdu .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v46wGBmqdu .dropdown-menu,
.cid-v46wGBmqdu .navbar.opened {
  background: #ffffff !important;
}
.cid-v46wGBmqdu .nav-item:focus,
.cid-v46wGBmqdu .nav-link:focus {
  outline: none;
}
.cid-v46wGBmqdu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v46wGBmqdu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v46wGBmqdu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v46wGBmqdu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v46wGBmqdu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v46wGBmqdu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v46wGBmqdu .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v46wGBmqdu .navbar.opened {
  transition: all 0.3s;
}
.cid-v46wGBmqdu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v46wGBmqdu .navbar .navbar-logo img {
  width: auto;
}
.cid-v46wGBmqdu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v46wGBmqdu .navbar.collapsed {
  justify-content: center;
}
.cid-v46wGBmqdu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v46wGBmqdu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v46wGBmqdu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v46wGBmqdu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v46wGBmqdu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v46wGBmqdu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v46wGBmqdu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v46wGBmqdu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v46wGBmqdu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v46wGBmqdu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v46wGBmqdu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v46wGBmqdu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v46wGBmqdu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v46wGBmqdu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v46wGBmqdu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v46wGBmqdu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v46wGBmqdu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v46wGBmqdu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v46wGBmqdu .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v46wGBmqdu .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v46wGBmqdu .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v46wGBmqdu .navbar.navbar-short {
  min-height: 80px;
}
.cid-v46wGBmqdu .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v46wGBmqdu .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v46wGBmqdu .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v46wGBmqdu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v46wGBmqdu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v46wGBmqdu .dropdown-item.active,
.cid-v46wGBmqdu .dropdown-item:active {
  background-color: transparent;
}
.cid-v46wGBmqdu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v46wGBmqdu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v46wGBmqdu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v46wGBmqdu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v46wGBmqdu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v46wGBmqdu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v46wGBmqdu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v46wGBmqdu .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v46wGBmqdu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v46wGBmqdu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-v46wGBmqdu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v46wGBmqdu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v46wGBmqdu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v46wGBmqdu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v46wGBmqdu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v46wGBmqdu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v46wGBmqdu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v46wGBmqdu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v46wGBmqdu .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v46wGBmqdu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v46wGBmqdu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v46wGBmqdu .navbar {
    height: 70px;
  }
  .cid-v46wGBmqdu .navbar.opened {
    height: auto;
  }
  .cid-v46wGBmqdu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v46wGBUDoV {
  background-image: url("../../../assets/images/mbr-1-1920x1276.jpeg");
}
.cid-v46wGBUDoV .mbr-fallback-image.disabled {
  display: none;
}
.cid-v46wGBUDoV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v46wGBUDoV .mbr-section-title {
  color: #FFFFFF;
}
.cid-v46wGBUDoV .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-v46wGBUDoV .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-v46wGBUDoV .mbr-section-btn {
  margin-top: 18px;
}
.cid-v46wGBUDoV .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-v46wGBUDoV .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-v46wGCmqAN {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-v46wGCmqAN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v46wGCmqAN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v46wGCmqAN .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v46wGCmqAN .text-wrapper {
    margin: 0 30px;
  }
}
.cid-v46wGCmqAN .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v46wGCmqAN .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-v46wGCmqAN .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v46wGCmqAN .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-v46wGCmqAN .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-v46wGCmqAN .mbr-section-title {
  color: #FFFFFF;
}
.cid-v46wGCmqAN .mbr-desc {
  color: #FFFFFF;
}
.cid-v46wGCmqAN .mbr-text {
  color: #FFFFFF;
}
.cid-v46ESsS0gg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f4f4f4;
}
.cid-v46ESsS0gg .mbr-media {
  position: relative;
}
.cid-v46ESsS0gg .mbr-media img {
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
}
.cid-v46ESsS0gg .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-v46ESsS0gg .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-v46ESsS0gg .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-v46ESsS0gg .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-v46ESsS0gg .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-v46ESsS0gg .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v46ESsS0gg .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v46wGDklEP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-v46wGDklEP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v46wGDklEP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v46wGDklEP .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v46wGDklEP .text-wrapper {
    margin: 0 30px;
  }
}
.cid-v46wGDklEP .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v46wGDklEP .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-v46wGDklEP .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v46wGDklEP .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-v46wGDklEP .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-v46wGDklEP .mbr-section-title {
  color: #FFFFFF;
}
.cid-v46wGDklEP .mbr-desc {
  color: #FFFFFF;
}
.cid-v46wGDklEP .mbr-text {
  color: #FFFFFF;
}
.cid-v46wGDSWw2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #87e4db;
}
@media (max-width: 992px) {
  .cid-v46wGDSWw2 .form-title,
  .cid-v46wGDSWw2 .form-wrapper {
    padding: 0;
  }
}
.cid-v46wGDSWw2 .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v46wGDSWw2 .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v46wGDSWw2 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-v46wGDSWw2 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v46wGDSWw2 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-v46wGDSWw2 .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-v46wGDSWw2 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #00acb1;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-v46wGDSWw2 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-v46wGDSWw2 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v46wGDSWw2 .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-v46wGDSWw2 .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-v46wGDSWw2 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v46wGDSWw2 .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-v46wGDSWw2 .mbr-form {
    margin: 0 30px;
  }
}
.cid-v46wGDSWw2 .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v46wGDSWw2 .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v46wGDSWw2 .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-v46wGDSWw2 .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-v46wGDSWw2 .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-v46wGDSWw2 .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-v46wGDSWw2 .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #00acb1 !important;
}
.cid-v46wGDSWw2 .mbr-section-title {
  color: #00acb1;
}
.cid-v46wGDSWw2 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-v46wGEzkBA {
  background-color: #efefec;
}
.cid-v46wGEzkBA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v46wGEzkBA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v46wGEzkBA .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-v46wGEzkBA .row {
  align-items: center;
}
.cid-v46wGEzkBA .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-v46wGEzkBA .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-v46wGEzkBA .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-v46wGEzkBA .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-v46wGEzkBA .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-v46wGEzkBA .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v46wGEzkBA .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v46wGEzkBA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-v46wGEzkBA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v46wGEzkBA .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v46wGEzkBA .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-v46wGEzkBA .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-v46wGEzkBA .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-v46wGEzkBA .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-v46wGEzkBA .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-v46wGEzkBA .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v46wGEzkBA .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-v46wGEzkBA .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-v46wGEzkBA .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-v46wGEzkBA .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-v46wGEzkBA .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-v46wGEzkBA .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-v46wGEzkBA .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-v46wGEzkBA .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-v46wGEzkBA .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-v46wGEzkBA .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-v46wGEzkBA .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-v46wGEzkBA .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-v46wGEzkBA .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-v46wGEzkBA .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-v46wGEzkBA .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-v46wGEzkBA .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-v46wGEzkBA .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-v46wGEzkBA .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v46wGEzkBA .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-v46wGEzkBA .contact-container {
    width: 100%;
  }
}
.cid-v46wGEzkBA .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-v46wGEzkBA .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-v46wGEzkBA .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-v46wGEzkBA .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-v46wGEzkBA .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-v46wGEzkBA .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-v46wGEzkBA .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-v46wGEzkBA .copyright {
  color: #efefec;
}
.cid-v46wGEzkBA .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-v46wGEzkBA .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-v46wGEzkBA .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-v5vSZ7tGn5 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v5vSZ7tGn5 .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-v5vSZ7tGn5 nav.navbar {
  position: fixed;
}
.cid-v5vSZ7tGn5 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v5vSZ7tGn5 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v5vSZ7tGn5 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v5vSZ7tGn5 .dropdown-item:hover,
.cid-v5vSZ7tGn5 .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-v5vSZ7tGn5 .dropdown-item:hover span {
  color: white;
}
.cid-v5vSZ7tGn5 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v5vSZ7tGn5 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v5vSZ7tGn5 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v5vSZ7tGn5 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v5vSZ7tGn5 .nav-link {
  position: relative;
}
.cid-v5vSZ7tGn5 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v5vSZ7tGn5 .container {
    flex-wrap: nowrap;
  }
}
.cid-v5vSZ7tGn5 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v5vSZ7tGn5 .dropdown-menu,
.cid-v5vSZ7tGn5 .navbar.opened {
  background: #ffffff !important;
}
.cid-v5vSZ7tGn5 .nav-item:focus,
.cid-v5vSZ7tGn5 .nav-link:focus {
  outline: none;
}
.cid-v5vSZ7tGn5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v5vSZ7tGn5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v5vSZ7tGn5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v5vSZ7tGn5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v5vSZ7tGn5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v5vSZ7tGn5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v5vSZ7tGn5 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v5vSZ7tGn5 .navbar.opened {
  transition: all 0.3s;
}
.cid-v5vSZ7tGn5 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v5vSZ7tGn5 .navbar .navbar-logo img {
  width: auto;
}
.cid-v5vSZ7tGn5 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v5vSZ7tGn5 .navbar.collapsed {
  justify-content: center;
}
.cid-v5vSZ7tGn5 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v5vSZ7tGn5 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v5vSZ7tGn5 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v5vSZ7tGn5 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v5vSZ7tGn5 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v5vSZ7tGn5 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v5vSZ7tGn5 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v5vSZ7tGn5 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v5vSZ7tGn5 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v5vSZ7tGn5 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v5vSZ7tGn5 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v5vSZ7tGn5 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v5vSZ7tGn5 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v5vSZ7tGn5 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v5vSZ7tGn5 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v5vSZ7tGn5 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v5vSZ7tGn5 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v5vSZ7tGn5 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v5vSZ7tGn5 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v5vSZ7tGn5 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v5vSZ7tGn5 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v5vSZ7tGn5 .navbar.navbar-short {
  min-height: 80px;
}
.cid-v5vSZ7tGn5 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v5vSZ7tGn5 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v5vSZ7tGn5 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v5vSZ7tGn5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v5vSZ7tGn5 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v5vSZ7tGn5 .dropdown-item.active,
.cid-v5vSZ7tGn5 .dropdown-item:active {
  background-color: transparent;
}
.cid-v5vSZ7tGn5 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v5vSZ7tGn5 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v5vSZ7tGn5 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v5vSZ7tGn5 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v5vSZ7tGn5 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v5vSZ7tGn5 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v5vSZ7tGn5 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v5vSZ7tGn5 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v5vSZ7tGn5 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v5vSZ7tGn5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-v5vSZ7tGn5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v5vSZ7tGn5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5vSZ7tGn5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v5vSZ7tGn5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v5vSZ7tGn5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5vSZ7tGn5 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v5vSZ7tGn5 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v5vSZ7tGn5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v5vSZ7tGn5 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v5vSZ7tGn5 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v5vSZ7tGn5 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v5vSZ7tGn5 .navbar {
    height: 70px;
  }
  .cid-v5vSZ7tGn5 .navbar.opened {
    height: auto;
  }
  .cid-v5vSZ7tGn5 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v5vSZ7QpSV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v5vSZ7QpSV .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-v5vSZ7QpSV .photo-split .image-wrap img {
  max-width: 100%;
  max-height: 800px;
  z-index: 9;
  position: relative;
}
.cid-v5vSZ7QpSV .photo-split .element-outer {
  border-radius: 100%;
  padding: 60px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-v5vSZ7QpSV .photo-split .element-outer2 {
  border-radius: 100%;
  padding: 100px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-v5vSZ7QpSV .photo-split .element-inner {
  position: absolute;
  z-index: 10;
  left: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-v5vSZ7QpSV .photo-split .element-inner .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 31px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4db;
  margin-right: 15px;
  z-index: 10;
}
.cid-v5vSZ7QpSV .wrap-block {
  padding: 3rem 3rem;
}
.cid-v5vSZ7QpSV .wrap-block .contents {
  margin-bottom: 40px;
  padding-right: 50px;
}
.cid-v5vSZ7QpSV .wrap-block .contents .mbr-subtitle {
  color: #87e4db;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-v5vSZ7QpSV .wrap-block .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-v5vSZ7QpSV .wrap-block .contents .mbr-section-title {
  margin-bottom: 10px;
  color: #73c4bd;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.cid-v5vSZ7QpSV .wrap-block .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
}
.cid-v5vSZ7QpSV .wrap-block .contents .mbr-section-text.display-7 {
  font-size: 20px;
}
.cid-v5vSZ7QpSV .wrap-block .contents .mbr-section-text.display-4 {
  font-size: 16px;
}
.cid-v5vSZ7QpSV .wrap-block .contents h3 {
  color: #73c4bd;
  letter-spacing: -0.5px;
  line-height: 30px;
}
.cid-v5vSZ7QpSV .wrap-block .contents h4 {
  color: #16324f;
}
.cid-v5vSZ7QpSV .info-widget {
  padding-top: 0.5rem;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.cid-v5vSZ7QpSV .info-widget .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 18px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4da;
  margin-right: 15px;
}
.cid-v5vSZ7QpSV .info-widget .signature {
  height: 75px;
  display: inline-block;
  margin-right: 15px;
  object-fit: contain;
}
.cid-v5vSZ7QpSV .info-widget .widget-content {
  display: flex;
  vertical-align: baseline;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-v5vSZ7QpSV .info-widget .widget-content .widget-title {
  margin-bottom: 7px;
  color: #73c4bd;
}
.cid-v5vSZ7QpSV .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  color: #7e7e7e;
}
@media (max-width: 991px) {
  .cid-v5vSZ7QpSV .photo-split {
    padding: 3rem 3rem;
  }
  .cid-v5vSZ7QpSV .photo-split .element-outer,
  .cid-v5vSZ7QpSV .photo-split .element-outer2 {
    display: none;
  }
  .cid-v5vSZ7QpSV .photo-split .element-inner {
    left: 0;
  }
}
@media (max-width: 767px) {
  .cid-v5vSZ7QpSV .mbr-section-title,
  .cid-v5vSZ7QpSV .mbr-section-subtitle,
  .cid-v5vSZ7QpSV .mbr-text {
    text-align: left !important;
  }
  .cid-v5vSZ7QpSV .social-list {
    text-align: left !important;
  }
}
.cid-v5vSZ7QpSV .boldSubtitle {
  margin-top: 40px !important;
}
@media (max-width: 500px) {
  .cid-v5vSZ7QpSV .wrap-block {
    padding: 3rem 1rem;
  }
}
.cid-v5vSZ7QpSV .wrap-block .contents h4,
.cid-v5vSZ7QpSV .menu-content-right {
  color: #00acb1;
}
.cid-v5vSZ8jw9J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: linear-gradient(315deg, #87e4db 10%, #87e4db 100%) !important;
}
.cid-v5vSZ8jw9J .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5vSZ8jw9J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5vSZ8jw9J .card-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8px 0;
}
@media (max-width: 767px) {
  .cid-v5vSZ8jw9J .card-box {
    max-width: 510px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 15px 0;
  }
}
.cid-v5vSZ8jw9J .label-container {
  padding: 5px 16px;
  border-radius: 100px;
  background: #00acb1;
}
.cid-v5vSZ8jw9J .label-text {
  color: #ffffff;
}
.cid-v5vSZ8jw9J .card-text {
  color: #878e99;
  margin-left: 15px;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-v5vSZ8jw9J .card-text {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.cid-v5vSZ8jw9J .link-text {
  color: #C4CFDE;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .cid-v5vSZ8jw9J .link-text {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.cid-v5vSZ8jw9J .link-text a {
  display: flex;
  align-items: center;
}
.cid-v5vSZ8jw9J .link-text a .mbr-iconfont {
  font-size: inherit;
  color: inherit;
  margin-left: 6px;
}
.cid-v5vSZ8jw9J .link-text a:hover {
  color: #87e4db !important;
}
.cid-v5vSZ8TY8b {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v5vSZ8TY8b .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5vSZ8TY8b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5vSZ8TY8b .mbr-section-title {
  color: #00acb1;
}
.cid-v5vSZ8TY8b .mbr-text {
  color: #00acb1;
}
.cid-v5vSZ99AUJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-v5vSZ99AUJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5vSZ99AUJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5vSZ99AUJ .google-map {
  height: 35rem;
  position: relative;
}
.cid-v5vSZ99AUJ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v5vSZ99AUJ .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-v5vSZ99AUJ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v5vSZ99AUJ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v5vSZ9rRas {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v5vSZ9rRas .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #f3f7f9 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-v5vSZ9rRas .mbr-iconfont {
  align-items: center;
}
.cid-v5vSZ9rRas .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-v5vSZ9rRas .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-v5vSZ9rRas .icon-transition span:hover {
  background-color: #000000;
  color: #f3f7f9;
}
.cid-v5vSZ9rRas .social-media {
  padding: 0;
}
.cid-v5vSZ9rRas .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-v5vSZ9rRas .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-v5vSZ9rRas .mbr-list,
.cid-v5vSZ9rRas .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-v5vSZ9rRas .social-list {
    text-align: center !important;
  }
}
.cid-v5vSZ9rRas .mbr-section-title,
.cid-v5vSZ9rRas .social-list {
  color: #00acb1;
}
.cid-v5vSZ9KpQ9 {
  background-color: #efefec;
}
.cid-v5vSZ9KpQ9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v5vSZ9KpQ9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v5vSZ9KpQ9 .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-v5vSZ9KpQ9 .row {
  align-items: center;
}
.cid-v5vSZ9KpQ9 .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-v5vSZ9KpQ9 .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-v5vSZ9KpQ9 .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-v5vSZ9KpQ9 .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-v5vSZ9KpQ9 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-v5vSZ9KpQ9 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v5vSZ9KpQ9 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v5vSZ9KpQ9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-v5vSZ9KpQ9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v5vSZ9KpQ9 .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v5vSZ9KpQ9 .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-v5vSZ9KpQ9 .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-v5vSZ9KpQ9 .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-v5vSZ9KpQ9 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-v5vSZ9KpQ9 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-v5vSZ9KpQ9 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v5vSZ9KpQ9 .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-v5vSZ9KpQ9 .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-v5vSZ9KpQ9 .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-v5vSZ9KpQ9 .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-v5vSZ9KpQ9 .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-v5vSZ9KpQ9 .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-v5vSZ9KpQ9 .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-v5vSZ9KpQ9 .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-v5vSZ9KpQ9 .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-v5vSZ9KpQ9 .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-v5vSZ9KpQ9 .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-v5vSZ9KpQ9 .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-v5vSZ9KpQ9 .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-v5vSZ9KpQ9 .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-v5vSZ9KpQ9 .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-v5vSZ9KpQ9 .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-v5vSZ9KpQ9 .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-v5vSZ9KpQ9 .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v5vSZ9KpQ9 .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-v5vSZ9KpQ9 .contact-container {
    width: 100%;
  }
}
.cid-v5vSZ9KpQ9 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-v5vSZ9KpQ9 .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-v5vSZ9KpQ9 .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-v5vSZ9KpQ9 .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-v5vSZ9KpQ9 .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-v5vSZ9KpQ9 .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-v5vSZ9KpQ9 .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-v5vSZ9KpQ9 .copyright {
  color: #efefec;
}
.cid-v5vSZ9KpQ9 .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-v5vSZ9KpQ9 .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-v5vSZ9KpQ9 .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tIfrcI6D4f {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tIfrcI6D4f .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tIfrcI6D4f nav.navbar {
  position: fixed;
}
.cid-tIfrcI6D4f .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIfrcI6D4f .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIfrcI6D4f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIfrcI6D4f .dropdown-item:hover,
.cid-tIfrcI6D4f .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tIfrcI6D4f .dropdown-item:hover span {
  color: white;
}
.cid-tIfrcI6D4f .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIfrcI6D4f .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIfrcI6D4f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIfrcI6D4f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIfrcI6D4f .nav-link {
  position: relative;
}
.cid-tIfrcI6D4f .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tIfrcI6D4f .container {
    flex-wrap: nowrap;
  }
}
.cid-tIfrcI6D4f .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIfrcI6D4f .dropdown-menu,
.cid-tIfrcI6D4f .navbar.opened {
  background: #ffffff !important;
}
.cid-tIfrcI6D4f .nav-item:focus,
.cid-tIfrcI6D4f .nav-link:focus {
  outline: none;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIfrcI6D4f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIfrcI6D4f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIfrcI6D4f .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tIfrcI6D4f .navbar.opened {
  transition: all 0.3s;
}
.cid-tIfrcI6D4f .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIfrcI6D4f .navbar .navbar-logo img {
  width: auto;
}
.cid-tIfrcI6D4f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIfrcI6D4f .navbar.collapsed {
  justify-content: center;
}
.cid-tIfrcI6D4f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIfrcI6D4f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tIfrcI6D4f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIfrcI6D4f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIfrcI6D4f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIfrcI6D4f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIfrcI6D4f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIfrcI6D4f .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIfrcI6D4f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIfrcI6D4f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIfrcI6D4f .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIfrcI6D4f .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tIfrcI6D4f .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tIfrcI6D4f .navbar.navbar-short {
  min-height: 80px;
}
.cid-tIfrcI6D4f .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIfrcI6D4f .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIfrcI6D4f .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIfrcI6D4f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIfrcI6D4f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIfrcI6D4f .dropdown-item.active,
.cid-tIfrcI6D4f .dropdown-item:active {
  background-color: transparent;
}
.cid-tIfrcI6D4f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIfrcI6D4f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIfrcI6D4f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIfrcI6D4f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tIfrcI6D4f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIfrcI6D4f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIfrcI6D4f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIfrcI6D4f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIfrcI6D4f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIfrcI6D4f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIfrcI6D4f .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIfrcI6D4f .navbar {
    height: 70px;
  }
  .cid-tIfrcI6D4f .navbar.opened {
    height: auto;
  }
  .cid-tIfrcI6D4f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v5GWWRQV9c {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: #25303e;
}
.cid-v5GWWRQV9c .video-wrapper iframe {
  width: 100%;
}
.cid-v5GWWRQV9c .mbr-section-title,
.cid-v5GWWRQV9c .mbr-section-subtitle,
.cid-v5GWWRQV9c .mbr-text {
  text-align: center;
}
.cid-tHiCn2mQbp {
  background-color: #efefec;
}
.cid-tHiCn2mQbp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHiCn2mQbp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHiCn2mQbp .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tHiCn2mQbp .row {
  align-items: center;
}
.cid-tHiCn2mQbp .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tHiCn2mQbp .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tHiCn2mQbp .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHiCn2mQbp .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tHiCn2mQbp .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tHiCn2mQbp .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tHiCn2mQbp .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tHiCn2mQbp .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tHiCn2mQbp .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tHiCn2mQbp .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tHiCn2mQbp .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tHiCn2mQbp .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tHiCn2mQbp .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tHiCn2mQbp .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .contact-container {
    width: 100%;
  }
}
.cid-tHiCn2mQbp .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tHiCn2mQbp .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tHiCn2mQbp .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tHiCn2mQbp .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tHiCn2mQbp .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tHiCn2mQbp .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tHiCn2mQbp .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tHiCn2mQbp .copyright {
  color: #efefec;
}
.cid-tHiCn2mQbp .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tHiCn2mQbp .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tHiCn2mQbp .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-v8qFTLtGYj {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-v8qFTLtGYj .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-v8qFTLtGYj nav.navbar {
  position: fixed;
}
.cid-v8qFTLtGYj .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v8qFTLtGYj .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v8qFTLtGYj .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v8qFTLtGYj .dropdown-item:hover,
.cid-v8qFTLtGYj .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-v8qFTLtGYj .dropdown-item:hover span {
  color: white;
}
.cid-v8qFTLtGYj .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v8qFTLtGYj .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v8qFTLtGYj .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v8qFTLtGYj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v8qFTLtGYj .nav-link {
  position: relative;
}
.cid-v8qFTLtGYj .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v8qFTLtGYj .container {
    flex-wrap: nowrap;
  }
}
.cid-v8qFTLtGYj .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v8qFTLtGYj .dropdown-menu,
.cid-v8qFTLtGYj .navbar.opened {
  background: #ffffff !important;
}
.cid-v8qFTLtGYj .nav-item:focus,
.cid-v8qFTLtGYj .nav-link:focus {
  outline: none;
}
.cid-v8qFTLtGYj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v8qFTLtGYj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v8qFTLtGYj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v8qFTLtGYj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v8qFTLtGYj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v8qFTLtGYj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v8qFTLtGYj .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v8qFTLtGYj .navbar.opened {
  transition: all 0.3s;
}
.cid-v8qFTLtGYj .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v8qFTLtGYj .navbar .navbar-logo img {
  width: auto;
}
.cid-v8qFTLtGYj .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v8qFTLtGYj .navbar.collapsed {
  justify-content: center;
}
.cid-v8qFTLtGYj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v8qFTLtGYj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v8qFTLtGYj .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-v8qFTLtGYj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v8qFTLtGYj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v8qFTLtGYj .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v8qFTLtGYj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v8qFTLtGYj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v8qFTLtGYj .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v8qFTLtGYj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v8qFTLtGYj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v8qFTLtGYj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v8qFTLtGYj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v8qFTLtGYj .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v8qFTLtGYj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v8qFTLtGYj .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v8qFTLtGYj .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v8qFTLtGYj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v8qFTLtGYj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v8qFTLtGYj .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v8qFTLtGYj .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v8qFTLtGYj .navbar.navbar-short {
  min-height: 80px;
}
.cid-v8qFTLtGYj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v8qFTLtGYj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v8qFTLtGYj .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v8qFTLtGYj .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v8qFTLtGYj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v8qFTLtGYj .dropdown-item.active,
.cid-v8qFTLtGYj .dropdown-item:active {
  background-color: transparent;
}
.cid-v8qFTLtGYj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v8qFTLtGYj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v8qFTLtGYj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v8qFTLtGYj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v8qFTLtGYj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v8qFTLtGYj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v8qFTLtGYj ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v8qFTLtGYj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v8qFTLtGYj button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v8qFTLtGYj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-v8qFTLtGYj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v8qFTLtGYj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8qFTLtGYj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v8qFTLtGYj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v8qFTLtGYj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8qFTLtGYj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v8qFTLtGYj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v8qFTLtGYj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v8qFTLtGYj .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v8qFTLtGYj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v8qFTLtGYj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v8qFTLtGYj .navbar {
    height: 70px;
  }
  .cid-v8qFTLtGYj .navbar.opened {
    height: auto;
  }
  .cid-v8qFTLtGYj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v8qFTLS3fM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v8qFTLS3fM .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-v8qFTLS3fM .photo-split .image-wrap img {
  max-width: 100%;
  max-height: 800px;
  z-index: 9;
  position: relative;
}
.cid-v8qFTLS3fM .photo-split .element-outer {
  border-radius: 100%;
  padding: 60px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-v8qFTLS3fM .photo-split .element-outer2 {
  border-radius: 100%;
  padding: 100px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-v8qFTLS3fM .photo-split .element-inner {
  position: absolute;
  z-index: 10;
  left: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-v8qFTLS3fM .photo-split .element-inner .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 31px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4db;
  margin-right: 15px;
  z-index: 10;
}
.cid-v8qFTLS3fM .wrap-block {
  padding: 3rem 3rem;
}
.cid-v8qFTLS3fM .wrap-block .contents {
  margin-bottom: 40px;
  padding-right: 50px;
}
.cid-v8qFTLS3fM .wrap-block .contents .mbr-subtitle {
  color: #87e4db;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-v8qFTLS3fM .wrap-block .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-v8qFTLS3fM .wrap-block .contents .mbr-section-title {
  margin-bottom: 10px;
  color: #73c4bd;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.cid-v8qFTLS3fM .wrap-block .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
}
.cid-v8qFTLS3fM .wrap-block .contents .mbr-section-text.display-7 {
  font-size: 20px;
}
.cid-v8qFTLS3fM .wrap-block .contents .mbr-section-text.display-4 {
  font-size: 16px;
}
.cid-v8qFTLS3fM .wrap-block .contents h3 {
  color: #73c4bd;
  letter-spacing: -0.5px;
  line-height: 30px;
}
.cid-v8qFTLS3fM .wrap-block .contents h4 {
  color: #16324f;
}
.cid-v8qFTLS3fM .info-widget {
  padding-top: 0.5rem;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.cid-v8qFTLS3fM .info-widget .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 18px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4da;
  margin-right: 15px;
}
.cid-v8qFTLS3fM .info-widget .signature {
  height: 75px;
  display: inline-block;
  margin-right: 15px;
  object-fit: contain;
}
.cid-v8qFTLS3fM .info-widget .widget-content {
  display: flex;
  vertical-align: baseline;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-v8qFTLS3fM .info-widget .widget-content .widget-title {
  margin-bottom: 7px;
  color: #73c4bd;
}
.cid-v8qFTLS3fM .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  color: #7e7e7e;
}
@media (max-width: 991px) {
  .cid-v8qFTLS3fM .photo-split {
    padding: 3rem 3rem;
  }
  .cid-v8qFTLS3fM .photo-split .element-outer,
  .cid-v8qFTLS3fM .photo-split .element-outer2 {
    display: none;
  }
  .cid-v8qFTLS3fM .photo-split .element-inner {
    left: 0;
  }
}
@media (max-width: 767px) {
  .cid-v8qFTLS3fM .mbr-section-title,
  .cid-v8qFTLS3fM .mbr-section-subtitle,
  .cid-v8qFTLS3fM .mbr-text {
    text-align: left !important;
  }
  .cid-v8qFTLS3fM .social-list {
    text-align: left !important;
  }
}
.cid-v8qFTLS3fM .boldSubtitle {
  margin-top: 40px !important;
}
@media (max-width: 500px) {
  .cid-v8qFTLS3fM .wrap-block {
    padding: 3rem 1rem;
  }
}
.cid-v8qFTLS3fM .wrap-block .contents h4,
.cid-v8qFTLS3fM .menu-content-right {
  color: #00acb1;
}
.cid-v8qFTMaGWJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: linear-gradient(315deg, #87e4db 10%, #87e4db 100%) !important;
}
.cid-v8qFTMaGWJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8qFTMaGWJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8qFTMaGWJ .card-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8px 0;
}
@media (max-width: 767px) {
  .cid-v8qFTMaGWJ .card-box {
    max-width: 510px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 15px 0;
  }
}
.cid-v8qFTMaGWJ .label-container {
  padding: 5px 16px;
  border-radius: 100px;
  background: #00acb1;
}
.cid-v8qFTMaGWJ .label-text {
  color: #ffffff;
}
.cid-v8qFTMaGWJ .card-text {
  color: #878e99;
  margin-left: 15px;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-v8qFTMaGWJ .card-text {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.cid-v8qFTMaGWJ .link-text {
  color: #C4CFDE;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .cid-v8qFTMaGWJ .link-text {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.cid-v8qFTMaGWJ .link-text a {
  display: flex;
  align-items: center;
}
.cid-v8qFTMaGWJ .link-text a .mbr-iconfont {
  font-size: inherit;
  color: inherit;
  margin-left: 6px;
}
.cid-v8qFTMaGWJ .link-text a:hover {
  color: #87e4db !important;
}
.cid-v8qFTMsYYD {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v8qFTMsYYD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8qFTMsYYD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8qFTMsYYD .mbr-section-title {
  color: #00acb1;
}
.cid-v8qFTMsYYD .mbr-text {
  color: #00acb1;
}
.cid-v8qFTMIzxE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-v8qFTMIzxE .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8qFTMIzxE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8qFTMIzxE .google-map {
  height: 35rem;
  position: relative;
}
.cid-v8qFTMIzxE .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-v8qFTMIzxE .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-v8qFTMIzxE .google-map[data-state] {
  background: #e9e5dc;
}
.cid-v8qFTMIzxE .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-v8qFTN3fAu {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-v8qFTN3fAu .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #f3f7f9 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-v8qFTN3fAu .mbr-iconfont {
  align-items: center;
}
.cid-v8qFTN3fAu .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-v8qFTN3fAu .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-v8qFTN3fAu .icon-transition span:hover {
  background-color: #000000;
  color: #f3f7f9;
}
.cid-v8qFTN3fAu .social-media {
  padding: 0;
}
.cid-v8qFTN3fAu .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-v8qFTN3fAu .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-v8qFTN3fAu .mbr-list,
.cid-v8qFTN3fAu .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-v8qFTN3fAu .social-list {
    text-align: center !important;
  }
}
.cid-v8qFTN3fAu .mbr-section-title,
.cid-v8qFTN3fAu .social-list {
  color: #00acb1;
}
.cid-v8qFTNnrnn {
  background-color: #efefec;
}
.cid-v8qFTNnrnn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8qFTNnrnn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8qFTNnrnn .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-v8qFTNnrnn .row {
  align-items: center;
}
.cid-v8qFTNnrnn .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-v8qFTNnrnn .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-v8qFTNnrnn .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-v8qFTNnrnn .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-v8qFTNnrnn .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-v8qFTNnrnn .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v8qFTNnrnn .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v8qFTNnrnn .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-v8qFTNnrnn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v8qFTNnrnn .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v8qFTNnrnn .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-v8qFTNnrnn .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-v8qFTNnrnn .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-v8qFTNnrnn .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-v8qFTNnrnn .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-v8qFTNnrnn .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v8qFTNnrnn .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-v8qFTNnrnn .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-v8qFTNnrnn .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-v8qFTNnrnn .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-v8qFTNnrnn .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-v8qFTNnrnn .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-v8qFTNnrnn .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-v8qFTNnrnn .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-v8qFTNnrnn .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-v8qFTNnrnn .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-v8qFTNnrnn .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-v8qFTNnrnn .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-v8qFTNnrnn .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-v8qFTNnrnn .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-v8qFTNnrnn .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-v8qFTNnrnn .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-v8qFTNnrnn .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-v8qFTNnrnn .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-v8qFTNnrnn .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-v8qFTNnrnn .contact-container {
    width: 100%;
  }
}
.cid-v8qFTNnrnn .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-v8qFTNnrnn .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-v8qFTNnrnn .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-v8qFTNnrnn .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-v8qFTNnrnn .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-v8qFTNnrnn .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-v8qFTNnrnn .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-v8qFTNnrnn .copyright {
  color: #efefec;
}
.cid-v8qFTNnrnn .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-v8qFTNnrnn .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-v8qFTNnrnn .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSjjkEKoW6 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-uSjjkEKoW6 .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-uSjjkEKoW6 nav.navbar {
  position: fixed;
}
.cid-uSjjkEKoW6 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSjjkEKoW6 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uSjjkEKoW6 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uSjjkEKoW6 .dropdown-item:hover,
.cid-uSjjkEKoW6 .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-uSjjkEKoW6 .dropdown-item:hover span {
  color: white;
}
.cid-uSjjkEKoW6 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uSjjkEKoW6 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uSjjkEKoW6 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uSjjkEKoW6 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uSjjkEKoW6 .nav-link {
  position: relative;
}
.cid-uSjjkEKoW6 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uSjjkEKoW6 .container {
    flex-wrap: nowrap;
  }
}
.cid-uSjjkEKoW6 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uSjjkEKoW6 .dropdown-menu,
.cid-uSjjkEKoW6 .navbar.opened {
  background: #ffffff !important;
}
.cid-uSjjkEKoW6 .nav-item:focus,
.cid-uSjjkEKoW6 .nav-link:focus {
  outline: none;
}
.cid-uSjjkEKoW6 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uSjjkEKoW6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uSjjkEKoW6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uSjjkEKoW6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uSjjkEKoW6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uSjjkEKoW6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uSjjkEKoW6 .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-uSjjkEKoW6 .navbar.opened {
  transition: all 0.3s;
}
.cid-uSjjkEKoW6 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uSjjkEKoW6 .navbar .navbar-logo img {
  width: auto;
}
.cid-uSjjkEKoW6 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uSjjkEKoW6 .navbar.collapsed {
  justify-content: center;
}
.cid-uSjjkEKoW6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uSjjkEKoW6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uSjjkEKoW6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-uSjjkEKoW6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uSjjkEKoW6 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uSjjkEKoW6 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uSjjkEKoW6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uSjjkEKoW6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uSjjkEKoW6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uSjjkEKoW6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uSjjkEKoW6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uSjjkEKoW6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uSjjkEKoW6 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uSjjkEKoW6 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uSjjkEKoW6 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uSjjkEKoW6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uSjjkEKoW6 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uSjjkEKoW6 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uSjjkEKoW6 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uSjjkEKoW6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uSjjkEKoW6 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uSjjkEKoW6 .navbar.navbar-short {
  min-height: 80px;
}
.cid-uSjjkEKoW6 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uSjjkEKoW6 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uSjjkEKoW6 .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uSjjkEKoW6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uSjjkEKoW6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSjjkEKoW6 .dropdown-item.active,
.cid-uSjjkEKoW6 .dropdown-item:active {
  background-color: transparent;
}
.cid-uSjjkEKoW6 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uSjjkEKoW6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uSjjkEKoW6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uSjjkEKoW6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uSjjkEKoW6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uSjjkEKoW6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uSjjkEKoW6 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uSjjkEKoW6 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uSjjkEKoW6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uSjjkEKoW6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-uSjjkEKoW6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uSjjkEKoW6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSjjkEKoW6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uSjjkEKoW6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uSjjkEKoW6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSjjkEKoW6 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uSjjkEKoW6 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uSjjkEKoW6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uSjjkEKoW6 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-uSjjkEKoW6 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSjjkEKoW6 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uSjjkEKoW6 .navbar {
    height: 70px;
  }
  .cid-uSjjkEKoW6 .navbar.opened {
    height: auto;
  }
  .cid-uSjjkEKoW6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uSjjkFa50q {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uSjjkFa50q .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uSjjkFa50q .photo-split .image-wrap img {
  max-width: 100%;
  max-height: 800px;
  z-index: 9;
  position: relative;
}
.cid-uSjjkFa50q .photo-split .element-outer {
  border-radius: 100%;
  padding: 60px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uSjjkFa50q .photo-split .element-outer2 {
  border-radius: 100%;
  padding: 100px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uSjjkFa50q .photo-split .element-inner {
  position: absolute;
  z-index: 10;
  left: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-uSjjkFa50q .photo-split .element-inner .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 31px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4db;
  margin-right: 15px;
  z-index: 10;
}
.cid-uSjjkFa50q .wrap-block {
  padding: 3rem 3rem;
}
.cid-uSjjkFa50q .wrap-block .contents {
  margin-bottom: 40px;
  padding-right: 50px;
}
.cid-uSjjkFa50q .wrap-block .contents .mbr-subtitle {
  color: #87e4db;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-uSjjkFa50q .wrap-block .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-uSjjkFa50q .wrap-block .contents .mbr-section-title {
  margin-bottom: 10px;
  color: #73c4bd;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.cid-uSjjkFa50q .wrap-block .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
}
.cid-uSjjkFa50q .wrap-block .contents .mbr-section-text.display-7 {
  font-size: 20px;
}
.cid-uSjjkFa50q .wrap-block .contents .mbr-section-text.display-4 {
  font-size: 16px;
}
.cid-uSjjkFa50q .wrap-block .contents h3 {
  color: #73c4bd;
  letter-spacing: -0.5px;
  line-height: 30px;
}
.cid-uSjjkFa50q .wrap-block .contents h4 {
  color: #16324f;
}
.cid-uSjjkFa50q .info-widget {
  padding-top: 0.5rem;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.cid-uSjjkFa50q .info-widget .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 18px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #87e4da;
  margin-right: 15px;
}
.cid-uSjjkFa50q .info-widget .signature {
  height: 75px;
  display: inline-block;
  margin-right: 15px;
  object-fit: contain;
}
.cid-uSjjkFa50q .info-widget .widget-content {
  display: flex;
  vertical-align: baseline;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-uSjjkFa50q .info-widget .widget-content .widget-title {
  margin-bottom: 7px;
  color: #73c4bd;
}
.cid-uSjjkFa50q .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  color: #7e7e7e;
}
@media (max-width: 991px) {
  .cid-uSjjkFa50q .photo-split {
    padding: 3rem 3rem;
  }
  .cid-uSjjkFa50q .photo-split .element-outer,
  .cid-uSjjkFa50q .photo-split .element-outer2 {
    display: none;
  }
  .cid-uSjjkFa50q .photo-split .element-inner {
    left: 0;
  }
}
@media (max-width: 767px) {
  .cid-uSjjkFa50q .mbr-section-title,
  .cid-uSjjkFa50q .mbr-section-subtitle,
  .cid-uSjjkFa50q .mbr-text {
    text-align: left !important;
  }
  .cid-uSjjkFa50q .social-list {
    text-align: left !important;
  }
}
.cid-uSjjkFa50q .boldSubtitle {
  margin-top: 40px !important;
}
@media (max-width: 500px) {
  .cid-uSjjkFa50q .wrap-block {
    padding: 3rem 1rem;
  }
}
.cid-uSjjkFa50q .wrap-block .contents h4,
.cid-uSjjkFa50q .menu-content-right {
  color: #00acb1;
}
.cid-uSjjkFv0vR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uSjjkFv0vR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSjjkFv0vR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSjjkFv0vR .mbr-section-title {
  color: #00acb1;
}
.cid-uSjjkFv0vR .mbr-text {
  color: #00acb1;
}
.cid-uSjjkFM7ua {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uSjjkFM7ua .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSjjkFM7ua .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSjjkFM7ua .google-map {
  height: 35rem;
  position: relative;
}
.cid-uSjjkFM7ua .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uSjjkFM7ua .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-uSjjkFM7ua .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uSjjkFM7ua .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uSjjkG5i30 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uSjjkG5i30 .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #f3f7f9 none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-uSjjkG5i30 .mbr-iconfont {
  align-items: center;
}
.cid-uSjjkG5i30 .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-uSjjkG5i30 .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uSjjkG5i30 .icon-transition span:hover {
  background-color: #000000;
  color: #f3f7f9;
}
.cid-uSjjkG5i30 .social-media {
  padding: 0;
}
.cid-uSjjkG5i30 .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-uSjjkG5i30 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-uSjjkG5i30 .mbr-list,
.cid-uSjjkG5i30 .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uSjjkG5i30 .social-list {
    text-align: center !important;
  }
}
.cid-uSjjkG5i30 .mbr-section-title,
.cid-uSjjkG5i30 .social-list {
  color: #00acb1;
}
.cid-uSjjkGsjhC {
  background-color: #efefec;
}
.cid-uSjjkGsjhC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSjjkGsjhC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSjjkGsjhC .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-uSjjkGsjhC .row {
  align-items: center;
}
.cid-uSjjkGsjhC .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-uSjjkGsjhC .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSjjkGsjhC .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSjjkGsjhC .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-uSjjkGsjhC .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-uSjjkGsjhC .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uSjjkGsjhC .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uSjjkGsjhC .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-uSjjkGsjhC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uSjjkGsjhC .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSjjkGsjhC .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-uSjjkGsjhC .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-uSjjkGsjhC .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-uSjjkGsjhC .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-uSjjkGsjhC .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-uSjjkGsjhC .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uSjjkGsjhC .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-uSjjkGsjhC .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSjjkGsjhC .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-uSjjkGsjhC .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-uSjjkGsjhC .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-uSjjkGsjhC .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-uSjjkGsjhC .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-uSjjkGsjhC .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-uSjjkGsjhC .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-uSjjkGsjhC .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-uSjjkGsjhC .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-uSjjkGsjhC .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uSjjkGsjhC .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-uSjjkGsjhC .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-uSjjkGsjhC .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-uSjjkGsjhC .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-uSjjkGsjhC .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uSjjkGsjhC .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-uSjjkGsjhC .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-uSjjkGsjhC .contact-container {
    width: 100%;
  }
}
.cid-uSjjkGsjhC .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-uSjjkGsjhC .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-uSjjkGsjhC .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-uSjjkGsjhC .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-uSjjkGsjhC .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-uSjjkGsjhC .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-uSjjkGsjhC .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-uSjjkGsjhC .copyright {
  color: #efefec;
}
.cid-uSjjkGsjhC .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-uSjjkGsjhC .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-uSjjkGsjhC .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-va7IfOZqof {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-va7IfOZqof .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-va7IfOZqof nav.navbar {
  position: fixed;
}
.cid-va7IfOZqof .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-va7IfOZqof .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-va7IfOZqof .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-va7IfOZqof .dropdown-item:hover,
.cid-va7IfOZqof .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-va7IfOZqof .dropdown-item:hover span {
  color: white;
}
.cid-va7IfOZqof .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-va7IfOZqof .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-va7IfOZqof .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-va7IfOZqof .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-va7IfOZqof .nav-link {
  position: relative;
}
.cid-va7IfOZqof .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-va7IfOZqof .container {
    flex-wrap: nowrap;
  }
}
.cid-va7IfOZqof .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-va7IfOZqof .dropdown-menu,
.cid-va7IfOZqof .navbar.opened {
  background: #ffffff !important;
}
.cid-va7IfOZqof .nav-item:focus,
.cid-va7IfOZqof .nav-link:focus {
  outline: none;
}
.cid-va7IfOZqof .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-va7IfOZqof .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-va7IfOZqof .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-va7IfOZqof .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-va7IfOZqof .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-va7IfOZqof .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-va7IfOZqof .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-va7IfOZqof .navbar.opened {
  transition: all 0.3s;
}
.cid-va7IfOZqof .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-va7IfOZqof .navbar .navbar-logo img {
  width: auto;
}
.cid-va7IfOZqof .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-va7IfOZqof .navbar.collapsed {
  justify-content: center;
}
.cid-va7IfOZqof .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-va7IfOZqof .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-va7IfOZqof .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-va7IfOZqof .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-va7IfOZqof .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-va7IfOZqof .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-va7IfOZqof .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-va7IfOZqof .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-va7IfOZqof .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-va7IfOZqof .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-va7IfOZqof .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-va7IfOZqof .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-va7IfOZqof .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-va7IfOZqof .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-va7IfOZqof .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-va7IfOZqof .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-va7IfOZqof .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-va7IfOZqof .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-va7IfOZqof .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-va7IfOZqof .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-va7IfOZqof .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-va7IfOZqof .navbar.navbar-short {
  min-height: 80px;
}
.cid-va7IfOZqof .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-va7IfOZqof .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-va7IfOZqof .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-va7IfOZqof .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-va7IfOZqof .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-va7IfOZqof .dropdown-item.active,
.cid-va7IfOZqof .dropdown-item:active {
  background-color: transparent;
}
.cid-va7IfOZqof .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-va7IfOZqof .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-va7IfOZqof .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-va7IfOZqof .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-va7IfOZqof .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-va7IfOZqof .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-va7IfOZqof ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-va7IfOZqof .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-va7IfOZqof button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-va7IfOZqof button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-va7IfOZqof button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-va7IfOZqof button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-va7IfOZqof button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-va7IfOZqof button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-va7IfOZqof nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-va7IfOZqof nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-va7IfOZqof nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-va7IfOZqof nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-va7IfOZqof .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-va7IfOZqof a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-va7IfOZqof .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-va7IfOZqof .navbar {
    height: 70px;
  }
  .cid-va7IfOZqof .navbar.opened {
    height: auto;
  }
  .cid-va7IfOZqof .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-va7IfPqsC3 {
  background-image: url("../../../assets/images/portrait-of-smiling-female-nurse-wearing-scrubs-in-2021-08-26-16-15-24-utc-2000x1334.jpg");
}
.cid-va7IfPqsC3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-va7IfPqsC3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va7IfPqsC3 .mbr-section-title {
  color: #FFFFFF;
}
.cid-va7IfPqsC3 .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-va7IfPqsC3 .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-va7IfPqsC3 .mbr-section-btn {
  margin-top: 18px;
}
.cid-va7IfPqsC3 .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-va7IfPqsC3 .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-va7IfQ6mC5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-va7IfQ6mC5 .row {
    flex-direction: column-reverse;
  }
}
.cid-va7IfQ6mC5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-va7IfQ6mC5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va7IfQ6mC5 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-va7IfQ6mC5 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-va7IfQ6mC5 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-va7IfQ6mC5 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-va7IfQ6mC5 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-va7IfQ6mC5 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-va7IfQ6mC5 .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-va7IfQ6mC5 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-va7IfQ6mC5 .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-va7IfQ6mC5 .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-va7IfQ6mC5 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-va7IfQ6mC5 .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-va7IfQ6mC5 .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-va7IfQ6mC5 .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-va7IfQ6mC5 .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-va7IfQ6mC5 .image-wrapper img {
    min-height: 100%;
  }
}
.cid-va7IfQ6mC5 .mbr-section-title {
  color: #000000;
}
.cid-va7IfQ6mC5 .mbr-text {
  color: #000000;
}
.cid-va7IfQ6mC5 .mbr-section-title,
.cid-va7IfQ6mC5 .mbr-section-btn {
  color: #00acb1;
}
.cid-va7JH6V9Ie {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-va7JH6V9Ie .row {
    flex-direction: column-reverse;
  }
}
.cid-va7JH6V9Ie .mbr-fallback-image.disabled {
  display: none;
}
.cid-va7JH6V9Ie .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va7JH6V9Ie .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-va7JH6V9Ie .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-va7JH6V9Ie .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-va7JH6V9Ie .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-va7JH6V9Ie .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-va7JH6V9Ie .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-va7JH6V9Ie .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-va7JH6V9Ie .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-va7JH6V9Ie .text-wrapper {
    margin: 0 30px;
  }
}
.cid-va7JH6V9Ie .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-va7JH6V9Ie .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-va7JH6V9Ie .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-va7JH6V9Ie .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-va7JH6V9Ie .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-va7JH6V9Ie .image-wrapper {
    margin: 30px;
  }
}
.cid-va7JH6V9Ie .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-va7JH6V9Ie .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-va7JH6V9Ie .image-wrapper img {
    min-height: 100%;
  }
}
.cid-va7JH6V9Ie .mbr-section-title {
  color: #000000;
}
.cid-va7JH6V9Ie .mbr-text {
  color: #000000;
}
.cid-va7JH6V9Ie .mbr-section-title,
.cid-va7JH6V9Ie .mbr-section-btn {
  color: #00acb1;
}
.cid-va7LS3XjIc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-va7LS3XjIc .mbr-fallback-image.disabled {
  display: none;
}
.cid-va7LS3XjIc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va7LS3XjIc .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-va7LS3XjIc .text-wrapper {
    margin: 0 30px;
  }
}
.cid-va7LS3XjIc .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-va7LS3XjIc .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-va7LS3XjIc .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-va7LS3XjIc .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-va7LS3XjIc .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-va7LS3XjIc .mbr-section-title {
  color: #FFFFFF;
}
.cid-va7LS3XjIc .mbr-desc {
  color: #FFFFFF;
}
.cid-va7LS3XjIc .mbr-text {
  color: #FFFFFF;
}
.cid-va7MA7mUi3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-va7MA7mUi3 .row {
    flex-direction: column-reverse;
  }
}
.cid-va7MA7mUi3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-va7MA7mUi3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va7MA7mUi3 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-va7MA7mUi3 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-va7MA7mUi3 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-va7MA7mUi3 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-va7MA7mUi3 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-va7MA7mUi3 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-va7MA7mUi3 .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-va7MA7mUi3 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-va7MA7mUi3 .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-va7MA7mUi3 .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-va7MA7mUi3 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-va7MA7mUi3 .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-va7MA7mUi3 .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-va7MA7mUi3 .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-va7MA7mUi3 .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-va7MA7mUi3 .image-wrapper img {
    min-height: 100%;
  }
}
.cid-va7MA7mUi3 .mbr-section-title {
  color: #000000;
}
.cid-va7MA7mUi3 .mbr-text {
  color: #000000;
}
.cid-va7MA7mUi3 .mbr-section-title,
.cid-va7MA7mUi3 .mbr-section-btn {
  color: #00acb1;
}
.cid-va7NmRgMDb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-va7NmRgMDb .row {
    flex-direction: column-reverse;
  }
}
.cid-va7NmRgMDb .mbr-fallback-image.disabled {
  display: none;
}
.cid-va7NmRgMDb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va7NmRgMDb .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-va7NmRgMDb .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-va7NmRgMDb .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-va7NmRgMDb .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-va7NmRgMDb .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-va7NmRgMDb .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-va7NmRgMDb .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-va7NmRgMDb .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-va7NmRgMDb .text-wrapper {
    margin: 0 30px;
  }
}
.cid-va7NmRgMDb .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-va7NmRgMDb .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-va7NmRgMDb .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-va7NmRgMDb .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-va7NmRgMDb .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-va7NmRgMDb .image-wrapper {
    margin: 30px;
  }
}
.cid-va7NmRgMDb .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-va7NmRgMDb .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-va7NmRgMDb .image-wrapper img {
    min-height: 100%;
  }
}
.cid-va7NmRgMDb .mbr-section-title {
  color: #000000;
}
.cid-va7NmRgMDb .mbr-text {
  color: #000000;
}
.cid-va7NmRgMDb .mbr-section-title,
.cid-va7NmRgMDb .mbr-section-btn {
  color: #00acb1;
}
.cid-va7Phwvvsg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #46414c;
  position: relative;
}
.cid-va7Phwvvsg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#000000 50%, transparent);
  pointer-events: none;
  z-index: 1;
}
.cid-va7Phwvvsg .mbr-fallback-image.disabled {
  display: none;
}
.cid-va7Phwvvsg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va7Phwvvsg .row {
  justify-content: center;
}
.cid-va7Phwvvsg .content-wrapper {
  position: relative;
  z-index: 2;
}
.cid-va7Phwvvsg .content-wrapper .mbr-section-title {
  margin-bottom: 22px;
  background-image: linear-gradient(0deg, #00acb1, #00acb1 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-va7Phwvvsg .content-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-va7Phwvvsg .mbr-section-title {
  color: #ffffff;
}
.cid-va7Phwvvsg .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-va7Phwvvsg .mbr-section-title,
.cid-va7Phwvvsg .mbr-section-btn {
  text-align: center;
  color: #00acb1;
}
#custom-html-oz {
  /* Type valid CSS here */
}
#custom-html-oz div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-oz p {
  font-size: 60px;
  color: #777;
}
.cid-va7IfQqefB {
  background-color: #efefec;
}
.cid-va7IfQqefB .mbr-fallback-image.disabled {
  display: none;
}
.cid-va7IfQqefB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va7IfQqefB .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-va7IfQqefB .row {
  align-items: center;
}
.cid-va7IfQqefB .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-va7IfQqefB .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-va7IfQqefB .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-va7IfQqefB .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-va7IfQqefB .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-va7IfQqefB .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-va7IfQqefB .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-va7IfQqefB .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-va7IfQqefB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-va7IfQqefB .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-va7IfQqefB .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-va7IfQqefB .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-va7IfQqefB .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-va7IfQqefB .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-va7IfQqefB .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-va7IfQqefB .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-va7IfQqefB .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-va7IfQqefB .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-va7IfQqefB .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-va7IfQqefB .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-va7IfQqefB .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-va7IfQqefB .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-va7IfQqefB .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-va7IfQqefB .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-va7IfQqefB .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-va7IfQqefB .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-va7IfQqefB .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-va7IfQqefB .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-va7IfQqefB .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-va7IfQqefB .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-va7IfQqefB .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-va7IfQqefB .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-va7IfQqefB .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-va7IfQqefB .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-va7IfQqefB .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-va7IfQqefB .contact-container {
    width: 100%;
  }
}
.cid-va7IfQqefB .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-va7IfQqefB .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-va7IfQqefB .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-va7IfQqefB .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-va7IfQqefB .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-va7IfQqefB .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-va7IfQqefB .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-va7IfQqefB .copyright {
  color: #efefec;
}
.cid-va7IfQqefB .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-va7IfQqefB .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-va7IfQqefB .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-vaYf4ZeE1o {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-vaYf4ZeE1o .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-vaYf4ZeE1o nav.navbar {
  position: fixed;
}
.cid-vaYf4ZeE1o .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaYf4ZeE1o .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaYf4ZeE1o .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vaYf4ZeE1o .dropdown-item:hover,
.cid-vaYf4ZeE1o .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-vaYf4ZeE1o .dropdown-item:hover span {
  color: white;
}
.cid-vaYf4ZeE1o .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaYf4ZeE1o .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaYf4ZeE1o .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaYf4ZeE1o .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaYf4ZeE1o .nav-link {
  position: relative;
}
.cid-vaYf4ZeE1o .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vaYf4ZeE1o .container {
    flex-wrap: nowrap;
  }
}
.cid-vaYf4ZeE1o .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vaYf4ZeE1o .dropdown-menu,
.cid-vaYf4ZeE1o .navbar.opened {
  background: #ffffff !important;
}
.cid-vaYf4ZeE1o .nav-item:focus,
.cid-vaYf4ZeE1o .nav-link:focus {
  outline: none;
}
.cid-vaYf4ZeE1o .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaYf4ZeE1o .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaYf4ZeE1o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaYf4ZeE1o .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaYf4ZeE1o .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaYf4ZeE1o .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaYf4ZeE1o .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vaYf4ZeE1o .navbar.opened {
  transition: all 0.3s;
}
.cid-vaYf4ZeE1o .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaYf4ZeE1o .navbar .navbar-logo img {
  width: auto;
}
.cid-vaYf4ZeE1o .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaYf4ZeE1o .navbar.collapsed {
  justify-content: center;
}
.cid-vaYf4ZeE1o .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaYf4ZeE1o .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaYf4ZeE1o .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-vaYf4ZeE1o .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaYf4ZeE1o .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaYf4ZeE1o .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaYf4ZeE1o .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaYf4ZeE1o .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaYf4ZeE1o .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaYf4ZeE1o .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaYf4ZeE1o .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaYf4ZeE1o .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaYf4ZeE1o .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaYf4ZeE1o .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaYf4ZeE1o .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaYf4ZeE1o .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaYf4ZeE1o .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaYf4ZeE1o .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaYf4ZeE1o .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaYf4ZeE1o .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaYf4ZeE1o .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaYf4ZeE1o .navbar.navbar-short {
  min-height: 80px;
}
.cid-vaYf4ZeE1o .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vaYf4ZeE1o .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vaYf4ZeE1o .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vaYf4ZeE1o .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaYf4ZeE1o .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaYf4ZeE1o .dropdown-item.active,
.cid-vaYf4ZeE1o .dropdown-item:active {
  background-color: transparent;
}
.cid-vaYf4ZeE1o .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaYf4ZeE1o .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaYf4ZeE1o .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaYf4ZeE1o .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vaYf4ZeE1o .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaYf4ZeE1o .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaYf4ZeE1o ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaYf4ZeE1o .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vaYf4ZeE1o button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaYf4ZeE1o button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-vaYf4ZeE1o button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaYf4ZeE1o button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaYf4ZeE1o button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaYf4ZeE1o button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaYf4ZeE1o nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaYf4ZeE1o nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaYf4ZeE1o nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaYf4ZeE1o nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaYf4ZeE1o .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaYf4ZeE1o a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaYf4ZeE1o .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaYf4ZeE1o .navbar {
    height: 70px;
  }
  .cid-vaYf4ZeE1o .navbar.opened {
    height: auto;
  }
  .cid-vaYf4ZeE1o .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vaYf4ZFuxD {
  background-image: url("../../../assets/images/hand20arm20vibration20medical-1536x1024.png");
}
.cid-vaYf4ZFuxD .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaYf4ZFuxD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaYf4ZFuxD .mbr-section-title {
  color: #FFFFFF;
}
.cid-vaYf4ZFuxD .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-vaYf4ZFuxD .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-vaYf4ZFuxD .mbr-section-btn {
  margin-top: 18px;
}
.cid-vaYf4ZFuxD .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-vaYf4ZFuxD .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-vaYf4ZY7yX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vaYf4ZY7yX .row {
    flex-direction: column-reverse;
  }
}
.cid-vaYf4ZY7yX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaYf4ZY7yX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaYf4ZY7yX .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-vaYf4ZY7yX .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-vaYf4ZY7yX .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-vaYf4ZY7yX .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-vaYf4ZY7yX .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-vaYf4ZY7yX .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-vaYf4ZY7yX .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-vaYf4ZY7yX .text-wrapper {
    margin: 0 30px;
  }
}
.cid-vaYf4ZY7yX .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-vaYf4ZY7yX .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-vaYf4ZY7yX .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-vaYf4ZY7yX .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-vaYf4ZY7yX .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-vaYf4ZY7yX .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vaYf4ZY7yX .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-vaYf4ZY7yX .image-wrapper img {
    min-height: 100%;
  }
}
.cid-vaYf4ZY7yX .mbr-section-title {
  color: #000000;
}
.cid-vaYf4ZY7yX .mbr-text {
  color: #000000;
}
.cid-vaYf4ZY7yX .mbr-section-title,
.cid-vaYf4ZY7yX .mbr-section-btn {
  color: #00acb1;
}
.cid-vaYf50ktiP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vaYf50ktiP .row {
    flex-direction: column-reverse;
  }
}
.cid-vaYf50ktiP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaYf50ktiP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaYf50ktiP .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-vaYf50ktiP .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-vaYf50ktiP .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-vaYf50ktiP .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-vaYf50ktiP .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-vaYf50ktiP .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-vaYf50ktiP .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-vaYf50ktiP .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-vaYf50ktiP .text-wrapper {
    margin: 0 30px;
  }
}
.cid-vaYf50ktiP .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-vaYf50ktiP .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-vaYf50ktiP .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-vaYf50ktiP .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-vaYf50ktiP .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-vaYf50ktiP .image-wrapper {
    margin: 30px;
  }
}
.cid-vaYf50ktiP .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vaYf50ktiP .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-vaYf50ktiP .image-wrapper img {
    min-height: 100%;
  }
}
.cid-vaYf50ktiP .mbr-section-title {
  color: #000000;
}
.cid-vaYf50ktiP .mbr-text {
  color: #000000;
}
.cid-vaYf50ktiP .mbr-section-title,
.cid-vaYf50ktiP .mbr-section-btn {
  color: #00acb1;
}
.cid-vaYKDb6poj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-vaYKDb6poj .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaYKDb6poj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaYKDb6poj .title-wrapper {
  margin-top: 40px;
}
.cid-vaYKDb6poj .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vaYKDb6poj .title-wrapper .mbr-section-btn {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .cid-vaYKDb6poj .title-wrapper .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-vaYKDb6poj .mbr-section-title {
  color: #ffffff;
}
.cid-vaYKDb6poj .mbr-section-title,
.cid-vaYKDb6poj .mbr-section-btn {
  text-align: center;
}
.cid-vaYf50Ve72 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vaYf50Ve72 .row {
    flex-direction: column-reverse;
  }
}
.cid-vaYf50Ve72 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaYf50Ve72 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaYf50Ve72 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-vaYf50Ve72 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-vaYf50Ve72 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-vaYf50Ve72 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-vaYf50Ve72 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-vaYf50Ve72 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-vaYf50Ve72 .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-vaYf50Ve72 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-vaYf50Ve72 .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-vaYf50Ve72 .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-vaYf50Ve72 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-vaYf50Ve72 .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-vaYf50Ve72 .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-vaYf50Ve72 .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vaYf50Ve72 .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-vaYf50Ve72 .image-wrapper img {
    min-height: 100%;
  }
}
.cid-vaYf50Ve72 .mbr-section-title {
  color: #000000;
}
.cid-vaYf50Ve72 .mbr-text {
  color: #000000;
}
.cid-vaYf50Ve72 .mbr-section-title,
.cid-vaYf50Ve72 .mbr-section-btn {
  color: #00acb1;
}
.cid-vaYf51ejbi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vaYf51ejbi .row {
    flex-direction: column-reverse;
  }
}
.cid-vaYf51ejbi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaYf51ejbi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaYf51ejbi .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-vaYf51ejbi .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-vaYf51ejbi .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-vaYf51ejbi .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-vaYf51ejbi .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-vaYf51ejbi .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-vaYf51ejbi .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-vaYf51ejbi .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-vaYf51ejbi .text-wrapper {
    margin: 0 30px;
  }
}
.cid-vaYf51ejbi .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-vaYf51ejbi .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-vaYf51ejbi .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-vaYf51ejbi .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-vaYf51ejbi .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-vaYf51ejbi .image-wrapper {
    margin: 30px;
  }
}
.cid-vaYf51ejbi .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vaYf51ejbi .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-vaYf51ejbi .image-wrapper img {
    min-height: 100%;
  }
}
.cid-vaYf51ejbi .mbr-section-title {
  color: #000000;
}
.cid-vaYf51ejbi .mbr-text {
  color: #000000;
}
.cid-vaYf51ejbi .mbr-section-title,
.cid-vaYf51ejbi .mbr-section-btn {
  color: #00acb1;
}
.cid-vaYf51ZYBZ {
  background-color: #efefec;
}
.cid-vaYf51ZYBZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaYf51ZYBZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaYf51ZYBZ .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-vaYf51ZYBZ .row {
  align-items: center;
}
.cid-vaYf51ZYBZ .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-vaYf51ZYBZ .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-vaYf51ZYBZ .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-vaYf51ZYBZ .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-vaYf51ZYBZ .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-vaYf51ZYBZ .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-vaYf51ZYBZ .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-vaYf51ZYBZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-vaYf51ZYBZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaYf51ZYBZ .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vaYf51ZYBZ .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-vaYf51ZYBZ .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-vaYf51ZYBZ .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-vaYf51ZYBZ .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-vaYf51ZYBZ .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-vaYf51ZYBZ .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaYf51ZYBZ .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-vaYf51ZYBZ .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-vaYf51ZYBZ .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-vaYf51ZYBZ .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-vaYf51ZYBZ .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-vaYf51ZYBZ .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-vaYf51ZYBZ .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-vaYf51ZYBZ .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-vaYf51ZYBZ .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-vaYf51ZYBZ .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-vaYf51ZYBZ .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-vaYf51ZYBZ .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-vaYf51ZYBZ .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-vaYf51ZYBZ .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-vaYf51ZYBZ .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-vaYf51ZYBZ .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-vaYf51ZYBZ .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-vaYf51ZYBZ .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vaYf51ZYBZ .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-vaYf51ZYBZ .contact-container {
    width: 100%;
  }
}
.cid-vaYf51ZYBZ .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-vaYf51ZYBZ .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-vaYf51ZYBZ .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-vaYf51ZYBZ .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-vaYf51ZYBZ .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-vaYf51ZYBZ .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-vaYf51ZYBZ .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-vaYf51ZYBZ .copyright {
  color: #efefec;
}
.cid-vaYf51ZYBZ .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-vaYf51ZYBZ .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-vaYf51ZYBZ .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-vi3eabhY2E {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-vi3eabhY2E .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-vi3eabhY2E nav.navbar {
  position: fixed;
}
.cid-vi3eabhY2E .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vi3eabhY2E .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vi3eabhY2E .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vi3eabhY2E .dropdown-item:hover,
.cid-vi3eabhY2E .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-vi3eabhY2E .dropdown-item:hover span {
  color: white;
}
.cid-vi3eabhY2E .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vi3eabhY2E .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vi3eabhY2E .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vi3eabhY2E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vi3eabhY2E .nav-link {
  position: relative;
}
.cid-vi3eabhY2E .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vi3eabhY2E .container {
    flex-wrap: nowrap;
  }
}
.cid-vi3eabhY2E .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vi3eabhY2E .dropdown-menu,
.cid-vi3eabhY2E .navbar.opened {
  background: #ffffff !important;
}
.cid-vi3eabhY2E .nav-item:focus,
.cid-vi3eabhY2E .nav-link:focus {
  outline: none;
}
.cid-vi3eabhY2E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vi3eabhY2E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vi3eabhY2E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vi3eabhY2E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vi3eabhY2E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vi3eabhY2E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vi3eabhY2E .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vi3eabhY2E .navbar.opened {
  transition: all 0.3s;
}
.cid-vi3eabhY2E .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vi3eabhY2E .navbar .navbar-logo img {
  width: auto;
}
.cid-vi3eabhY2E .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vi3eabhY2E .navbar.collapsed {
  justify-content: center;
}
.cid-vi3eabhY2E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vi3eabhY2E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vi3eabhY2E .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-vi3eabhY2E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vi3eabhY2E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vi3eabhY2E .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vi3eabhY2E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vi3eabhY2E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vi3eabhY2E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vi3eabhY2E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vi3eabhY2E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vi3eabhY2E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vi3eabhY2E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vi3eabhY2E .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vi3eabhY2E .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vi3eabhY2E .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vi3eabhY2E .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vi3eabhY2E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vi3eabhY2E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vi3eabhY2E .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vi3eabhY2E .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vi3eabhY2E .navbar.navbar-short {
  min-height: 80px;
}
.cid-vi3eabhY2E .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vi3eabhY2E .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vi3eabhY2E .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vi3eabhY2E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vi3eabhY2E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vi3eabhY2E .dropdown-item.active,
.cid-vi3eabhY2E .dropdown-item:active {
  background-color: transparent;
}
.cid-vi3eabhY2E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vi3eabhY2E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vi3eabhY2E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vi3eabhY2E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vi3eabhY2E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vi3eabhY2E .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vi3eabhY2E ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vi3eabhY2E .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vi3eabhY2E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vi3eabhY2E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-vi3eabhY2E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vi3eabhY2E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vi3eabhY2E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vi3eabhY2E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vi3eabhY2E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vi3eabhY2E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vi3eabhY2E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vi3eabhY2E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vi3eabhY2E .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vi3eabhY2E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vi3eabhY2E .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vi3eabhY2E .navbar {
    height: 70px;
  }
  .cid-vi3eabhY2E .navbar.opened {
    height: auto;
  }
  .cid-vi3eabhY2E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vi3eabUGu0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #d6b808;
}
.cid-vi3eabUGu0 .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-vi3eabUGu0 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-vi3eabUGu0 .container {
    padding: 0 24px;
  }
}
.cid-vi3eabUGu0 .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vi3eabUGu0 .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vi3eabUGu0 .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vi3eabUGu0 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vi3eabUGu0 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vi3eabUGu0 .mbr-section-btn {
    text-align: left;
  }
}
.cid-vi3eabUGu0 .mbr-section-title {
  color: #F9F6E0;
}
.cid-vi3eabUGu0 .mbr-text {
  color: #232323;
}
.cid-vi3eabUGu0 .mbr-section-title,
.cid-vi3eabUGu0 .mbr-section-btn {
  color: #232323;
}
.cid-vi3eacfinP {
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpg");
}
.cid-vi3eacfinP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vi3eacfinP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vi3eacfinP .container-fluid {
  margin: 0;
  padding: 0 72px;
}
@media (max-width: 992px) {
  .cid-vi3eacfinP .container-fluid {
    padding: 0 20px;
  }
}
.cid-vi3eacfinP .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-vi3eacfinP .container {
    padding: 0 20px;
  }
  .cid-vi3eacfinP .container .row {
    padding: 0;
  }
}
.cid-vi3eacfinP .title-wrapper .mbr-section-title {
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-vi3eacfinP .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-vi3eacfinP .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vi3eacfinP .text-wrapper .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-vi3eacfinP .text-wrapper .mbr-section-btn .btn .mbr-iconfont {
  color: #c6a38f;
}
.cid-vi3eacfinP .mbr-section-title {
  color: #f4f7f8;
}
.cid-vi3eacfinP .mbr-text {
  color: #ffffff;
}
.cid-vi3eacfinP .mbr-text,
.cid-vi3eacfinP .mbr-section-btn {
  color: #f4f7f8;
}
.cid-vi3eacBtiy {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpeg");
}
.cid-vi3eacBtiy .mbr-overlay {
  background: #0936a7;
  opacity: 0.5;
}
.cid-vi3eacBtiy .container-fluid {
  padding: 0 32px;
}
@media (max-width: 992px) {
  .cid-vi3eacBtiy .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-vi3eacBtiy .container {
    padding: 0 24px;
  }
}
.cid-vi3eacBtiy .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vi3eacBtiy .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vi3eacBtiy .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-vi3eacBtiy .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vi3eacBtiy .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vi3eacBtiy .mbr-section-btn {
    text-align: left;
  }
}
.cid-vi3eacBtiy .mbr-section-title {
  color: #F9F6E0;
}
.cid-vi3eacBtiy .mbr-text {
  color: #ffffff;
}
.cid-vi3eacBtiy .mbr-section-title,
.cid-vi3eacBtiy .mbr-section-btn {
  color: #ffffff;
}
.cid-vi3eaehpsu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vi3eaehpsu .row {
    flex-direction: column-reverse;
  }
}
.cid-vi3eaehpsu .mbr-fallback-image.disabled {
  display: none;
}
.cid-vi3eaehpsu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vi3eaehpsu .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-vi3eaehpsu .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-vi3eaehpsu .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-vi3eaehpsu .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-vi3eaehpsu .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-vi3eaehpsu .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-vi3eaehpsu .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-vi3eaehpsu .text-wrapper {
    margin: 0 30px;
  }
}
.cid-vi3eaehpsu .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-vi3eaehpsu .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-vi3eaehpsu .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-vi3eaehpsu .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-vi3eaehpsu .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-vi3eaehpsu .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vi3eaehpsu .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-vi3eaehpsu .image-wrapper img {
    min-height: 100%;
  }
}
.cid-vi3eaehpsu .mbr-section-title {
  color: #000000;
}
.cid-vi3eaehpsu .mbr-text {
  color: #000000;
}
.cid-vi3eaehpsu .mbr-section-title,
.cid-vi3eaehpsu .mbr-section-btn {
  color: #00acb1;
}
.cid-vi3eafq30n {
  background-color: #ffffff;
}
.cid-vi3eafq30n .container {
  max-width: 1500px;
}
.cid-vi3eafq30n .row {
  background: #16324f;
}
.cid-vi3eafq30n .img-col {
  padding: 0;
}
.cid-vi3eafq30n .title-col {
  padding: 4rem 8rem;
}
.cid-vi3eafq30n img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vi3eafq30n h2 {
  padding: 0;
  margin: 0;
}
.cid-vi3eafq30n .text-wrap {
  margin: auto;
}
.cid-vi3eafq30n .mbr-text {
  color: #ffffff;
}
@media (max-width: 1200px) {
  .cid-vi3eafq30n .row {
    margin: 2rem;
  }
  .cid-vi3eafq30n .title-col {
    padding: 6rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-vi3eafq30n .row {
    margin: 0rem;
  }
  .cid-vi3eafq30n .title-col {
    padding: 2rem 1rem;
  }
}
.cid-vi3eafq30n H2 {
  color: #ffffff;
}
.cid-vi3eafObgw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vi3eafObgw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vi3eafObgw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vi3eafObgw .card-wrapper {
  background: #ffffff;
}
@media (max-width: 767px) {
  .cid-vi3eafObgw .card-wrapper {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vi3eafObgw .card-wrapper {
    padding: 2.25rem;
  }
}
@media (min-width: 992px) {
  .cid-vi3eafObgw .card-wrapper {
    padding: 4rem;
  }
}
.cid-vi3eafObgw .mbr-text,
.cid-vi3eafObgw .mbr-section-btn {
  color: #00acb1;
  text-align: left;
}
.cid-vi3eafObgw .card-title,
.cid-vi3eafObgw .card-box {
  text-align: left;
  color: #00acb1;
}
.cid-vi3eaggelc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vi3eaggelc .row {
    flex-direction: column-reverse;
  }
}
.cid-vi3eaggelc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vi3eaggelc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vi3eaggelc .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-vi3eaggelc .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-vi3eaggelc .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-vi3eaggelc .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-vi3eaggelc .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-vi3eaggelc .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-vi3eaggelc .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-vi3eaggelc .text-wrapper {
    margin: 0 30px;
  }
}
.cid-vi3eaggelc .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-vi3eaggelc .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-vi3eaggelc .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-vi3eaggelc .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-vi3eaggelc .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-vi3eaggelc .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vi3eaggelc .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-vi3eaggelc .image-wrapper img {
    min-height: 100%;
  }
}
.cid-vi3eaggelc .mbr-section-title {
  color: #000000;
}
.cid-vi3eaggelc .mbr-text {
  color: #000000;
}
.cid-vi3eaggelc .mbr-section-title,
.cid-vi3eaggelc .mbr-section-btn {
  color: #00acb1;
}
.cid-vi3eagJAsd {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vi3eagJAsd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vi3eagJAsd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vi3eagJAsd .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-vi3eagJAsd .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-vi3eagJAsd .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-vi3eagJAsd .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-vi3eagJAsd .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-vi3eagJAsd .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-vi3eagJAsd .tab-content {
  margin: 0 160px;
}
@media (max-width: 992px) {
  .cid-vi3eagJAsd .tab-content {
    margin: 0 30px;
  }
}
.cid-vi3eagJAsd .tab-content .tab-pane .card {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vi3eagJAsd .tab-content .tab-pane .card {
    display: block;
  }
}
.cid-vi3eagJAsd .tab-content .tab-pane .card img {
  width: 45%;
  height: 700px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vi3eagJAsd .tab-content .tab-pane .card img {
    width: 100%;
    height: 600px;
  }
}
@media (max-width: 768px) {
  .cid-vi3eagJAsd .tab-content .tab-pane .card img {
    height: 500px;
  }
}
.cid-vi3eagJAsd .tab-content .tab-pane .card .card-container {
  min-height: 50rem;
  margin-top: -1rem;
  padding: 60px;
  background: #051744;
}
@media (max-width: 992px) {
  .cid-vi3eagJAsd .tab-content .tab-pane .card .card-container {
    margin-top: 0;
    height: auto;
    padding: 30px;
  }
}
.cid-vi3eagJAsd .tab-content .tab-pane .card .card-container .mbr-section-subtitle {
  margin-bottom: 10px;
}
.cid-vi3eagJAsd .tab-content .tab-pane .card .card-container .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vi3eagJAsd .tab-content .tab-pane .card .card-container .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-vi3eagJAsd .tab-content .tab-pane .card .card-container .mbr-text {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-vi3eagJAsd .tab-content .tab-pane .card .card-container .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-vi3eagJAsd .tab-content .tab-pane .card .card-container .mbr-amount {
  margin: 50px 0 20px;
}
@media (max-width: 992px) {
  .cid-vi3eagJAsd .tab-content .tab-pane .card .card-container .mbr-amount {
    margin: 30px 0 12px;
  }
}
.cid-vi3eagJAsd .tab-content .tab-pane .card .card-container .mbr-desc {
  padding-top: 20px;
  border-top: 2px solid #ffffff;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vi3eagJAsd .tab-content .tab-pane .card .card-container .mbr-desc {
    padding-top: 12px;
  }
}
.cid-vi3eagJAsd .nav {
  align-items: center;
}
.cid-vi3eagJAsd .nav-tabs {
  margin-left: 160px;
  border: none;
}
@media (max-width: 992px) {
  .cid-vi3eagJAsd .nav-tabs {
    margin-left: 30px;
  }
}
.cid-vi3eagJAsd .nav-tabs .nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8px;
  height: 8px;
  margin: 6px;
  padding: 0;
  background: transparent;
  border: 1px solid #00acb1;
  border-radius: 50%;
  transition: all .3s ease;
}
.cid-vi3eagJAsd .nav-tabs .nav-link p {
  margin: 0;
  display: none;
  transition: all .3s ease;
}
.cid-vi3eagJAsd .nav-tabs .nav-link.active {
  border: 2px solid #00acb1;
  width: 50px;
  height: 50px;
  transition: all .3s ease;
}
.cid-vi3eagJAsd .nav-tabs .nav-link.active p {
  display: block;
  color: #051744;
  transition: all .3s ease;
  font-size: 21px;
  pointer-events: none;
}
.cid-vi3eagJAsd .mbr-section-title {
  color: #FFFFFF;
}
.cid-vi3eagJAsd .mbr-section-subtitle {
  color: #FFFFFF;
}
.cid-vi3eagJAsd .mbr-text {
  color: #FFFFFF;
}
.cid-vi3eagJAsd .mbr-amount {
  color: #FFFFFF;
}
.cid-vi3eagJAsd .mbr-desc {
  color: #FFFFFF;
}
.cid-vi3eaipDhU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vi3eaipDhU .icon-transition span {
  align-items: center;
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #000000;
  display: flex;
  justify-content: center;
  line-height: 3em;
  width: 74px;
  height: 74px;
  background: #87e4db none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-vi3eaipDhU .mbr-iconfont {
  align-items: center;
}
.cid-vi3eaipDhU .mbr-iconfont:before {
  font-size: 30px;
  display: flex;
  justify-content: center;
}
.cid-vi3eaipDhU .social-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-vi3eaipDhU .icon-transition span:hover {
  background-color: #000000;
  color: #87e4db;
}
.cid-vi3eaipDhU .social-media {
  padding: 0;
}
.cid-vi3eaipDhU .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-vi3eaipDhU .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-vi3eaipDhU .mbr-list,
.cid-vi3eaipDhU .social-media UL {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-vi3eaipDhU .social-list {
    text-align: center !important;
  }
}
.cid-vi3eaipDhU .mbr-section-title,
.cid-vi3eaipDhU .social-list {
  color: #00acb1;
}
#custom-html-q0 {
  /* Type valid CSS here */
}
#custom-html-q0 div {
  padding: 50px 0;
  color: #73c4bd;
  text-align: center;
}
#custom-html-q0 p {
  font-size: 60px;
  color: #73c4bd;
}
.cid-viTxsqoKjr {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-viTxsqoKjr .mbr-fallback-image.disabled {
  display: none;
}
.cid-viTxsqoKjr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viTxsqoKjr .row {
  margin: 0 -15px;
}
.cid-viTxsqoKjr .row .card {
  padding: 0 15px;
}
.cid-viTxsqoKjr .title-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-viTxsqoKjr .title-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-viTxsqoKjr .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-viTxsqoKjr .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-viTxsqoKjr .items-wrapper .item {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-viTxsqoKjr .items-wrapper .item {
    margin-bottom: 40px;
  }
}
.cid-viTxsqoKjr .items-wrapper .item:last-child {
  margin-bottom: 0;
}
.cid-viTxsqoKjr .items-wrapper .item .item-wrapper .item-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 1px solid #fefff5;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-viTxsqoKjr .items-wrapper .item .item-wrapper .item-number {
    margin-bottom: 20px;
  }
}
.cid-viTxsqoKjr .items-wrapper .item .item-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-viTxsqoKjr .items-wrapper .item .item-title {
    margin-bottom: 20px;
  }
}
.cid-viTxsqoKjr .items-wrapper .item .item-text {
  margin-bottom: 20px;
}
.cid-viTxsqoKjr .items-wrapper .item .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-viTxsqoKjr .mbr-section-title {
  color: #fefff5;
}
.cid-viTxsqoKjr .mbr-section-subtitle {
  color: #a1a1a1;
}
.cid-viTxsqoKjr .item-number {
  color: #fefff5;
}
.cid-viTxsqoKjr .item-title {
  color: #fefff5;
}
.cid-viTxsqoKjr .item-text {
  color: #fefff5;
}
.cid-vi3eajy62I .google-map {
  height: 25rem;
  position: relative;
}
.cid-vi3eajy62I .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vi3eajy62I .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-vi3eajy62I .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vi3eajy62I .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-viDaHQZ6HO {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-viDaHQZ6HO .mbr-fallback-image.disabled {
  display: none;
}
.cid-viDaHQZ6HO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-viDaHQZ6HO .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-viDaHQZ6HO .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-viDaHQZ6HO .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-viDaHQZ6HO .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-viDaHQZ6HO .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-viDaHQZ6HO .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-viDaHQZ6HO .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-viDaHQZ6HO .text-wrapper {
    margin: 0 30px;
  }
}
.cid-viDaHQZ6HO .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-viDaHQZ6HO .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-viDaHQZ6HO .mbr-section-title {
  color: #FFFFFF;
}
.cid-viDaHQZ6HO .mbr-section-title,
.cid-viDaHQZ6HO .mbr-section-btn {
  text-align: center;
}
.cid-vi3iahtaCn .google-map {
  height: 25rem;
  position: relative;
}
.cid-vi3iahtaCn .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vi3iahtaCn .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  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-vi3iahtaCn .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vi3iahtaCn .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-vi3eak5uJR {
  background-color: #efefec;
}
.cid-vi3eak5uJR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vi3eak5uJR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vi3eak5uJR .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-vi3eak5uJR .row {
  align-items: center;
}
.cid-vi3eak5uJR .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-vi3eak5uJR .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-vi3eak5uJR .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-vi3eak5uJR .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-vi3eak5uJR .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-vi3eak5uJR .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-vi3eak5uJR .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-vi3eak5uJR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-vi3eak5uJR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vi3eak5uJR .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vi3eak5uJR .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-vi3eak5uJR .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-vi3eak5uJR .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-vi3eak5uJR .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-vi3eak5uJR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-vi3eak5uJR .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vi3eak5uJR .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-vi3eak5uJR .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-vi3eak5uJR .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-vi3eak5uJR .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-vi3eak5uJR .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-vi3eak5uJR .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-vi3eak5uJR .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-vi3eak5uJR .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-vi3eak5uJR .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-vi3eak5uJR .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-vi3eak5uJR .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-vi3eak5uJR .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-vi3eak5uJR .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-vi3eak5uJR .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-vi3eak5uJR .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-vi3eak5uJR .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-vi3eak5uJR .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-vi3eak5uJR .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vi3eak5uJR .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-vi3eak5uJR .contact-container {
    width: 100%;
  }
}
.cid-vi3eak5uJR .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-vi3eak5uJR .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-vi3eak5uJR .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-vi3eak5uJR .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-vi3eak5uJR .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-vi3eak5uJR .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-vi3eak5uJR .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-vi3eak5uJR .copyright {
  color: #efefec;
}
.cid-vi3eak5uJR .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-vi3eak5uJR .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-vi3eak5uJR .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-vi3eabhY2E {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-vi3eabhY2E .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-vi3eabhY2E nav.navbar {
  position: fixed;
}
.cid-vi3eabhY2E .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vi3eabhY2E .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vi3eabhY2E .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vi3eabhY2E .dropdown-item:hover,
.cid-vi3eabhY2E .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-vi3eabhY2E .dropdown-item:hover span {
  color: white;
}
.cid-vi3eabhY2E .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vi3eabhY2E .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vi3eabhY2E .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vi3eabhY2E .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vi3eabhY2E .nav-link {
  position: relative;
}
.cid-vi3eabhY2E .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vi3eabhY2E .container {
    flex-wrap: nowrap;
  }
}
.cid-vi3eabhY2E .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vi3eabhY2E .dropdown-menu,
.cid-vi3eabhY2E .navbar.opened {
  background: #ffffff !important;
}
.cid-vi3eabhY2E .nav-item:focus,
.cid-vi3eabhY2E .nav-link:focus {
  outline: none;
}
.cid-vi3eabhY2E .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vi3eabhY2E .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vi3eabhY2E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vi3eabhY2E .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vi3eabhY2E .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vi3eabhY2E .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vi3eabhY2E .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vi3eabhY2E .navbar.opened {
  transition: all 0.3s;
}
.cid-vi3eabhY2E .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vi3eabhY2E .navbar .navbar-logo img {
  width: auto;
}
.cid-vi3eabhY2E .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vi3eabhY2E .navbar.collapsed {
  justify-content: center;
}
.cid-vi3eabhY2E .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vi3eabhY2E .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vi3eabhY2E .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-vi3eabhY2E .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vi3eabhY2E .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vi3eabhY2E .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vi3eabhY2E .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vi3eabhY2E .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vi3eabhY2E .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vi3eabhY2E .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vi3eabhY2E .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vi3eabhY2E .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vi3eabhY2E .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vi3eabhY2E .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vi3eabhY2E .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vi3eabhY2E .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vi3eabhY2E .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vi3eabhY2E .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vi3eabhY2E .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vi3eabhY2E .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vi3eabhY2E .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vi3eabhY2E .navbar.navbar-short {
  min-height: 80px;
}
.cid-vi3eabhY2E .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vi3eabhY2E .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vi3eabhY2E .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vi3eabhY2E .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vi3eabhY2E .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vi3eabhY2E .dropdown-item.active,
.cid-vi3eabhY2E .dropdown-item:active {
  background-color: transparent;
}
.cid-vi3eabhY2E .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vi3eabhY2E .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vi3eabhY2E .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vi3eabhY2E .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vi3eabhY2E .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vi3eabhY2E .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vi3eabhY2E ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vi3eabhY2E .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vi3eabhY2E button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vi3eabhY2E button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-vi3eabhY2E button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vi3eabhY2E button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vi3eabhY2E button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vi3eabhY2E button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vi3eabhY2E nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vi3eabhY2E nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vi3eabhY2E nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vi3eabhY2E nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vi3eabhY2E .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vi3eabhY2E a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vi3eabhY2E .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vi3eabhY2E .navbar {
    height: 70px;
  }
  .cid-vi3eabhY2E .navbar.opened {
    height: auto;
  }
  .cid-vi3eabhY2E .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vilqZS086X {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vilqZS086X .mbr-fallback-image.disabled {
  display: none;
}
.cid-vilqZS086X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vilqZS086X .content-wrap {
  width: -webkit-fill-available;
  min-width: -moz-available;
  align-items: center;
}
.cid-vilqZS086X .mbr-section-title {
  margin-bottom: 32px;
  color: #0a0a0a;
}
.cid-vilqZS086X .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vilqZS086X .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vilqZS086X .mbr-section-btn {
  margin-top: 24px;
}
.cid-vilqZS086X .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-vilqZS086X .image-wrapper {
    margin-top: 32px;
  }
}
.cid-vilqZS086X .image-wrapper .decor-wrap {
  display: grid;
  position: absolute;
  grid-template-rows: repeat(3, 28px);
  grid-template-columns: repeat(3, minmax(28px, 1fr));
  grid-auto-rows: 28px;
  justify-content: center;
  gap: 0;
  pointer-events: none;
  will-change: transform;
  animation: none !important;
}
.cid-vilqZS086X .image-wrapper .decor-wrap .item-decor {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  box-shadow: 0 -28px 0 #ffffff;
  transform: none;
}
.cid-vilqZS086X .image-wrapper .decor-wrap .decor-opacity {
  background-color: transparent;
  box-shadow: none;
}
.cid-vilqZS086X .image-wrapper .decor_1 {
  top: -1px;
  left: -1px;
}
.cid-vilqZS086X .image-wrapper .decor_2 {
  grid-template-rows: none;
  top: -1px;
  right: -1px;
}
.cid-vilqZS086X .image-wrapper .image-wrap img {
  height: 575px;
  width: 100%;
  object-fit: cover;
  animation: none;
}
@media (max-width: 992px) {
  .cid-vilqZS086X .image-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-vilqZS086X .mbr-text {
  color: #0a0a0a;
}
.cid-vilqZS086X .mbr-section-title,
.cid-vilqZS086X .mbr-section-btn,
.cid-vilqZS086X .title-wrapper {
  color: #00acb1;
}
.cid-vi3eak5uJR {
  background-color: #efefec;
}
.cid-vi3eak5uJR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vi3eak5uJR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vi3eak5uJR .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-vi3eak5uJR .row {
  align-items: center;
}
.cid-vi3eak5uJR .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-vi3eak5uJR .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-vi3eak5uJR .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-vi3eak5uJR .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-vi3eak5uJR .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-vi3eak5uJR .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-vi3eak5uJR .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-vi3eak5uJR .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-vi3eak5uJR .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vi3eak5uJR .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vi3eak5uJR .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-vi3eak5uJR .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-vi3eak5uJR .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-vi3eak5uJR .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-vi3eak5uJR .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-vi3eak5uJR .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vi3eak5uJR .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-vi3eak5uJR .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-vi3eak5uJR .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-vi3eak5uJR .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-vi3eak5uJR .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-vi3eak5uJR .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-vi3eak5uJR .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-vi3eak5uJR .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-vi3eak5uJR .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-vi3eak5uJR .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-vi3eak5uJR .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-vi3eak5uJR .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-vi3eak5uJR .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-vi3eak5uJR .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-vi3eak5uJR .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-vi3eak5uJR .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-vi3eak5uJR .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-vi3eak5uJR .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vi3eak5uJR .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-vi3eak5uJR .contact-container {
    width: 100%;
  }
}
.cid-vi3eak5uJR .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-vi3eak5uJR .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-vi3eak5uJR .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-vi3eak5uJR .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-vi3eak5uJR .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-vi3eak5uJR .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-vi3eak5uJR .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-vi3eak5uJR .copyright {
  color: #efefec;
}
.cid-vi3eak5uJR .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-vi3eak5uJR .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-vi3eak5uJR .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-vo5KwPDE0M {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-vo5KwPDE0M .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-vo5KwPDE0M nav.navbar {
  position: fixed;
}
.cid-vo5KwPDE0M .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vo5KwPDE0M .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vo5KwPDE0M .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vo5KwPDE0M .dropdown-item:hover,
.cid-vo5KwPDE0M .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-vo5KwPDE0M .dropdown-item:hover span {
  color: white;
}
.cid-vo5KwPDE0M .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vo5KwPDE0M .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vo5KwPDE0M .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vo5KwPDE0M .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vo5KwPDE0M .nav-link {
  position: relative;
}
.cid-vo5KwPDE0M .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vo5KwPDE0M .container {
    flex-wrap: nowrap;
  }
}
.cid-vo5KwPDE0M .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-vo5KwPDE0M .dropdown-menu,
.cid-vo5KwPDE0M .navbar.opened {
  background: #ffffff !important;
}
.cid-vo5KwPDE0M .nav-item:focus,
.cid-vo5KwPDE0M .nav-link:focus {
  outline: none;
}
.cid-vo5KwPDE0M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vo5KwPDE0M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vo5KwPDE0M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vo5KwPDE0M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vo5KwPDE0M .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vo5KwPDE0M .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vo5KwPDE0M .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-vo5KwPDE0M .navbar.opened {
  transition: all 0.3s;
}
.cid-vo5KwPDE0M .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vo5KwPDE0M .navbar .navbar-logo img {
  width: auto;
}
.cid-vo5KwPDE0M .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vo5KwPDE0M .navbar.collapsed {
  justify-content: center;
}
.cid-vo5KwPDE0M .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vo5KwPDE0M .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vo5KwPDE0M .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-vo5KwPDE0M .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vo5KwPDE0M .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vo5KwPDE0M .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vo5KwPDE0M .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vo5KwPDE0M .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vo5KwPDE0M .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vo5KwPDE0M .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vo5KwPDE0M .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vo5KwPDE0M .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vo5KwPDE0M .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vo5KwPDE0M .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vo5KwPDE0M .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vo5KwPDE0M .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vo5KwPDE0M .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vo5KwPDE0M .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vo5KwPDE0M .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vo5KwPDE0M .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vo5KwPDE0M .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vo5KwPDE0M .navbar.navbar-short {
  min-height: 80px;
}
.cid-vo5KwPDE0M .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-vo5KwPDE0M .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-vo5KwPDE0M .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vo5KwPDE0M .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vo5KwPDE0M .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vo5KwPDE0M .dropdown-item.active,
.cid-vo5KwPDE0M .dropdown-item:active {
  background-color: transparent;
}
.cid-vo5KwPDE0M .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vo5KwPDE0M .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vo5KwPDE0M .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vo5KwPDE0M .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vo5KwPDE0M .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vo5KwPDE0M .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vo5KwPDE0M ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vo5KwPDE0M .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-vo5KwPDE0M button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vo5KwPDE0M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-vo5KwPDE0M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vo5KwPDE0M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vo5KwPDE0M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vo5KwPDE0M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vo5KwPDE0M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vo5KwPDE0M nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vo5KwPDE0M nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vo5KwPDE0M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vo5KwPDE0M .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vo5KwPDE0M a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vo5KwPDE0M .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vo5KwPDE0M .navbar {
    height: 70px;
  }
  .cid-vo5KwPDE0M .navbar.opened {
    height: auto;
  }
  .cid-vo5KwPDE0M .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vo5KwQ4A23 {
  background-image: url("../../../assets/images/mbr-7-1920x1280.jpeg");
}
.cid-vo5KwQ4A23 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vo5KwQ4A23 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vo5KwQ4A23 .mbr-section-title {
  color: #FFFFFF;
}
.cid-vo5KwQ4A23 .mbr-section-subtitle {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-vo5KwQ4A23 .mbr-text {
  color: #FFFFFF;
  margin-top: 20px;
}
.cid-vo5KwQ4A23 .mbr-section-btn {
  margin-top: 18px;
}
.cid-vo5KwQ4A23 .mbr-section-btn .btn.btn-white {
  background-color: transparent !important;
  border-color: #FFFFFF !important;
}
.cid-vo5KwQ4A23 .mbr-section-btn .btn.btn-black {
  background-color: transparent !important;
  border-color: #303030 !important;
}
.cid-vo5KwQrGN3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff2fb;
}
.cid-vo5KwQrGN3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vo5KwQrGN3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vo5KwQrGN3 .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-vo5KwQrGN3 .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-vo5KwQrGN3 .container {
    padding: 0 24px;
  }
}
.cid-vo5KwQrGN3 .row {
  justify-content: center;
}
.cid-vo5KwQrGN3 .row .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-vo5KwQrGN3 .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vo5KwQrGN3 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vo5KwQrGN3 .box .mbr-media img {
  height: 550px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vo5KwQrGN3 .box .mbr-media img {
    height: 350px;
  }
}
.cid-vo5KwQrGN3 .box .mbr-media .mbr-iconfont {
  color: #00acb1;
}
.cid-vo5KwQrGN3 .mbr-media {
  position: relative;
}
.cid-vo5KwQrGN3 .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-vo5KwQrGN3 a:hover {
  background-image: none !important;
}
.cid-vo5KwQrGN3 .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-vo5KwQrGN3 .icon-wrap:hover {
  cursor: pointer;
}
.cid-vo5KwQrGN3 .mbr-media span {
  font-size: 5rem;
  transition: all 0.2s;
}
.cid-vo5KwQrGN3 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-vo5KwQrGN3 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-vo5KwQrGN3 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-vo5KwQrGN3 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 1.5rem;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-vo5KwQrGN3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-vo5KwQrGN3 .mbr-section-title {
  color: #00acb1;
  text-align: left;
}
.cid-vo5KwQWpAG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #00acb1;
}
.cid-vo5KwQWpAG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vo5KwQWpAG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vo5KwQWpAG .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-vo5KwQWpAG .text-wrapper {
    margin: 0 30px;
  }
}
.cid-vo5KwQWpAG .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-vo5KwQWpAG .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-vo5KwQWpAG .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vo5KwQWpAG .text-wrapper .mbr-text {
  margin: 40px 0 0 0;
}
@media (max-width: 992px) {
  .cid-vo5KwQWpAG .text-wrapper .mbr-text {
    margin: 20px 0 0 0;
  }
}
.cid-vo5KwQWpAG .mbr-section-title {
  color: #FFFFFF;
}
.cid-vo5KwQWpAG .mbr-desc {
  color: #FFFFFF;
}
.cid-vo5KwQWpAG .mbr-text {
  color: #FFFFFF;
}
.cid-vo5KwRhiSd {
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vo5KwRhiSd .container-fluid {
  padding: 0;
}
.cid-vo5KwRhiSd .content-wrapper .text {
  padding: 100px 2rem;
}
@media (min-width: 768px) {
  .cid-vo5KwRhiSd .content-wrapper .text {
    padding: 145px 60px;
  }
}
@media (min-width: 1200px) {
  .cid-vo5KwRhiSd .content-wrapper .text {
    padding: 140px 130px;
  }
}
@media (min-width: 1400px) {
  .cid-vo5KwRhiSd .content-wrapper .text {
    padding: 200px 190px;
  }
}
.cid-vo5KwRhiSd .content-wrapper .image-wrapper {
  height: 100%;
}
.cid-vo5KwRhiSd .content-wrapper .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vo5KwRhiSd .display-4 > .mbr-iconfont {
  font-size: 11.6px;
  margin-left: 10px;
}
.cid-vo5KwRhiSd .mbr-iconfont {
  font-weight: 700;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
}
.cid-vo5KwRhiSd .link-title:hover .mbr-iconfont {
  background: #FFFF27;
}
.cid-vo5KwRhiSd .card-title {
  color: #00acb1;
}
.cid-vo5MobUzgE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vo5MobUzgE .row {
    flex-direction: column-reverse;
  }
}
.cid-vo5MobUzgE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vo5MobUzgE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vo5MobUzgE .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-vo5MobUzgE .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-vo5MobUzgE .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-vo5MobUzgE .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-vo5MobUzgE .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-vo5MobUzgE .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-vo5MobUzgE .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-vo5MobUzgE .text-wrapper {
    margin: 0 30px;
  }
}
.cid-vo5MobUzgE .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-vo5MobUzgE .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-vo5MobUzgE .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-vo5MobUzgE .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-vo5MobUzgE .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-vo5MobUzgE .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vo5MobUzgE .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-vo5MobUzgE .image-wrapper img {
    min-height: 100%;
  }
}
.cid-vo5MobUzgE .mbr-section-title {
  color: #000000;
}
.cid-vo5MobUzgE .mbr-text {
  color: #000000;
}
.cid-vo5MobUzgE .mbr-section-title,
.cid-vo5MobUzgE .mbr-section-btn {
  color: #00acb1;
}
.cid-vo5NRxgVcV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vo5NRxgVcV .row {
    flex-direction: column-reverse;
  }
}
.cid-vo5NRxgVcV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vo5NRxgVcV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vo5NRxgVcV .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-vo5NRxgVcV .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-vo5NRxgVcV .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-vo5NRxgVcV .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-vo5NRxgVcV .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-vo5NRxgVcV .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-vo5NRxgVcV .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-vo5NRxgVcV .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-vo5NRxgVcV .text-wrapper {
    margin: 0 30px;
  }
}
.cid-vo5NRxgVcV .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-vo5NRxgVcV .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-vo5NRxgVcV .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-vo5NRxgVcV .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-vo5NRxgVcV .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-vo5NRxgVcV .image-wrapper {
    margin: 30px;
  }
}
.cid-vo5NRxgVcV .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vo5NRxgVcV .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-vo5NRxgVcV .image-wrapper img {
    min-height: 100%;
  }
}
.cid-vo5NRxgVcV .mbr-section-title {
  color: #000000;
}
.cid-vo5NRxgVcV .mbr-text {
  color: #000000;
}
.cid-vo5NRxgVcV .mbr-section-title,
.cid-vo5NRxgVcV .mbr-section-btn {
  color: #00acb1;
}
.cid-vpp5cw2VL4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vpp5cw2VL4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpp5cw2VL4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpp5cw2VL4 .content-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 9px 14px;
  margin-bottom: 20px;
  background-color: #deeff8;
}
.cid-vpp5cw2VL4 .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
}
@media (max-width: 1440px) {
  .cid-vpp5cw2VL4 .content-wrapper .title-wrapper .mbr-section-title {
    width: 75%;
  }
}
@media (max-width: 992px) {
  .cid-vpp5cw2VL4 .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vpp5cw2VL4 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-vpp5cw2VL4 .content-wrapper .text-wrapper .mbr-text {
    width: 65%;
  }
}
@media (max-width: 992px) {
  .cid-vpp5cw2VL4 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vpp5cw2VL4 .content-wrapper .mbr-section-btn {
  margin-top: 20px;
}
.cid-vpp5cw2VL4 .content-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-vpp5cw2VL4 .mbr-label,
.cid-vpp5cw2VL4 .label-wrapper {
  color: #116e99;
  text-align: center;
}
.cid-vpp5cw2VL4 .mbr-section-title {
  color: #000000;
}
.cid-vpp5cw2VL4 .mbr-text,
.cid-vpp5cw2VL4 .text-wrapper {
  color: #16324f;
  text-align: center;
}
.cid-vpp5cw2VL4 .mbr-section-title,
.cid-vpp5cw2VL4 .mbr-section-btn,
.cid-vpp5cw2VL4 .title-wrapper {
  text-align: center;
  color: #00acb1;
}
.cid-vpp5dMZ2Au {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-vpp5dMZ2Au .mbr-section-title {
  margin-bottom: 50px;
}
.cid-vpp5dMZ2Au .container-table {
  margin: 0 auto;
}
.cid-vpp5dMZ2Au .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-vpp5dMZ2Au tbody tr:nth-child(odd) {
  background-color: #f5f4f6;
}
.cid-vpp5dMZ2Au .dataTables_wrapper {
  display: block;
}
.cid-vpp5dMZ2Au .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-vpp5dMZ2Au .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-vpp5dMZ2Au .head-item {
  color: #16324f;
  min-width: 110px;
  letter-spacing: 2px;
}
.cid-vpp5dMZ2Au .body-item {
  color: #212529;
}
.cid-vpp5dMZ2Au .table td,
.cid-vpp5dMZ2Au .table th {
  border: none;
}
.cid-vpp5dMZ2Au table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-vpp5dMZ2Au table th {
  padding: 24px 15px 20px 15px;
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-vpp5dMZ2Au table td {
  padding: 24px 15px 20px 15px;
}
.cid-vpp5dMZ2Au .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-vpp5dMZ2Au .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-vpp5dMZ2Au .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-vpp5dMZ2Au .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-vpp5dMZ2Au .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-vpp5dMZ2Au .dataTables_filter {
    text-align: center;
  }
  .cid-vpp5dMZ2Au .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-vpp5dMZ2Au .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpp5dMZ2Au .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpp5eAeJHC {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-vpp5eAeJHC .mbr-section-subtitle {
  color: #00acb1;
}
.cid-vpp5eAeJHC .container-table {
  margin: 0 auto;
}
.cid-vpp5eAeJHC .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-vpp5eAeJHC .dataTables_wrapper {
  display: block;
}
.cid-vpp5eAeJHC .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-vpp5eAeJHC table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-vpp5eAeJHC table th {
  border-top: 1px solid #cccccc;
  transition: all .2s;
  border-bottom: none;
}
.cid-vpp5eAeJHC table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-vpp5eAeJHC table td {
  border-top: 1px solid #cccccc;
}
.cid-vpp5eAeJHC table td:hover {
  color: #87e4db;
}
.cid-vpp5eAeJHC table tr:last-child td {
  border-bottom: 1px solid #cccccc;
}
.cid-vpp5eAeJHC .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-vpp5eAeJHC .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-vpp5eAeJHC .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-vpp5eAeJHC .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-vpp5eAeJHC .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-vpp5eAeJHC .dataTables_filter {
    text-align: center;
  }
  .cid-vpp5eAeJHC .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-vpp5eAeJHC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vpp5eAeJHC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vpp5eAeJHC .body-item {
  color: #16324f;
}
.cid-vpp5eAeJHC .mbr-section-title {
  color: #00acb1;
}
.cid-vo5KwRDizK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vo5KwRDizK .row {
    flex-direction: column-reverse;
  }
}
.cid-vo5KwRDizK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vo5KwRDizK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vo5KwRDizK .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-vo5KwRDizK .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-vo5KwRDizK .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-vo5KwRDizK .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-vo5KwRDizK .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-vo5KwRDizK .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-vo5KwRDizK .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-vo5KwRDizK .text-wrapper {
    margin: 0 30px;
  }
}
.cid-vo5KwRDizK .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-vo5KwRDizK .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-vo5KwRDizK .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-vo5KwRDizK .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-vo5KwRDizK .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-vo5KwRDizK .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vo5KwRDizK .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-vo5KwRDizK .image-wrapper img {
    min-height: 100%;
  }
}
.cid-vo5KwRDizK .mbr-section-title {
  color: #000000;
}
.cid-vo5KwRDizK .mbr-text {
  color: #000000;
}
.cid-vo5KwRDizK .mbr-section-title,
.cid-vo5KwRDizK .mbr-section-btn {
  color: #00acb1;
}
.cid-vo6c4LT5I2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vo6c4LT5I2 .row {
    flex-direction: column-reverse;
  }
}
.cid-vo6c4LT5I2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vo6c4LT5I2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vo6c4LT5I2 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-vo6c4LT5I2 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-vo6c4LT5I2 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-vo6c4LT5I2 .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-vo6c4LT5I2 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #87e4db !important;
}
.cid-vo6c4LT5I2 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-vo6c4LT5I2 .text-wrapper {
  margin-left: 160px;
  position: relative;
  margin-left: 0;
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-vo6c4LT5I2 .text-wrapper {
    margin: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-vo6c4LT5I2 .text-wrapper {
    margin: 0 30px;
  }
}
.cid-vo6c4LT5I2 .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-vo6c4LT5I2 .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-vo6c4LT5I2 .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-vo6c4LT5I2 .image-wrapper {
  margin-left: 200px;
  margin-left: 0;
  margin-right: 200px;
}
@media (max-width: 992px) {
  .cid-vo6c4LT5I2 .image-wrapper {
    margin: 0 30px 30px;
  }
}
@media (max-width: 992px) {
  .cid-vo6c4LT5I2 .image-wrapper {
    margin: 30px;
  }
}
.cid-vo6c4LT5I2 .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-vo6c4LT5I2 .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-vo6c4LT5I2 .image-wrapper img {
    min-height: 100%;
  }
}
.cid-vo6c4LT5I2 .mbr-section-title {
  color: #000000;
}
.cid-vo6c4LT5I2 .mbr-text {
  color: #000000;
}
.cid-vo6c4LT5I2 .mbr-section-title,
.cid-vo6c4LT5I2 .mbr-section-btn {
  color: #00acb1;
}
.cid-vo6dlkhktp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-vo6dlkhktp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vo6dlkhktp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vo6dlkhktp .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-vo6dlkhktp .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vo6dlkhktp .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vo6dlkhktp .content-wrapper .mbr-section-btn {
  margin-top: 20px;
  margin-bottom: -9.6px;
}
@media (max-width: 992px) {
  .cid-vo6dlkhktp .content-wrapper .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-vo6dlkhktp .image-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vo6dlkhktp .image-wrapper {
    margin-top: 30px;
  }
}
.cid-vo6dlkhktp .image-wrapper img {
  display: inline-flex;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 8px solid #00acb1;
}
.cid-vo6dlkhktp .mbr-section-title {
  color: #3a353e;
}
.cid-vo6dlkhktp .mbr-text {
  color: #3a353e;
}
.cid-vo6dlkhktp .mbr-section-title,
.cid-vo6dlkhktp .mbr-section-btn {
  color: #00acb1;
}
.cid-vo6eUtRLCl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vo6eUtRLCl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vo6eUtRLCl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vo6eUtRLCl .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-vo6eUtRLCl .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vo6eUtRLCl .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vo6eUtRLCl .content-wrapper .mbr-section-btn {
  margin-top: 20px;
  margin-bottom: -9.6px;
}
@media (max-width: 992px) {
  .cid-vo6eUtRLCl .content-wrapper .mbr-section-btn {
    margin-top: 10px;
  }
}
.cid-vo6eUtRLCl .image-wrapper {
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vo6eUtRLCl .image-wrapper {
    margin-top: 30px;
  }
}
.cid-vo6eUtRLCl .image-wrapper img {
  display: inline-flex;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 8px solid #ffffff;
}
.cid-vo6eUtRLCl .mbr-section-title {
  color: #3a353e;
}
.cid-vo6eUtRLCl .mbr-text {
  color: #3a353e;
}
.cid-vo6eUtRLCl .mbr-section-title,
.cid-vo6eUtRLCl .mbr-section-btn {
  color: #00acb1;
}
.cid-vo5KwRYNW4 {
  background-color: #efefec;
}
.cid-vo5KwRYNW4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vo5KwRYNW4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vo5KwRYNW4 .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-vo5KwRYNW4 .row {
  align-items: center;
}
.cid-vo5KwRYNW4 .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-vo5KwRYNW4 .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-vo5KwRYNW4 .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-vo5KwRYNW4 .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-vo5KwRYNW4 .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-vo5KwRYNW4 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-vo5KwRYNW4 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-vo5KwRYNW4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-vo5KwRYNW4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vo5KwRYNW4 .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vo5KwRYNW4 .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-vo5KwRYNW4 .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-vo5KwRYNW4 .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-vo5KwRYNW4 .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-vo5KwRYNW4 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-vo5KwRYNW4 .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vo5KwRYNW4 .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-vo5KwRYNW4 .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-vo5KwRYNW4 .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-vo5KwRYNW4 .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-vo5KwRYNW4 .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-vo5KwRYNW4 .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-vo5KwRYNW4 .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-vo5KwRYNW4 .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-vo5KwRYNW4 .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-vo5KwRYNW4 .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-vo5KwRYNW4 .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-vo5KwRYNW4 .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-vo5KwRYNW4 .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-vo5KwRYNW4 .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-vo5KwRYNW4 .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-vo5KwRYNW4 .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-vo5KwRYNW4 .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-vo5KwRYNW4 .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-vo5KwRYNW4 .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-vo5KwRYNW4 .contact-container {
    width: 100%;
  }
}
.cid-vo5KwRYNW4 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-vo5KwRYNW4 .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-vo5KwRYNW4 .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-vo5KwRYNW4 .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-vo5KwRYNW4 .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-vo5KwRYNW4 .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-vo5KwRYNW4 .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-vo5KwRYNW4 .copyright {
  color: #efefec;
}
.cid-vo5KwRYNW4 .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-vo5KwRYNW4 .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-vo5KwRYNW4 .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tIfrcI6D4f {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 80px;
}
.cid-tIfrcI6D4f .btn {
  padding: 0.6rem 2rem;
  border: none !important;
  font-weight: 400;
  box-shadow: none;
}
.cid-tIfrcI6D4f nav.navbar {
  position: fixed;
}
.cid-tIfrcI6D4f .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIfrcI6D4f .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tIfrcI6D4f .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tIfrcI6D4f .dropdown-item:hover,
.cid-tIfrcI6D4f .dropdown-item:focus {
  background: #87e4db !important;
  color: white !important;
}
.cid-tIfrcI6D4f .dropdown-item:hover span {
  color: white;
}
.cid-tIfrcI6D4f .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tIfrcI6D4f .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tIfrcI6D4f .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tIfrcI6D4f .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tIfrcI6D4f .nav-link {
  position: relative;
}
.cid-tIfrcI6D4f .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tIfrcI6D4f .container {
    flex-wrap: nowrap;
  }
}
.cid-tIfrcI6D4f .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tIfrcI6D4f .dropdown-menu,
.cid-tIfrcI6D4f .navbar.opened {
  background: #ffffff !important;
}
.cid-tIfrcI6D4f .nav-item:focus,
.cid-tIfrcI6D4f .nav-link:focus {
  outline: none;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tIfrcI6D4f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tIfrcI6D4f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tIfrcI6D4f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tIfrcI6D4f .navbar {
  min-height: 80px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tIfrcI6D4f .navbar.opened {
  transition: all 0.3s;
}
.cid-tIfrcI6D4f .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tIfrcI6D4f .navbar .navbar-logo img {
  width: auto;
}
.cid-tIfrcI6D4f .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tIfrcI6D4f .navbar.collapsed {
  justify-content: center;
}
.cid-tIfrcI6D4f .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tIfrcI6D4f .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tIfrcI6D4f .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.7rem);
  }
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tIfrcI6D4f .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tIfrcI6D4f .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tIfrcI6D4f .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tIfrcI6D4f .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tIfrcI6D4f .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tIfrcI6D4f .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tIfrcI6D4f .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tIfrcI6D4f .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tIfrcI6D4f .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tIfrcI6D4f .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tIfrcI6D4f .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tIfrcI6D4f .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tIfrcI6D4f .navbar.navbar-short {
  min-height: 80px;
}
.cid-tIfrcI6D4f .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tIfrcI6D4f .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tIfrcI6D4f .navbar-brand {
  min-height: 80px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tIfrcI6D4f .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tIfrcI6D4f .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tIfrcI6D4f .dropdown-item.active,
.cid-tIfrcI6D4f .dropdown-item:active {
  background-color: transparent;
}
.cid-tIfrcI6D4f .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tIfrcI6D4f .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tIfrcI6D4f .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tIfrcI6D4f .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tIfrcI6D4f .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tIfrcI6D4f .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIfrcI6D4f ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tIfrcI6D4f .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tIfrcI6D4f button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #00acb1;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tIfrcI6D4f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tIfrcI6D4f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tIfrcI6D4f .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tIfrcI6D4f a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tIfrcI6D4f .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tIfrcI6D4f .navbar {
    height: 70px;
  }
  .cid-tIfrcI6D4f .navbar.opened {
    height: auto;
  }
  .cid-tIfrcI6D4f .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vqPIF3e1yP {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #00acb1;
}
.cid-vqPIF3e1yP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqPIF3e1yP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vqPIF3e1yP .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-vqPIF3e1yP .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-vqPIF3e1yP .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-vqPIF3e1yP .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-vqPIF3e1yP .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #16324f !important;
}
.cid-vqPIF3e1yP .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-vqPIF3e1yP .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-vqPIF3e1yP .text-wrapper {
    margin: 0 30px;
  }
}
.cid-vqPIF3e1yP .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-vqPIF3e1yP .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-vqPIF3e1yP .mbr-section-title {
  color: #FFFFFF;
}
.cid-vqPIF3e1yP .mbr-section-title,
.cid-vqPIF3e1yP .mbr-section-btn {
  text-align: center;
}
#custom-html-ru {
  /* Type valid CSS here */
}
#custom-html-ru div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-ru p {
  font-size: 60px;
  color: #777;
}
.cid-tHiCn2mQbp {
  background-color: #efefec;
}
.cid-tHiCn2mQbp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHiCn2mQbp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHiCn2mQbp .footer-head {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 2px solid #dfdfd8;
}
.cid-tHiCn2mQbp .row {
  align-items: center;
}
.cid-tHiCn2mQbp .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tHiCn2mQbp .col-brand {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .col-brand {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .col-brand {
    width: 100%;
    margin: 0 0 60px;
  }
}
.cid-tHiCn2mQbp .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
  white-space: normal;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 600 !important;
}
.cid-tHiCn2mQbp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHiCn2mQbp .brand-text {
  margin-top: 40px;
  margin-bottom: 0;
  color: #2A2A2A;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .brand-text {
    margin-top: 16px;
    max-width: 254px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .brand-text {
    max-width: 244px;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .brand-text {
    max-width: 100%;
    margin-top: 40px;
  }
}
.cid-tHiCn2mQbp .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cid-tHiCn2mQbp .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-tHiCn2mQbp .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tHiCn2mQbp .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #000000 !important;
}
.cid-tHiCn2mQbp .col-links {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .col-links {
    width: 50%;
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .col-links {
    width: 100%;
    padding: 0 !important;
    order: 5;
    margin: 40px 0 0;
  }
}
.cid-tHiCn2mQbp .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  margin: 0 auto;
  list-style: none;
  padding-left: 0;
  color: #00acb1;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .list {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
  }
}
.cid-tHiCn2mQbp .list li {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .list li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .list li {
    width: 50%;
    padding: 0 20px !important;
  }
}
.cid-tHiCn2mQbp .col-contacts {
  padding: 0 20px !important;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .col-contacts {
    display: flex;
    width: 100%;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tHiCn2mQbp .col-contacts {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .col-contacts {
    flex-wrap: wrap;
  }
}
.cid-tHiCn2mQbp .contact-text {
  width: 100%;
  color: #2A2A2A;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .contact-text {
    width: 50%;
    padding: 0 20px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .contact-text {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-tHiCn2mQbp .contact-container {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tHiCn2mQbp .contact-container {
    width: 50%;
    padding: 0 20px !important;
  }
}
@media (max-width: 575px) {
  .cid-tHiCn2mQbp .contact-container {
    width: 100%;
  }
}
.cid-tHiCn2mQbp .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 7px;
  margin-right: 10px;
  background-color: #00acb1;
}
.cid-tHiCn2mQbp .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  color: #ffffff;
}
.cid-tHiCn2mQbp .contact-item {
  display: flex;
  align-items: flex-start;
}
.cid-tHiCn2mQbp .contact-item:not(:first-child) {
  margin-top: 20px;
}
.cid-tHiCn2mQbp .contact-item-text {
  color: #2A2A2A;
  flex-grow: 1;
}
.cid-tHiCn2mQbp .footer-copyright {
  position: relative;
  z-index: 11;
  width: 100%;
  background-color: #00acb1;
}
.cid-tHiCn2mQbp .col-copyright {
  width: 100%;
  padding: 20px !important;
}
.cid-tHiCn2mQbp .copyright {
  color: #efefec;
}
.cid-tHiCn2mQbp .circle-blur {
  position: absolute;
  display: block;
  width: 400px;
  height: 400px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 500px;
  opacity: .5;
  -webkit-filter: blur(50px) blur(50px);
  filter: blur(50px) blur(50px);
}
.cid-tHiCn2mQbp .circle-blur1 {
  top: -150px;
  left: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
.cid-tHiCn2mQbp .circle-blur2 {
  bottom: -150px;
  right: -150px;
  background-image: linear-gradient(132deg, #ffffff 27%, #ffffff 50%, #ffffff 79%);
}
