body {
  font-family: Golos Text;
}
.display-1 {
  font-family: 'Golos Text', sans-serif;
  font-size: 4.25rem;
  line-height: 68px;
}
.display-1 > .mbr-iconfont {
  font-size: 5.3125rem;
}
.display-2 {
  font-family: 'Golos Text', sans-serif;
  font-size: 3.125rem;
  line-height: 55px;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Golos Text', sans-serif;
  font-size: 2rem;
  line-height: 38px;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Golos Text', sans-serif;
  font-size: 1.5rem;
  line-height: 31px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- 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.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.975rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 30px;
}
.bg-primary {
  background-color: #181a25 !important;
}
.bg-success {
  background-color: #9a5bed !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #ff9553 !important;
}
.bg-danger {
  background-color: #ff6e53 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #181a25 !important;
  border-color: #181a25 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #9a5bed !important;
  border-color: #9a5bed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #6b18d9 !important;
  border-color: #6b18d9 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #6b18d9 !important;
  border-color: #6b18d9 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff9553 !important;
  border-color: #ff9553 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #fb6000 !important;
  border-color: #fb6000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #fb6000 !important;
  border-color: #fb6000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff6e53 !important;
  border-color: #ff6e53 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #fb2700 !important;
  border-color: #fb2700 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #fb2700 !important;
  border-color: #fb2700 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #181a25;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #181a25 !important;
  border-color: #181a25 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #9a5bed;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #6b18d9 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9a5bed !important;
  border-color: #9a5bed !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9553;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #fb6000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9553 !important;
  border-color: #ff9553 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6e53;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #fb2700 !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: #ff6e53 !important;
  border-color: #ff6e53 !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: #181a25 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #9a5bed !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #ff9553 !important;
}
.text-danger {
  color: #ff6e53 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #6516cc !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ec5b00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ec2500 !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: #181a25;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #ff9553;
}
.alert-danger {
  background-color: #ff6e53;
}
.mbr-gallery-filter li.active .btn {
  background-color: #181a25;
  border-color: #181a25;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #181a25;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c7cadb;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #181a25 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Golos Text', sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #181a25;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #181a25;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #181a25;
}
.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: #181a25;
  border-bottom-color: #181a25;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #181a25 !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: #ffffff !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='%23181a25' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  box-shadow: none;
  border: none;
  min-height: 65px;
  padding: 20px 90px;
}
@media (max-width: 1200px) {
  .mbr-section-btn .btn,
  .mbr-section-btn-main .btn {
    padding: 20px 50px;
  }
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover,
.mbr-section-btn .btn:focus,
.mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-tA5gTKB5Ip .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tA5gTKB5Ip .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tA5gTKB5Ip .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tA5gTKB5Ip .menu_box .navbar.opened,
  .cid-tA5gTKB5Ip .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-tA5gTKB5Ip .navbar-dropdown {
  position: relative !important;
}
.cid-tA5gTKB5Ip .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tA5gTKB5Ip .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tA5gTKB5Ip .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tA5gTKB5Ip .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-tA5gTKB5Ip .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tA5gTKB5Ip .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #181a25;
  }
  .cid-tA5gTKB5Ip .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tA5gTKB5Ip .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tA5gTKB5Ip .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tA5gTKB5Ip .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tA5gTKB5Ip .offcanvas-body .mbr-text,
  .cid-tA5gTKB5Ip .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-tA5gTKB5Ip .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-tA5gTKB5Ip .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tA5gTKB5Ip .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1e6185;
  }
  .cid-tA5gTKB5Ip .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tA5gTKB5Ip .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tA5gTKB5Ip .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tA5gTKB5Ip .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tA5gTKB5Ip ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tA5gTKB5Ip .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tA5gTKB5Ip .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tA5gTKB5Ip .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tA5gTKB5Ip li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-tA5gTKB5Ip .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tA5gTKB5Ip .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tA5gTKB5Ip .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tA5gTKB5Ip .nav-item {
    margin: 0 !important;
  }
}
.cid-tA5gTKB5Ip .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.cid-tA5gTKB5Ip .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #181a25;
  transition: all 0.3s ease-out;
}
.cid-tA5gTKB5Ip .nav-item .nav-link:hover {
  color: #181a25 !important;
}
.cid-tA5gTKB5Ip .nav-item .nav-link:hover::before {
  width: 100%;
}
.cid-tA5gTKB5Ip .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tA5gTKB5Ip .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-tA5gTKB5Ip .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-tA5gTKB5Ip .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tA5gTKB5Ip .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tA5gTKB5Ip .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tA5gTKB5Ip .offcanvas_box {
    display: none;
  }
}
.cid-tA5gTKB5Ip .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-tA5gTKB5Ip .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tA5gTKB5Ip .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-tA5gTKB5Ip .container {
  display: flex;
  margin: auto;
}
.cid-tA5gTKB5Ip .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tA5gTKB5Ip .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tA5gTKB5Ip .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-tA5gTKB5Ip .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tA5gTKB5Ip .navbar-nav {
    margin: 0;
  }
}
.cid-tA5gTKB5Ip .dropdown-menu,
.cid-tA5gTKB5Ip .navbar.opened {
  background-color: false !important;
}
.cid-tA5gTKB5Ip .nav-item:focus,
.cid-tA5gTKB5Ip .nav-link:focus {
  outline: none;
}
.cid-tA5gTKB5Ip .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tA5gTKB5Ip .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tA5gTKB5Ip .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tA5gTKB5Ip .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tA5gTKB5Ip .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tA5gTKB5Ip .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tA5gTKB5Ip .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-tA5gTKB5Ip .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-tA5gTKB5Ip .navbar.opened {
  transition: all 0.3s;
}
.cid-tA5gTKB5Ip .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tA5gTKB5Ip .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-tA5gTKB5Ip .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tA5gTKB5Ip .navbar.collapsed {
  justify-content: center;
}
.cid-tA5gTKB5Ip .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tA5gTKB5Ip .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tA5gTKB5Ip .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tA5gTKB5Ip .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tA5gTKB5Ip .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tA5gTKB5Ip .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tA5gTKB5Ip .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tA5gTKB5Ip .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tA5gTKB5Ip .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tA5gTKB5Ip .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tA5gTKB5Ip .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tA5gTKB5Ip .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tA5gTKB5Ip .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tA5gTKB5Ip .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-tA5gTKB5Ip .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tA5gTKB5Ip .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tA5gTKB5Ip .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tA5gTKB5Ip .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tA5gTKB5Ip .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tA5gTKB5Ip .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tA5gTKB5Ip .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tA5gTKB5Ip .navbar.navbar-short {
  min-height: 60px;
}
.cid-tA5gTKB5Ip .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tA5gTKB5Ip .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tA5gTKB5Ip .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tA5gTKB5Ip .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-tA5gTKB5Ip .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tA5gTKB5Ip .dropdown-item.active,
.cid-tA5gTKB5Ip .dropdown-item:active {
  background-color: transparent;
}
.cid-tA5gTKB5Ip .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tA5gTKB5Ip .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tA5gTKB5Ip .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tA5gTKB5Ip .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tA5gTKB5Ip ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-tA5gTKB5Ip .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tA5gTKB5Ip button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #1e6185;
}
.cid-tA5gTKB5Ip button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1e6185;
}
.cid-tA5gTKB5Ip button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tA5gTKB5Ip button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA5gTKB5Ip button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tA5gTKB5Ip button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tA5gTKB5Ip nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA5gTKB5Ip nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tA5gTKB5Ip nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tA5gTKB5Ip nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tA5gTKB5Ip a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tA5gTKB5Ip .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tA5gTKB5Ip .navbar {
    height: 70px;
  }
  .cid-tA5gTKB5Ip .navbar.opened {
    height: auto;
  }
  .cid-tA5gTKB5Ip .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tA5gTKB5Ip .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-tA5gTKB5Ip .container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .cid-tA5gTKB5Ip .container-fluid {
    padding-left: 130px;
    padding-right: 130px;
  }
}
.cid-tA5gTKB5Ip .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-tA5gTKB5Ip .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  padding: 20px 35px;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-tA5gTKB5Ip .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-tA5gTKB5Ip .navbar-caption:hover {
  opacity: .5;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tA5gTKB5Ip .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-tA5gTKB5Ip .text_widget {
  margin-bottom: 32px;
}
.cid-tA5gTKB5Ip .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-tA5gTKB5Ip .text_widget a:hover {
  color: #181a25 !important;
}
.cid-tA5gTKB5Ip .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tA5gTKB5Ip .navbar-caption {
  color: #ffffff;
}
.cid-tA5gTKB5Ip .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-tA5gTKB5Ip .mbr-section-subtitle,
.cid-tA5gTKB5Ip .text_widget,
.cid-tA5gTKB5Ip .mbr-section-btn {
  text-align: left;
}
.cid-tA5gTKB5Ip a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tA5gUnL3Q8 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #000000;
}
.cid-tA5gUnL3Q8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tA5gUnL3Q8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tA5gUnL3Q8 .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tA5gUnL3Q8 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tA5gUnL3Q8 .container {
    padding: 0 20px;
  }
}
.cid-tA5gUnL3Q8 .row {
  padding: 90px 82px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tA5gUnL3Q8 .row {
    padding: 50px 16px;
  }
}
.cid-tA5gUnL3Q8 .row .blur-wrap_1 {
  position: absolute;
  top: -8rem;
  left: 36%;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(120px);
}
.cid-tA5gUnL3Q8 .row .blur-wrap_2 {
  position: absolute;
  bottom: -8rem;
  right: 15%;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(150px);
}
.cid-tA5gUnL3Q8 .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #1e6185;
  opacity: 1;
}
.cid-tA5gUnL3Q8 .row .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-tA5gUnL3Q8 .row .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tA5gUnL3Q8 .row .title-wrapper .desc-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tA5gUnL3Q8 .row .title-wrapper .desc-wrapper {
    margin-bottom: 32px;
  }
}
.cid-tA5gUnL3Q8 .row .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding: 5px;
  border: 1px solid #fccfd3;
  border-radius: 10px;
  opacity: .5;
}
.cid-tA5gUnL3Q8 .row .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-tA5gUnL3Q8 .row .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-tA5gUnL3Q8 .row .image-wrapper {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-tA5gUnL3Q8 .row .image-wrapper {
    min-height: 450px;
  }
}
.cid-tA5gUnL3Q8 .row .image-wrapper img {
  position: absolute;
  right: 20%;
  border-radius: 50px;
  height: 400px;
  width: 270px;
  object-fit: cover;
  z-index: 2;
  transform: rotate(15deg);
}
.cid-tA5gUnL3Q8 .row .image-wrapper img:nth-child(2) {
  height: 180px;
  width: 180px;
  right: 0;
  bottom: 12%;
  transform: rotate(45deg);
}
.cid-tA5gUnL3Q8 .row .image-wrapper img:last-child {
  width: 250px;
  height: 550px;
  bottom: -12rem;
  right: auto;
  left: 6rem;
  z-index: 1;
  transform: rotate(-45deg);
  border-radius: 50%;
}
.cid-tA5gUnL3Q8 .mbr-desc {
  color: #ffffff;
}
.cid-tA5gUnL3Q8 .mbr-section-title {
  color: #ffffff;
}
.cid-tA5gUnL3Q8 .mbr-text {
  color: #ffffff;
}
.cid-tA5gUnL3Q8 .mbr-desc,
.cid-tA5gUnL3Q8 .desc-wrapper {
  color: #ffffff;
}
.cid-u7op7xSCKJ {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #0e0e10;
}
.cid-u7op7xSCKJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7op7xSCKJ .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-u7op7xSCKJ .container {
    padding: 0 20px;
  }
}
.cid-u7op7xSCKJ .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7op7xSCKJ .row .title-wrapper {
    margin-bottom: 50px;
    height: auto;
  }
}
.cid-u7op7xSCKJ .row .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7op7xSCKJ .row .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-u7op7xSCKJ .row .title-wrapper .list {
  padding: 0;
  margin-bottom: 32px;
  list-style-position: inside;
}
.cid-u7op7xSCKJ .row .title-wrapper .list .item-wrap {
  margin-bottom: 0;
}
.cid-u7op7xSCKJ .row .image-wrapper {
  position: relative;
}
.cid-u7op7xSCKJ .row .image-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 50px;
}
.cid-u7op7xSCKJ .row .image-wrapper .mbr-emoji {
  position: absolute;
  top: 1rem;
  right: 0;
  font-size: 100px;
}
.cid-u7op7xSCKJ .mbr-section-title {
  color: #ffffff;
}
.cid-u7op7xSCKJ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u7op7xSCKJ .list {
  color: #ffffff;
}
.cid-u7op7xSCKJ .mbr-emoji {
  color: #f5fd7b;
}
.cid-u7oqAqV82q {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u7oqAqV82q .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7oqAqV82q .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-u7oqAqV82q .container {
    padding: 0 20px;
  }
}
.cid-u7oqAqV82q .row {
  margin: 0;
}
.cid-u7oqAqV82q .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u7oqAqV82q .mbr-section-title {
  color: #000000;
}
.cid-tA5gVDdyIR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tA5gVDdyIR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tA5gVDdyIR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tA5gVDdyIR .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tA5gVDdyIR .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tA5gVDdyIR .container {
    padding: 0 20px;
  }
}
.cid-tA5gVDdyIR .row {
  padding: 0 8px;
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tA5gVDdyIR .row {
    padding: 0;
  }
}
.cid-tA5gVDdyIR .card {
  padding: 0 8px;
  overflow: visible;
}
.cid-tA5gVDdyIR .card .card-wrapper {
  position: relative;
  padding: 32px;
  border-radius: 30px 80px 30px 30px;
  overflow: visible;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.cid-tA5gVDdyIR .card .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e6185;
  opacity: .5;
  border-radius: 30px 80px 30px 30px;
}
@media (max-width: 992px) {
  .cid-tA5gVDdyIR .card .card-wrapper {
    margin-bottom: 16px;
    padding: 32px 16px;
  }
}
.cid-tA5gVDdyIR .card .card-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
  padding-right: 60px;
}
.cid-tA5gVDdyIR .card .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tA5gVDdyIR .card .card-wrapper .title-wrapper .mbr-number {
  position: absolute;
  top: 0;
  right: -2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0e0e10;
  border-radius: 50%;
  margin-top: -2rem;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tA5gVDdyIR .card .card-wrapper .title-wrapper .mbr-number {
    right: 0;
  }
}
.cid-tA5gVDdyIR .card .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-tA5gVDdyIR .card .card-wrapper .text-wrapper .mbr-text {
  margin-top: 25px;
  margin-bottom: 0;
}
.cid-tA5gVDdyIR .mbr-number {
  color: #ffffff;
}
.cid-tA5gVDdyIR .mbr-section-title {
  color: #fccfd3;
}
.cid-tA5gVDdyIR .mbr-text {
  color: #ffffff;
}
.cid-u7ors3rL4c {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u7ors3rL4c .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ors3rL4c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7ors3rL4c .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7ors3rL4c .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u7ors3rL4c .container {
    padding: 0 20px;
  }
}
.cid-u7ors3rL4c .row {
  padding: 0 8px;
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u7ors3rL4c .row {
    padding: 0;
  }
}
.cid-u7ors3rL4c .card {
  padding: 0 8px;
  overflow: visible;
}
.cid-u7ors3rL4c .card .card-wrapper {
  position: relative;
  padding: 32px;
  border-radius: 30px 80px 30px 30px;
  overflow: visible;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.cid-u7ors3rL4c .card .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e6185;
  opacity: .5;
  border-radius: 30px 80px 30px 30px;
}
@media (max-width: 992px) {
  .cid-u7ors3rL4c .card .card-wrapper {
    margin-bottom: 16px;
    padding: 32px 16px;
  }
}
.cid-u7ors3rL4c .card .card-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
  padding-right: 60px;
}
.cid-u7ors3rL4c .card .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u7ors3rL4c .card .card-wrapper .title-wrapper .mbr-number {
  position: absolute;
  top: 0;
  right: -2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0e0e10;
  border-radius: 50%;
  margin-top: -2rem;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u7ors3rL4c .card .card-wrapper .title-wrapper .mbr-number {
    right: 0;
  }
}
.cid-u7ors3rL4c .card .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-u7ors3rL4c .card .card-wrapper .text-wrapper .mbr-text {
  margin-top: 25px;
  margin-bottom: 0;
}
.cid-u7ors3rL4c .mbr-number {
  color: #ffffff;
}
.cid-u7ors3rL4c .mbr-section-title {
  color: #fccfd3;
}
.cid-u7ors3rL4c .mbr-text {
  color: #ffffff;
}
.cid-u7ow6R43eV {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #0e0e10;
}
.cid-u7ow6R43eV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ow6R43eV .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-u7ow6R43eV .container {
    padding: 0 20px;
  }
}
.cid-u7ow6R43eV .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7ow6R43eV .row .title-wrapper {
    margin-bottom: 50px;
    height: auto;
  }
}
.cid-u7ow6R43eV .row .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7ow6R43eV .row .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-u7ow6R43eV .row .title-wrapper .list {
  padding: 0;
  margin-bottom: 32px;
  list-style-position: inside;
}
.cid-u7ow6R43eV .row .title-wrapper .list .item-wrap {
  margin-bottom: 0;
}
.cid-u7ow6R43eV .row .image-wrapper {
  position: relative;
}
.cid-u7ow6R43eV .row .image-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 50px;
}
.cid-u7ow6R43eV .row .image-wrapper .mbr-emoji {
  position: absolute;
  top: 1rem;
  right: 0;
  font-size: 100px;
}
.cid-u7ow6R43eV .mbr-section-title {
  color: #ffffff;
}
.cid-u7ow6R43eV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u7ow6R43eV .list {
  color: #ffffff;
}
.cid-u7ow6R43eV .mbr-emoji {
  color: #f5fd7b;
}
.cid-u7oyru5h37 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u7oyru5h37 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u7oyru5h37 .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-u7oyru5h37 .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-u7oyru5h37 .btn-primary-outline:active {
  color: gray;
}
.cid-u7oyru5h37 .btn-primary-outline:hover {
  color: white;
}
.cid-u7oyru5h37 div {
  overflow: hidden;
}
.cid-u7oyru5h37 li.active .btn-primary-outline {
  color: white;
}
.cid-u7oyru5h37 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u7oyru5h37 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u7oyru5h37 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u7oyru5h37 .mbr-gallery-item {
  overflow: hidden;
}
.cid-u7oyru5h37 .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-u7oyru5h37 .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-u7oyru5h37 .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-u7oyru5h37 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u7oyru5h37 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u7oyru5h37 .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-u7oyru5h37 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u7oyru5h37 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tA5l59cj2T {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-tA5l59cj2T .mbr-fallback-image.disabled {
  display: none;
}
.cid-tA5l59cj2T .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-tA5l59cj2T .container {
    padding: 0 20px;
  }
}
.cid-tA5l59cj2T .row {
  padding: 50px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0 16px;
}
@media (max-width: 992px) {
  .cid-tA5l59cj2T .row {
    padding: 50px 16px;
    margin: 0;
  }
}
.cid-tA5l59cj2T .row .blur-wrap {
  position: absolute;
  bottom: 0;
  left: 18%;
  width: 400px;
  height: 400px;
  border-radius: 100%;
  background-color: #ffffff;
  filter: blur(200px);
}
.cid-tA5l59cj2T .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #ffffff;
  opacity: 1;
}
.cid-tA5l59cj2T .row .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-tA5l59cj2T .row .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tA5l59cj2T .row .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tA5l59cj2T .row .item {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tA5l59cj2T .row .item {
    margin-bottom: 32px;
  }
}
.cid-tA5l59cj2T .row .item .item-wrapper .item-img img {
  height: 75px;
  object-fit: contain;
  margin: 0 auto;
}
.cid-tA5l59cj2T .mbr-section-title {
  color: #0e0e10;
}
.cid-u7sIZtkViK {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u7sIZtkViK .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7sIZtkViK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7sIZtkViK .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u7sIZtkViK .mbr-section-title {
  color: #24262b;
  text-align: left;
}
.cid-u7sIZtkViK .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-u7sIZtkViK .cards-row {
  row-gap: 32px;
}
.cid-u7sIZtkViK .card {
  border-radius: 0;
}
.cid-u7sIZtkViK .card-wrapper {
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
  background: #1e6185;
}
@media (max-width: 991px) {
  .cid-u7sIZtkViK .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u7sIZtkViK .icons-wrap {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cid-u7sIZtkViK .icons-wrap .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-u7sIZtkViK .icons-wrap .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #fccfd3;
}
.cid-u7sIZtkViK .card-title {
  margin-bottom: 8px;
  color: #ffffff;
}
.cid-u7sIZtkViK .card-subtitle {
  color: #24262b;
}
.cid-u7sIZtkViK .card-bottom-wrap {
  margin-top: 24px;
}
.cid-u7sIZtkViK .card-name {
  color: #24262b;
}
.cid-u7sIZtkViK .card-text {
  color: #24262b;
}
.cid-u7otmkhNaC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e6185;
}
.cid-u7otmkhNaC .wrapper {
  background-color: #ffffff;
}
.cid-u7otmkhNaC li {
  list-style-type: none;
}
.cid-u7otmkhNaC .contact-info-m {
  margin-bottom: 1.875rem;
}
.cid-u7otmkhNaC .list-1 li {
  margin-bottom: 1rem;
}
.cid-u7otmkhNaC .list-1 li:last-child {
  margin-bottom: 0;
}
.cid-u7otmkhNaC .list-2 li {
  margin-bottom: 1.875rem;
}
.cid-u7otmkhNaC .list-2 li:last-child {
  margin-bottom: 0;
}
.cid-u7otmkhNaC ul {
  margin: 0;
}
.cid-u7otmkhNaC .logo {
  width: auto;
  height: 140px;
  object-fit: cover;
}
.cid-u7otmkhNaC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7otmkhNaC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zorDXSKt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u7zorDXSKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zorDXSKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zorDXSKt .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-u7zorDXSKt .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u7zorDXSKt .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-u7zorDXSKt .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-u7zorDXSKt .list-box {
  width: 100%;
}
.cid-u7zorDXSKt .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-u7zorDXSKt .list a:hover:before {
  background-position: left !important;
}
.cid-u7zorDXSKt .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-u7zorDXSKt .news-item {
  width: 100%;
}
.cid-u7zorDXSKt .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-u7zorDXSKt .news-title {
  color: #303030;
}
.cid-u7zorDXSKt .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-u7sAg4wxJ8 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-u7sAg4wxJ8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-u7sAg4wxJ8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-u7sAg4wxJ8 .menu_box .navbar.opened,
  .cid-u7sAg4wxJ8 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-u7sAg4wxJ8 .navbar-dropdown {
  position: relative !important;
}
.cid-u7sAg4wxJ8 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-u7sAg4wxJ8 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u7sAg4wxJ8 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-u7sAg4wxJ8 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-u7sAg4wxJ8 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-u7sAg4wxJ8 .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #181a25;
  }
  .cid-u7sAg4wxJ8 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-u7sAg4wxJ8 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-u7sAg4wxJ8 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-u7sAg4wxJ8 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-u7sAg4wxJ8 .offcanvas-body .mbr-text,
  .cid-u7sAg4wxJ8 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-u7sAg4wxJ8 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-u7sAg4wxJ8 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-u7sAg4wxJ8 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1e6185;
  }
  .cid-u7sAg4wxJ8 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-u7sAg4wxJ8 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-u7sAg4wxJ8 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-u7sAg4wxJ8 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-u7sAg4wxJ8 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-u7sAg4wxJ8 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7sAg4wxJ8 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-u7sAg4wxJ8 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-u7sAg4wxJ8 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-u7sAg4wxJ8 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-u7sAg4wxJ8 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-u7sAg4wxJ8 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-u7sAg4wxJ8 .nav-item {
    margin: 0 !important;
  }
}
.cid-u7sAg4wxJ8 .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.cid-u7sAg4wxJ8 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #181a25;
  transition: all 0.3s ease-out;
}
.cid-u7sAg4wxJ8 .nav-item .nav-link:hover {
  color: #181a25 !important;
}
.cid-u7sAg4wxJ8 .nav-item .nav-link:hover::before {
  width: 100%;
}
.cid-u7sAg4wxJ8 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-u7sAg4wxJ8 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-u7sAg4wxJ8 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-u7sAg4wxJ8 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7sAg4wxJ8 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-u7sAg4wxJ8 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-u7sAg4wxJ8 .offcanvas_box {
    display: none;
  }
}
.cid-u7sAg4wxJ8 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-u7sAg4wxJ8 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-u7sAg4wxJ8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-u7sAg4wxJ8 .container {
  display: flex;
  margin: auto;
}
.cid-u7sAg4wxJ8 .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u7sAg4wxJ8 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u7sAg4wxJ8 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-u7sAg4wxJ8 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-u7sAg4wxJ8 .navbar-nav {
    margin: 0;
  }
}
.cid-u7sAg4wxJ8 .dropdown-menu,
.cid-u7sAg4wxJ8 .navbar.opened {
  background-color: false !important;
}
.cid-u7sAg4wxJ8 .nav-item:focus,
.cid-u7sAg4wxJ8 .nav-link:focus {
  outline: none;
}
.cid-u7sAg4wxJ8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7sAg4wxJ8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7sAg4wxJ8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7sAg4wxJ8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7sAg4wxJ8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7sAg4wxJ8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7sAg4wxJ8 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-u7sAg4wxJ8 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-u7sAg4wxJ8 .navbar.opened {
  transition: all 0.3s;
}
.cid-u7sAg4wxJ8 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-u7sAg4wxJ8 .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-u7sAg4wxJ8 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-u7sAg4wxJ8 .navbar.collapsed {
  justify-content: center;
}
.cid-u7sAg4wxJ8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7sAg4wxJ8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u7sAg4wxJ8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7sAg4wxJ8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7sAg4wxJ8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7sAg4wxJ8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-u7sAg4wxJ8 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u7sAg4wxJ8 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-u7sAg4wxJ8 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-u7sAg4wxJ8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7sAg4wxJ8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7sAg4wxJ8 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-u7sAg4wxJ8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7sAg4wxJ8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-u7sAg4wxJ8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7sAg4wxJ8 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-u7sAg4wxJ8 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u7sAg4wxJ8 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-u7sAg4wxJ8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7sAg4wxJ8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7sAg4wxJ8 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-u7sAg4wxJ8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7sAg4wxJ8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7sAg4wxJ8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7sAg4wxJ8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7sAg4wxJ8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-u7sAg4wxJ8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7sAg4wxJ8 .dropdown-item.active,
.cid-u7sAg4wxJ8 .dropdown-item:active {
  background-color: transparent;
}
.cid-u7sAg4wxJ8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7sAg4wxJ8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7sAg4wxJ8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7sAg4wxJ8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7sAg4wxJ8 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-u7sAg4wxJ8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7sAg4wxJ8 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #1e6185;
}
.cid-u7sAg4wxJ8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1e6185;
}
.cid-u7sAg4wxJ8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7sAg4wxJ8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7sAg4wxJ8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7sAg4wxJ8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7sAg4wxJ8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7sAg4wxJ8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7sAg4wxJ8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7sAg4wxJ8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7sAg4wxJ8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-u7sAg4wxJ8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7sAg4wxJ8 .navbar {
    height: 70px;
  }
  .cid-u7sAg4wxJ8 .navbar.opened {
    height: auto;
  }
  .cid-u7sAg4wxJ8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7sAg4wxJ8 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-u7sAg4wxJ8 .container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .cid-u7sAg4wxJ8 .container-fluid {
    padding-left: 130px;
    padding-right: 130px;
  }
}
.cid-u7sAg4wxJ8 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-u7sAg4wxJ8 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  padding: 20px 35px;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-u7sAg4wxJ8 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-u7sAg4wxJ8 .navbar-caption:hover {
  opacity: .5;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u7sAg4wxJ8 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-u7sAg4wxJ8 .text_widget {
  margin-bottom: 32px;
}
.cid-u7sAg4wxJ8 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-u7sAg4wxJ8 .text_widget a:hover {
  color: #181a25 !important;
}
.cid-u7sAg4wxJ8 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u7sAg4wxJ8 .navbar-caption {
  color: #ffffff;
}
.cid-u7sAg4wxJ8 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-u7sAg4wxJ8 .mbr-section-subtitle,
.cid-u7sAg4wxJ8 .text_widget,
.cid-u7sAg4wxJ8 .mbr-section-btn {
  text-align: left;
}
.cid-u7sAg4wxJ8 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-u7sAg5tU9J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-u7sAg5tU9J .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7sAg5tU9J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7sAg5tU9J .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7sAg5tU9J .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u7sAg5tU9J .container {
    padding: 0 20px;
  }
}
.cid-u7sAg5tU9J .row {
  padding: 90px 82px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7sAg5tU9J .row {
    padding: 50px 16px;
  }
}
.cid-u7sAg5tU9J .row .blur-wrap_1 {
  position: absolute;
  top: -8rem;
  left: 36%;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(120px);
}
.cid-u7sAg5tU9J .row .blur-wrap_2 {
  position: absolute;
  bottom: -8rem;
  right: 15%;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(150px);
}
.cid-u7sAg5tU9J .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #1e6185;
  opacity: 1;
}
.cid-u7sAg5tU9J .row .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-u7sAg5tU9J .row .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-u7sAg5tU9J .row .title-wrapper .desc-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u7sAg5tU9J .row .title-wrapper .desc-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u7sAg5tU9J .row .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding: 5px;
  border: 1px solid #fccfd3;
  border-radius: 10px;
  opacity: .5;
}
.cid-u7sAg5tU9J .row .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7sAg5tU9J .row .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u7sAg5tU9J .row .image-wrapper {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-u7sAg5tU9J .row .image-wrapper {
    min-height: 450px;
  }
}
.cid-u7sAg5tU9J .row .image-wrapper img {
  position: absolute;
  right: 20%;
  border-radius: 50px;
  height: 400px;
  width: 270px;
  object-fit: cover;
  z-index: 2;
  transform: rotate(15deg);
}
.cid-u7sAg5tU9J .row .image-wrapper img:nth-child(2) {
  height: 180px;
  width: 180px;
  right: 0;
  bottom: 12%;
  transform: rotate(45deg);
}
.cid-u7sAg5tU9J .row .image-wrapper img:last-child {
  width: 250px;
  height: 550px;
  bottom: -12rem;
  right: auto;
  left: 6rem;
  z-index: 1;
  transform: rotate(-45deg);
  border-radius: 50%;
}
.cid-u7sAg5tU9J .mbr-desc {
  color: #ffffff;
}
.cid-u7sAg5tU9J .mbr-section-title {
  color: #ffffff;
}
.cid-u7sAg5tU9J .mbr-text {
  color: #ffffff;
}
.cid-u7sAg5tU9J .mbr-desc,
.cid-u7sAg5tU9J .desc-wrapper {
  color: #ffffff;
}
.cid-u7sAg5SpQn {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #0e0e10;
}
.cid-u7sAg5SpQn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7sAg5SpQn .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-u7sAg5SpQn .container {
    padding: 0 20px;
  }
}
.cid-u7sAg5SpQn .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7sAg5SpQn .row .title-wrapper {
    margin-bottom: 50px;
    height: auto;
  }
}
.cid-u7sAg5SpQn .row .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7sAg5SpQn .row .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-u7sAg5SpQn .row .title-wrapper .list {
  padding: 0;
  margin-bottom: 32px;
  list-style-position: inside;
}
.cid-u7sAg5SpQn .row .title-wrapper .list .item-wrap {
  margin-bottom: 0;
}
.cid-u7sAg5SpQn .row .image-wrapper {
  position: relative;
}
.cid-u7sAg5SpQn .row .image-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 50px;
}
.cid-u7sAg5SpQn .row .image-wrapper .mbr-emoji {
  position: absolute;
  top: 1rem;
  right: 0;
  font-size: 100px;
}
.cid-u7sAg5SpQn .mbr-section-title {
  color: #ffffff;
}
.cid-u7sAg5SpQn .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u7sAg5SpQn .list {
  color: #ffffff;
}
.cid-u7sAg5SpQn .mbr-emoji {
  color: #f5fd7b;
}
.cid-u7sEh3Q06v {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-u7sEh3Q06v .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7sEh3Q06v .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-u7sEh3Q06v .container {
    padding: 0 20px;
  }
}
.cid-u7sEh3Q06v .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7sEh3Q06v .row .title-wrapper {
    margin-bottom: 50px;
    height: auto;
  }
}
.cid-u7sEh3Q06v .row .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7sEh3Q06v .row .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-u7sEh3Q06v .row .title-wrapper .list {
  padding: 0;
  margin-bottom: 32px;
  list-style-position: inside;
}
.cid-u7sEh3Q06v .row .title-wrapper .list .item-wrap {
  margin-bottom: 0;
}
.cid-u7sEh3Q06v .row .image-wrapper {
  position: relative;
}
.cid-u7sEh3Q06v .row .image-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 50px;
}
.cid-u7sEh3Q06v .row .image-wrapper .mbr-emoji {
  position: absolute;
  top: 1rem;
  right: 0;
  font-size: 100px;
}
.cid-u7sEh3Q06v .mbr-section-title {
  color: #000000;
}
.cid-u7sEh3Q06v .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-u7sEh3Q06v .list {
  color: #000000;
}
.cid-u7sEh3Q06v .mbr-emoji {
  color: #f5fd7b;
}
.cid-u7sAg7e15U {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u7sAg7e15U .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u7sAg7e15U .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-u7sAg7e15U .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-u7sAg7e15U .btn-primary-outline:active {
  color: gray;
}
.cid-u7sAg7e15U .btn-primary-outline:hover {
  color: white;
}
.cid-u7sAg7e15U div {
  overflow: hidden;
}
.cid-u7sAg7e15U li.active .btn-primary-outline {
  color: white;
}
.cid-u7sAg7e15U .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u7sAg7e15U .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u7sAg7e15U .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u7sAg7e15U .mbr-gallery-item {
  overflow: hidden;
}
.cid-u7sAg7e15U .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-u7sAg7e15U .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-u7sAg7e15U .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-u7sAg7e15U .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u7sAg7e15U .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u7sAg7e15U .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-u7sAg7e15U .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u7sAg7e15U .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u7sFuZ4cfZ {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u7sFuZ4cfZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7sFuZ4cfZ .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-u7sFuZ4cfZ .container {
    padding: 0 20px;
  }
}
.cid-u7sFuZ4cfZ .row {
  margin: 0;
}
.cid-u7sFuZ4cfZ .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u7sFuZ4cfZ .mbr-section-title {
  color: #000000;
}
.cid-u7sFHzHY3L {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7sFHzHY3L .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7sFHzHY3L .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-u7sFHzHY3L .container {
    padding: 0 20px;
  }
}
.cid-u7sFHzHY3L .row {
  margin: 0;
}
.cid-u7sFHzHY3L .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u7sFHzHY3L .mbr-section-title {
  color: #000000;
}
.cid-u7sFvILTNb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u7sFvILTNb .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7sFvILTNb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7sFvILTNb .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7sFvILTNb .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u7sFvILTNb .container {
    padding: 0 20px;
  }
}
.cid-u7sFvILTNb .row {
  padding: 0 8px;
  margin: 0;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u7sFvILTNb .row {
    padding: 0;
  }
}
.cid-u7sFvILTNb .card {
  padding: 0 8px;
  overflow: visible;
}
.cid-u7sFvILTNb .card .card-wrapper {
  position: relative;
  padding: 32px;
  border-radius: 30px 80px 30px 30px;
  overflow: visible;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.cid-u7sFvILTNb .card .card-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e6185;
  opacity: .5;
  border-radius: 30px 80px 30px 30px;
}
@media (max-width: 992px) {
  .cid-u7sFvILTNb .card .card-wrapper {
    margin-bottom: 16px;
    padding: 32px 16px;
  }
}
.cid-u7sFvILTNb .card .card-wrapper .title-wrapper {
  position: relative;
  z-index: 1;
  padding-right: 60px;
}
.cid-u7sFvILTNb .card .card-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-u7sFvILTNb .card .card-wrapper .title-wrapper .mbr-number {
  position: absolute;
  top: 0;
  right: -2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0e0e10;
  border-radius: 50%;
  margin-top: -2rem;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-u7sFvILTNb .card .card-wrapper .title-wrapper .mbr-number {
    right: 0;
  }
}
.cid-u7sFvILTNb .card .card-wrapper .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-u7sFvILTNb .card .card-wrapper .text-wrapper .mbr-text {
  margin-top: 25px;
  margin-bottom: 0;
}
.cid-u7sFvILTNb .mbr-number {
  color: #ffffff;
}
.cid-u7sFvILTNb .mbr-section-title {
  color: #fccfd3;
}
.cid-u7sFvILTNb .mbr-text {
  color: #ffffff;
}
.cid-u7sHQguhu5 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u7sHQguhu5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7sHQguhu5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7sHQguhu5 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u7sHQguhu5 .mbr-section-title {
  color: #24262b;
  text-align: left;
}
.cid-u7sHQguhu5 .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-u7sHQguhu5 .cards-row {
  row-gap: 32px;
}
.cid-u7sHQguhu5 .card {
  border-radius: 0;
}
.cid-u7sHQguhu5 .card-wrapper {
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
  background: #1e6185;
}
@media (max-width: 991px) {
  .cid-u7sHQguhu5 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u7sHQguhu5 .icons-wrap {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cid-u7sHQguhu5 .icons-wrap .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-u7sHQguhu5 .icons-wrap .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #fccfd3;
}
.cid-u7sHQguhu5 .card-title {
  margin-bottom: 8px;
  color: #ffffff;
}
.cid-u7sHQguhu5 .card-subtitle {
  color: #24262b;
}
.cid-u7sHQguhu5 .card-bottom-wrap {
  margin-top: 24px;
}
.cid-u7sHQguhu5 .card-name {
  color: #24262b;
}
.cid-u7sHQguhu5 .card-text {
  color: #24262b;
}
.cid-u7sAg8ijg3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e6185;
}
.cid-u7sAg8ijg3 .wrapper {
  background-color: #ffffff;
}
.cid-u7sAg8ijg3 li {
  list-style-type: none;
}
.cid-u7sAg8ijg3 .contact-info-m {
  margin-bottom: 1.875rem;
}
.cid-u7sAg8ijg3 .list-1 li {
  margin-bottom: 1rem;
}
.cid-u7sAg8ijg3 .list-1 li:last-child {
  margin-bottom: 0;
}
.cid-u7sAg8ijg3 .list-2 li {
  margin-bottom: 1.875rem;
}
.cid-u7sAg8ijg3 .list-2 li:last-child {
  margin-bottom: 0;
}
.cid-u7sAg8ijg3 ul {
  margin: 0;
}
.cid-u7sAg8ijg3 .logo {
  width: auto;
  height: 140px;
  object-fit: cover;
}
.cid-u7sAg8ijg3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7sAg8ijg3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zorDXSKt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u7zorDXSKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zorDXSKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zorDXSKt .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-u7zorDXSKt .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u7zorDXSKt .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-u7zorDXSKt .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-u7zorDXSKt .list-box {
  width: 100%;
}
.cid-u7zorDXSKt .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-u7zorDXSKt .list a:hover:before {
  background-position: left !important;
}
.cid-u7zorDXSKt .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-u7zorDXSKt .news-item {
  width: 100%;
}
.cid-u7zorDXSKt .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-u7zorDXSKt .news-title {
  color: #303030;
}
.cid-u7zorDXSKt .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-u7tyXMKJ9C .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-u7tyXMKJ9C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-u7tyXMKJ9C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-u7tyXMKJ9C .menu_box .navbar.opened,
  .cid-u7tyXMKJ9C .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-u7tyXMKJ9C .navbar-dropdown {
  position: relative !important;
}
.cid-u7tyXMKJ9C .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-u7tyXMKJ9C .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u7tyXMKJ9C .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-u7tyXMKJ9C .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-u7tyXMKJ9C .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-u7tyXMKJ9C .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #181a25;
  }
  .cid-u7tyXMKJ9C .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-u7tyXMKJ9C .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-u7tyXMKJ9C .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-u7tyXMKJ9C .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-u7tyXMKJ9C .offcanvas-body .mbr-text,
  .cid-u7tyXMKJ9C .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-u7tyXMKJ9C .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-u7tyXMKJ9C .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-u7tyXMKJ9C .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1e6185;
  }
  .cid-u7tyXMKJ9C .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-u7tyXMKJ9C .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-u7tyXMKJ9C .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-u7tyXMKJ9C .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-u7tyXMKJ9C ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-u7tyXMKJ9C .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7tyXMKJ9C .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-u7tyXMKJ9C .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-u7tyXMKJ9C li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-u7tyXMKJ9C .lg_brand {
    margin: 0 1rem;
  }
}
.cid-u7tyXMKJ9C .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-u7tyXMKJ9C .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-u7tyXMKJ9C .nav-item {
    margin: 0 !important;
  }
}
.cid-u7tyXMKJ9C .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.cid-u7tyXMKJ9C .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #181a25;
  transition: all 0.3s ease-out;
}
.cid-u7tyXMKJ9C .nav-item .nav-link:hover {
  color: #181a25 !important;
}
.cid-u7tyXMKJ9C .nav-item .nav-link:hover::before {
  width: 100%;
}
.cid-u7tyXMKJ9C .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-u7tyXMKJ9C .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-u7tyXMKJ9C .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-u7tyXMKJ9C .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7tyXMKJ9C .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-u7tyXMKJ9C .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-u7tyXMKJ9C .offcanvas_box {
    display: none;
  }
}
.cid-u7tyXMKJ9C .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-u7tyXMKJ9C .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-u7tyXMKJ9C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-u7tyXMKJ9C .container {
  display: flex;
  margin: auto;
}
.cid-u7tyXMKJ9C .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u7tyXMKJ9C .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u7tyXMKJ9C .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-u7tyXMKJ9C .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-u7tyXMKJ9C .navbar-nav {
    margin: 0;
  }
}
.cid-u7tyXMKJ9C .dropdown-menu,
.cid-u7tyXMKJ9C .navbar.opened {
  background-color: false !important;
}
.cid-u7tyXMKJ9C .nav-item:focus,
.cid-u7tyXMKJ9C .nav-link:focus {
  outline: none;
}
.cid-u7tyXMKJ9C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7tyXMKJ9C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7tyXMKJ9C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7tyXMKJ9C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7tyXMKJ9C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7tyXMKJ9C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7tyXMKJ9C .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-u7tyXMKJ9C .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-u7tyXMKJ9C .navbar.opened {
  transition: all 0.3s;
}
.cid-u7tyXMKJ9C .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-u7tyXMKJ9C .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-u7tyXMKJ9C .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-u7tyXMKJ9C .navbar.collapsed {
  justify-content: center;
}
.cid-u7tyXMKJ9C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7tyXMKJ9C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u7tyXMKJ9C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7tyXMKJ9C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7tyXMKJ9C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7tyXMKJ9C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-u7tyXMKJ9C .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u7tyXMKJ9C .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-u7tyXMKJ9C .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-u7tyXMKJ9C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7tyXMKJ9C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7tyXMKJ9C .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-u7tyXMKJ9C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7tyXMKJ9C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-u7tyXMKJ9C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7tyXMKJ9C .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-u7tyXMKJ9C .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u7tyXMKJ9C .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-u7tyXMKJ9C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7tyXMKJ9C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7tyXMKJ9C .navbar .icons-menu {
    padding: 0;
  }
}
.cid-u7tyXMKJ9C .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7tyXMKJ9C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7tyXMKJ9C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7tyXMKJ9C .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7tyXMKJ9C .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-u7tyXMKJ9C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7tyXMKJ9C .dropdown-item.active,
.cid-u7tyXMKJ9C .dropdown-item:active {
  background-color: transparent;
}
.cid-u7tyXMKJ9C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7tyXMKJ9C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7tyXMKJ9C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7tyXMKJ9C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7tyXMKJ9C ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-u7tyXMKJ9C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7tyXMKJ9C button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #1e6185;
}
.cid-u7tyXMKJ9C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1e6185;
}
.cid-u7tyXMKJ9C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7tyXMKJ9C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7tyXMKJ9C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7tyXMKJ9C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7tyXMKJ9C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7tyXMKJ9C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7tyXMKJ9C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7tyXMKJ9C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7tyXMKJ9C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-u7tyXMKJ9C .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7tyXMKJ9C .navbar {
    height: 70px;
  }
  .cid-u7tyXMKJ9C .navbar.opened {
    height: auto;
  }
  .cid-u7tyXMKJ9C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7tyXMKJ9C .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-u7tyXMKJ9C .container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .cid-u7tyXMKJ9C .container-fluid {
    padding-left: 130px;
    padding-right: 130px;
  }
}
.cid-u7tyXMKJ9C .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-u7tyXMKJ9C .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  padding: 20px 35px;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-u7tyXMKJ9C .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-u7tyXMKJ9C .navbar-caption:hover {
  opacity: .5;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u7tyXMKJ9C .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-u7tyXMKJ9C .text_widget {
  margin-bottom: 32px;
}
.cid-u7tyXMKJ9C .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-u7tyXMKJ9C .text_widget a:hover {
  color: #181a25 !important;
}
.cid-u7tyXMKJ9C .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u7tyXMKJ9C .navbar-caption {
  color: #ffffff;
}
.cid-u7tyXMKJ9C .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-u7tyXMKJ9C .mbr-section-subtitle,
.cid-u7tyXMKJ9C .text_widget,
.cid-u7tyXMKJ9C .mbr-section-btn {
  text-align: left;
}
.cid-u7tyXMKJ9C a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-u7tyXNOxFC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-u7tyXNOxFC .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7tyXNOxFC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7tyXNOxFC .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7tyXNOxFC .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u7tyXNOxFC .container {
    padding: 0 20px;
  }
}
.cid-u7tyXNOxFC .row {
  padding: 90px 82px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7tyXNOxFC .row {
    padding: 50px 16px;
  }
}
.cid-u7tyXNOxFC .row .blur-wrap_1 {
  position: absolute;
  top: -8rem;
  left: 36%;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(120px);
}
.cid-u7tyXNOxFC .row .blur-wrap_2 {
  position: absolute;
  bottom: -8rem;
  right: 15%;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(150px);
}
.cid-u7tyXNOxFC .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #1e6185;
  opacity: 1;
}
.cid-u7tyXNOxFC .row .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-u7tyXNOxFC .row .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-u7tyXNOxFC .row .title-wrapper .desc-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u7tyXNOxFC .row .title-wrapper .desc-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u7tyXNOxFC .row .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding: 5px;
  border: 1px solid #fccfd3;
  border-radius: 10px;
  opacity: .5;
}
.cid-u7tyXNOxFC .row .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7tyXNOxFC .row .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u7tyXNOxFC .row .image-wrapper {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-u7tyXNOxFC .row .image-wrapper {
    min-height: 450px;
  }
}
.cid-u7tyXNOxFC .row .image-wrapper img {
  position: absolute;
  right: 20%;
  border-radius: 50px;
  height: 400px;
  width: 270px;
  object-fit: cover;
  z-index: 2;
  transform: rotate(15deg);
}
.cid-u7tyXNOxFC .row .image-wrapper img:nth-child(2) {
  height: 180px;
  width: 180px;
  right: 0;
  bottom: 12%;
  transform: rotate(45deg);
}
.cid-u7tyXNOxFC .row .image-wrapper img:last-child {
  width: 250px;
  height: 550px;
  bottom: -12rem;
  right: auto;
  left: 6rem;
  z-index: 1;
  transform: rotate(-45deg);
  border-radius: 50%;
}
.cid-u7tyXNOxFC .mbr-desc {
  color: #ffffff;
}
.cid-u7tyXNOxFC .mbr-section-title {
  color: #ffffff;
}
.cid-u7tyXNOxFC .mbr-text {
  color: #ffffff;
}
.cid-u7tyXNOxFC .mbr-desc,
.cid-u7tyXNOxFC .desc-wrapper {
  color: #ffffff;
}
.cid-u7ywJvfusE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7ywJvfusE .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7ywJvfusE .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-u7ywJvfusE .container {
    padding: 10px 8px;
  }
}
.cid-u7ywJvfusE .row {
  border-radius: 25px;
  background-color: #ffffff;
  margin: 0;
  overflow: hidden;
  padding: 100px 40px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-u7ywJvfusE .row {
    padding: 50px 10px;
  }
}
.cid-u7ywJvfusE .item {
  margin-bottom: 16px;
}
.cid-u7ywJvfusE .item:last-child {
  margin-bottom: 0;
}
.cid-u7ywJvfusE .item .item-wrapper {
  position: relative;
  display: flex;
  border-radius: 33px !important;
  padding: 25px;
  overflow: hidden;
}
.cid-u7ywJvfusE .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e6185;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-u7ywJvfusE .item .item-wrapper {
    padding: 20px 15px;
    display: block;
  }
}
.cid-u7ywJvfusE .item .item-wrapper .item-img {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u7ywJvfusE .item .item-wrapper .item-img {
    margin: 0 0 20px 0;
  }
}
.cid-u7ywJvfusE .item .item-wrapper .item-img img {
  width: 260px;
  height: 100%;
  border-radius: 25px !important;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-u7ywJvfusE .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-u7ywJvfusE .item .item-wrapper .item-img img {
    width: 100%;
    height: 140px;
  }
}
.cid-u7ywJvfusE .item .item-wrapper .item-img .mbr-iconfont {
  position: absolute;
  font-size: 130px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u7ywJvfusE .item .item-wrapper .item-img .mbr-iconfont {
    font-size: 64px;
  }
}
.cid-u7ywJvfusE .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  margin-right: 100px;
  padding: 30px 0;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-u7ywJvfusE .item .item-wrapper .item-content {
    margin-right: 0;
    padding: 0;
    width: 100%;
  }
}
.cid-u7ywJvfusE .item .item-wrapper .item-content .card-title {
  margin-bottom: 100px;
}
@media (min-width: 992px) {
  .cid-u7ywJvfusE .item .item-wrapper .item-content .card-title {
    line-height: 50px;
  }
}
@media (max-width: 992px) {
  .cid-u7ywJvfusE .item .item-wrapper .item-content .card-title {
    margin-bottom: 20px;
  }
}
.cid-u7ywJvfusE .item .item-wrapper .item-content .card-text {
  margin-bottom: 0;
}
.cid-u7ywJvfusE .item .item-wrapper .tags-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  height: fit-content;
}
@media (max-width: 992px) {
  .cid-u7ywJvfusE .item .item-wrapper .tags-wrapper {
    margin-top: 20px;
    padding: 0;
    justify-content: flex-start;
  }
}
.cid-u7ywJvfusE .item .item-wrapper .tags-wrapper .card-tag {
  border: 1px solid #f0f1f3;
  background-color: #ffffff;
  padding: 5px 25px;
  margin: 0 16px 16px 0;
  border-radius: 300px;
}
.cid-u7ywJvfusE .item-menu-overlay .btn-wrapper {
  margin-top: 15%;
}
.cid-u7ywJvfusE .card-title {
  color: #222222;
}
.cid-u7ywJvfusE .card-text {
  color: #222222;
}
.cid-u7ywJvfusE .card-tag {
  color: #222222;
}
.cid-u7tyXQ5df3 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u7tyXQ5df3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7tyXQ5df3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7tyXQ5df3 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u7tyXQ5df3 .mbr-section-title {
  color: #24262b;
  text-align: left;
}
.cid-u7tyXQ5df3 .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-u7tyXQ5df3 .cards-row {
  row-gap: 32px;
}
.cid-u7tyXQ5df3 .card {
  border-radius: 0;
}
.cid-u7tyXQ5df3 .card-wrapper {
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
  background: #1e6185;
}
@media (max-width: 991px) {
  .cid-u7tyXQ5df3 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u7tyXQ5df3 .icons-wrap {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cid-u7tyXQ5df3 .icons-wrap .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-u7tyXQ5df3 .icons-wrap .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #fccfd3;
}
.cid-u7tyXQ5df3 .card-title {
  margin-bottom: 8px;
  color: #ffffff;
}
.cid-u7tyXQ5df3 .card-subtitle {
  color: #24262b;
}
.cid-u7tyXQ5df3 .card-bottom-wrap {
  margin-top: 24px;
}
.cid-u7tyXQ5df3 .card-name {
  color: #24262b;
}
.cid-u7tyXQ5df3 .card-text {
  color: #24262b;
}
.cid-u7tyXQJD9J {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e6185;
}
.cid-u7tyXQJD9J .wrapper {
  background-color: #ffffff;
}
.cid-u7tyXQJD9J li {
  list-style-type: none;
}
.cid-u7tyXQJD9J .contact-info-m {
  margin-bottom: 1.875rem;
}
.cid-u7tyXQJD9J .list-1 li {
  margin-bottom: 1rem;
}
.cid-u7tyXQJD9J .list-1 li:last-child {
  margin-bottom: 0;
}
.cid-u7tyXQJD9J .list-2 li {
  margin-bottom: 1.875rem;
}
.cid-u7tyXQJD9J .list-2 li:last-child {
  margin-bottom: 0;
}
.cid-u7tyXQJD9J ul {
  margin: 0;
}
.cid-u7tyXQJD9J .logo {
  width: auto;
  height: 140px;
  object-fit: cover;
}
.cid-u7tyXQJD9J .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7tyXQJD9J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zorDXSKt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u7zorDXSKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zorDXSKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zorDXSKt .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-u7zorDXSKt .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u7zorDXSKt .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-u7zorDXSKt .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-u7zorDXSKt .list-box {
  width: 100%;
}
.cid-u7zorDXSKt .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-u7zorDXSKt .list a:hover:before {
  background-position: left !important;
}
.cid-u7zorDXSKt .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-u7zorDXSKt .news-item {
  width: 100%;
}
.cid-u7zorDXSKt .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-u7zorDXSKt .news-title {
  color: #303030;
}
.cid-u7zorDXSKt .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-u7yCipNri9 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-u7yCipNri9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-u7yCipNri9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-u7yCipNri9 .menu_box .navbar.opened,
  .cid-u7yCipNri9 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-u7yCipNri9 .navbar-dropdown {
  position: relative !important;
}
.cid-u7yCipNri9 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-u7yCipNri9 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u7yCipNri9 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-u7yCipNri9 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-u7yCipNri9 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-u7yCipNri9 .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #181a25;
  }
  .cid-u7yCipNri9 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-u7yCipNri9 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-u7yCipNri9 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-u7yCipNri9 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-u7yCipNri9 .offcanvas-body .mbr-text,
  .cid-u7yCipNri9 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-u7yCipNri9 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-u7yCipNri9 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-u7yCipNri9 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1e6185;
  }
  .cid-u7yCipNri9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-u7yCipNri9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-u7yCipNri9 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-u7yCipNri9 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-u7yCipNri9 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-u7yCipNri9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7yCipNri9 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-u7yCipNri9 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-u7yCipNri9 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-u7yCipNri9 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-u7yCipNri9 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-u7yCipNri9 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-u7yCipNri9 .nav-item {
    margin: 0 !important;
  }
}
.cid-u7yCipNri9 .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.cid-u7yCipNri9 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #181a25;
  transition: all 0.3s ease-out;
}
.cid-u7yCipNri9 .nav-item .nav-link:hover {
  color: #181a25 !important;
}
.cid-u7yCipNri9 .nav-item .nav-link:hover::before {
  width: 100%;
}
.cid-u7yCipNri9 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-u7yCipNri9 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-u7yCipNri9 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-u7yCipNri9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7yCipNri9 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-u7yCipNri9 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-u7yCipNri9 .offcanvas_box {
    display: none;
  }
}
.cid-u7yCipNri9 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-u7yCipNri9 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-u7yCipNri9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-u7yCipNri9 .container {
  display: flex;
  margin: auto;
}
.cid-u7yCipNri9 .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u7yCipNri9 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u7yCipNri9 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-u7yCipNri9 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-u7yCipNri9 .navbar-nav {
    margin: 0;
  }
}
.cid-u7yCipNri9 .dropdown-menu,
.cid-u7yCipNri9 .navbar.opened {
  background-color: false !important;
}
.cid-u7yCipNri9 .nav-item:focus,
.cid-u7yCipNri9 .nav-link:focus {
  outline: none;
}
.cid-u7yCipNri9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7yCipNri9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7yCipNri9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7yCipNri9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7yCipNri9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7yCipNri9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7yCipNri9 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-u7yCipNri9 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-u7yCipNri9 .navbar.opened {
  transition: all 0.3s;
}
.cid-u7yCipNri9 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-u7yCipNri9 .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-u7yCipNri9 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-u7yCipNri9 .navbar.collapsed {
  justify-content: center;
}
.cid-u7yCipNri9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7yCipNri9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u7yCipNri9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7yCipNri9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7yCipNri9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7yCipNri9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-u7yCipNri9 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u7yCipNri9 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-u7yCipNri9 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-u7yCipNri9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7yCipNri9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7yCipNri9 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-u7yCipNri9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7yCipNri9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-u7yCipNri9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7yCipNri9 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-u7yCipNri9 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u7yCipNri9 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-u7yCipNri9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7yCipNri9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7yCipNri9 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-u7yCipNri9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7yCipNri9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7yCipNri9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7yCipNri9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7yCipNri9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-u7yCipNri9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7yCipNri9 .dropdown-item.active,
.cid-u7yCipNri9 .dropdown-item:active {
  background-color: transparent;
}
.cid-u7yCipNri9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7yCipNri9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7yCipNri9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7yCipNri9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7yCipNri9 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-u7yCipNri9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7yCipNri9 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #1e6185;
}
.cid-u7yCipNri9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1e6185;
}
.cid-u7yCipNri9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7yCipNri9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7yCipNri9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7yCipNri9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7yCipNri9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7yCipNri9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7yCipNri9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7yCipNri9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7yCipNri9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-u7yCipNri9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7yCipNri9 .navbar {
    height: 70px;
  }
  .cid-u7yCipNri9 .navbar.opened {
    height: auto;
  }
  .cid-u7yCipNri9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7yCipNri9 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-u7yCipNri9 .container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .cid-u7yCipNri9 .container-fluid {
    padding-left: 130px;
    padding-right: 130px;
  }
}
.cid-u7yCipNri9 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-u7yCipNri9 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  padding: 20px 35px;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-u7yCipNri9 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-u7yCipNri9 .navbar-caption:hover {
  opacity: .5;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u7yCipNri9 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-u7yCipNri9 .text_widget {
  margin-bottom: 32px;
}
.cid-u7yCipNri9 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-u7yCipNri9 .text_widget a:hover {
  color: #181a25 !important;
}
.cid-u7yCipNri9 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u7yCipNri9 .navbar-caption {
  color: #ffffff;
}
.cid-u7yCipNri9 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-u7yCipNri9 .mbr-section-subtitle,
.cid-u7yCipNri9 .text_widget,
.cid-u7yCipNri9 .mbr-section-btn {
  text-align: left;
}
.cid-u7yCipNri9 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-u7yCir3wrF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-u7yCir3wrF .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yCir3wrF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7yCir3wrF .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7yCir3wrF .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u7yCir3wrF .container {
    padding: 0 20px;
  }
}
.cid-u7yCir3wrF .row {
  padding: 90px 82px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7yCir3wrF .row {
    padding: 50px 16px;
  }
}
.cid-u7yCir3wrF .row .blur-wrap_1 {
  position: absolute;
  top: -8rem;
  left: 36%;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(120px);
}
.cid-u7yCir3wrF .row .blur-wrap_2 {
  position: absolute;
  bottom: -8rem;
  right: 15%;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(150px);
}
.cid-u7yCir3wrF .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #1e6185;
  opacity: 1;
}
.cid-u7yCir3wrF .row .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-u7yCir3wrF .row .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-u7yCir3wrF .row .title-wrapper .desc-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u7yCir3wrF .row .title-wrapper .desc-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u7yCir3wrF .row .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding: 5px;
  border: 1px solid #fccfd3;
  border-radius: 10px;
  opacity: .5;
}
.cid-u7yCir3wrF .row .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7yCir3wrF .row .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u7yCir3wrF .row .image-wrapper {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-u7yCir3wrF .row .image-wrapper {
    min-height: 450px;
  }
}
.cid-u7yCir3wrF .row .image-wrapper img {
  position: absolute;
  right: 20%;
  border-radius: 50px;
  height: 400px;
  width: 270px;
  object-fit: cover;
  z-index: 2;
  transform: rotate(15deg);
}
.cid-u7yCir3wrF .row .image-wrapper img:nth-child(2) {
  height: 180px;
  width: 180px;
  right: 0;
  bottom: 12%;
  transform: rotate(45deg);
}
.cid-u7yCir3wrF .row .image-wrapper img:last-child {
  width: 250px;
  height: 550px;
  bottom: -12rem;
  right: auto;
  left: 6rem;
  z-index: 1;
  transform: rotate(-45deg);
  border-radius: 50%;
}
.cid-u7yCir3wrF .mbr-desc {
  color: #ffffff;
}
.cid-u7yCir3wrF .mbr-section-title {
  color: #ffffff;
}
.cid-u7yCir3wrF .mbr-text {
  color: #ffffff;
}
.cid-u7yCir3wrF .mbr-desc,
.cid-u7yCir3wrF .desc-wrapper {
  color: #ffffff;
}
.cid-u7yCirwdfA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7yCirwdfA .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yCirwdfA .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-u7yCirwdfA .container {
    padding: 10px 8px;
  }
}
.cid-u7yCirwdfA .row {
  border-radius: 25px;
  background-color: #ffffff;
  margin: 0;
  overflow: hidden;
  padding: 100px 40px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-u7yCirwdfA .row {
    padding: 50px 10px;
  }
}
.cid-u7yCirwdfA .item {
  margin-bottom: 16px;
}
.cid-u7yCirwdfA .item:last-child {
  margin-bottom: 0;
}
.cid-u7yCirwdfA .item .item-wrapper {
  position: relative;
  display: flex;
  border-radius: 33px !important;
  padding: 25px;
  overflow: hidden;
}
.cid-u7yCirwdfA .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e6185;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-u7yCirwdfA .item .item-wrapper {
    padding: 20px 15px;
    display: block;
  }
}
.cid-u7yCirwdfA .item .item-wrapper .item-img {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u7yCirwdfA .item .item-wrapper .item-img {
    margin: 0 0 20px 0;
  }
}
.cid-u7yCirwdfA .item .item-wrapper .item-img img {
  width: 260px;
  height: 100%;
  border-radius: 25px !important;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-u7yCirwdfA .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-u7yCirwdfA .item .item-wrapper .item-img img {
    width: 100%;
    height: 140px;
  }
}
.cid-u7yCirwdfA .item .item-wrapper .item-img .mbr-iconfont {
  position: absolute;
  font-size: 130px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u7yCirwdfA .item .item-wrapper .item-img .mbr-iconfont {
    font-size: 64px;
  }
}
.cid-u7yCirwdfA .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  margin-right: 100px;
  padding: 30px 0;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-u7yCirwdfA .item .item-wrapper .item-content {
    margin-right: 0;
    padding: 0;
    width: 100%;
  }
}
.cid-u7yCirwdfA .item .item-wrapper .item-content .card-title {
  margin-bottom: 100px;
}
@media (min-width: 992px) {
  .cid-u7yCirwdfA .item .item-wrapper .item-content .card-title {
    line-height: 50px;
  }
}
@media (max-width: 992px) {
  .cid-u7yCirwdfA .item .item-wrapper .item-content .card-title {
    margin-bottom: 20px;
  }
}
.cid-u7yCirwdfA .item .item-wrapper .item-content .card-text {
  margin-bottom: 0;
}
.cid-u7yCirwdfA .item .item-wrapper .tags-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  height: fit-content;
}
@media (max-width: 992px) {
  .cid-u7yCirwdfA .item .item-wrapper .tags-wrapper {
    margin-top: 20px;
    padding: 0;
    justify-content: flex-start;
  }
}
.cid-u7yCirwdfA .item .item-wrapper .tags-wrapper .card-tag {
  border: 1px solid #f0f1f3;
  background-color: #ffffff;
  padding: 5px 25px;
  margin: 0 16px 16px 0;
  border-radius: 300px;
}
.cid-u7yCirwdfA .item-menu-overlay .btn-wrapper {
  margin-top: 15%;
}
.cid-u7yCirwdfA .card-title {
  color: #222222;
}
.cid-u7yCirwdfA .card-text {
  color: #222222;
}
.cid-u7yCirwdfA .card-tag {
  color: #222222;
}
.cid-u7yCis2iU0 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u7yCis2iU0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yCis2iU0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7yCis2iU0 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u7yCis2iU0 .mbr-section-title {
  color: #24262b;
  text-align: left;
}
.cid-u7yCis2iU0 .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-u7yCis2iU0 .cards-row {
  row-gap: 32px;
}
.cid-u7yCis2iU0 .card {
  border-radius: 0;
}
.cid-u7yCis2iU0 .card-wrapper {
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
  background: #1e6185;
}
@media (max-width: 991px) {
  .cid-u7yCis2iU0 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u7yCis2iU0 .icons-wrap {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cid-u7yCis2iU0 .icons-wrap .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-u7yCis2iU0 .icons-wrap .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #fccfd3;
}
.cid-u7yCis2iU0 .card-title {
  margin-bottom: 8px;
  color: #ffffff;
}
.cid-u7yCis2iU0 .card-subtitle {
  color: #24262b;
}
.cid-u7yCis2iU0 .card-bottom-wrap {
  margin-top: 24px;
}
.cid-u7yCis2iU0 .card-name {
  color: #24262b;
}
.cid-u7yCis2iU0 .card-text {
  color: #24262b;
}
.cid-u7yCisNSEn {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e6185;
}
.cid-u7yCisNSEn .wrapper {
  background-color: #ffffff;
}
.cid-u7yCisNSEn li {
  list-style-type: none;
}
.cid-u7yCisNSEn .contact-info-m {
  margin-bottom: 1.875rem;
}
.cid-u7yCisNSEn .list-1 li {
  margin-bottom: 1rem;
}
.cid-u7yCisNSEn .list-1 li:last-child {
  margin-bottom: 0;
}
.cid-u7yCisNSEn .list-2 li {
  margin-bottom: 1.875rem;
}
.cid-u7yCisNSEn .list-2 li:last-child {
  margin-bottom: 0;
}
.cid-u7yCisNSEn ul {
  margin: 0;
}
.cid-u7yCisNSEn .logo {
  width: auto;
  height: 140px;
  object-fit: cover;
}
.cid-u7yCisNSEn .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yCisNSEn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zorDXSKt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u7zorDXSKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zorDXSKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zorDXSKt .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-u7zorDXSKt .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u7zorDXSKt .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-u7zorDXSKt .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-u7zorDXSKt .list-box {
  width: 100%;
}
.cid-u7zorDXSKt .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-u7zorDXSKt .list a:hover:before {
  background-position: left !important;
}
.cid-u7zorDXSKt .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-u7zorDXSKt .news-item {
  width: 100%;
}
.cid-u7zorDXSKt .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-u7zorDXSKt .news-title {
  color: #303030;
}
.cid-u7zorDXSKt .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-u7yDPoOf4u .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-u7yDPoOf4u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-u7yDPoOf4u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-u7yDPoOf4u .menu_box .navbar.opened,
  .cid-u7yDPoOf4u .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-u7yDPoOf4u .navbar-dropdown {
  position: relative !important;
}
.cid-u7yDPoOf4u .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-u7yDPoOf4u .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u7yDPoOf4u .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-u7yDPoOf4u .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-u7yDPoOf4u .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-u7yDPoOf4u .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #181a25;
  }
  .cid-u7yDPoOf4u .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-u7yDPoOf4u .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-u7yDPoOf4u .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-u7yDPoOf4u .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-u7yDPoOf4u .offcanvas-body .mbr-text,
  .cid-u7yDPoOf4u .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-u7yDPoOf4u .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-u7yDPoOf4u .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-u7yDPoOf4u .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1e6185;
  }
  .cid-u7yDPoOf4u .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-u7yDPoOf4u .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-u7yDPoOf4u .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-u7yDPoOf4u .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-u7yDPoOf4u ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-u7yDPoOf4u .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7yDPoOf4u .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-u7yDPoOf4u .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-u7yDPoOf4u li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-u7yDPoOf4u .lg_brand {
    margin: 0 1rem;
  }
}
.cid-u7yDPoOf4u .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-u7yDPoOf4u .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-u7yDPoOf4u .nav-item {
    margin: 0 !important;
  }
}
.cid-u7yDPoOf4u .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.cid-u7yDPoOf4u .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #181a25;
  transition: all 0.3s ease-out;
}
.cid-u7yDPoOf4u .nav-item .nav-link:hover {
  color: #181a25 !important;
}
.cid-u7yDPoOf4u .nav-item .nav-link:hover::before {
  width: 100%;
}
.cid-u7yDPoOf4u .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-u7yDPoOf4u .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-u7yDPoOf4u .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-u7yDPoOf4u .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7yDPoOf4u .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-u7yDPoOf4u .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-u7yDPoOf4u .offcanvas_box {
    display: none;
  }
}
.cid-u7yDPoOf4u .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-u7yDPoOf4u .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-u7yDPoOf4u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-u7yDPoOf4u .container {
  display: flex;
  margin: auto;
}
.cid-u7yDPoOf4u .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u7yDPoOf4u .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u7yDPoOf4u .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-u7yDPoOf4u .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-u7yDPoOf4u .navbar-nav {
    margin: 0;
  }
}
.cid-u7yDPoOf4u .dropdown-menu,
.cid-u7yDPoOf4u .navbar.opened {
  background-color: false !important;
}
.cid-u7yDPoOf4u .nav-item:focus,
.cid-u7yDPoOf4u .nav-link:focus {
  outline: none;
}
.cid-u7yDPoOf4u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7yDPoOf4u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7yDPoOf4u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7yDPoOf4u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7yDPoOf4u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7yDPoOf4u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7yDPoOf4u .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-u7yDPoOf4u .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-u7yDPoOf4u .navbar.opened {
  transition: all 0.3s;
}
.cid-u7yDPoOf4u .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-u7yDPoOf4u .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-u7yDPoOf4u .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-u7yDPoOf4u .navbar.collapsed {
  justify-content: center;
}
.cid-u7yDPoOf4u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7yDPoOf4u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u7yDPoOf4u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7yDPoOf4u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7yDPoOf4u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7yDPoOf4u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-u7yDPoOf4u .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u7yDPoOf4u .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-u7yDPoOf4u .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-u7yDPoOf4u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7yDPoOf4u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7yDPoOf4u .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-u7yDPoOf4u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7yDPoOf4u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-u7yDPoOf4u .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7yDPoOf4u .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-u7yDPoOf4u .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u7yDPoOf4u .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-u7yDPoOf4u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7yDPoOf4u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7yDPoOf4u .navbar .icons-menu {
    padding: 0;
  }
}
.cid-u7yDPoOf4u .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7yDPoOf4u .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7yDPoOf4u .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7yDPoOf4u .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7yDPoOf4u .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-u7yDPoOf4u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7yDPoOf4u .dropdown-item.active,
.cid-u7yDPoOf4u .dropdown-item:active {
  background-color: transparent;
}
.cid-u7yDPoOf4u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7yDPoOf4u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7yDPoOf4u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7yDPoOf4u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7yDPoOf4u ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-u7yDPoOf4u .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7yDPoOf4u button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #1e6185;
}
.cid-u7yDPoOf4u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1e6185;
}
.cid-u7yDPoOf4u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7yDPoOf4u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7yDPoOf4u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7yDPoOf4u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7yDPoOf4u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7yDPoOf4u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7yDPoOf4u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7yDPoOf4u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7yDPoOf4u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-u7yDPoOf4u .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7yDPoOf4u .navbar {
    height: 70px;
  }
  .cid-u7yDPoOf4u .navbar.opened {
    height: auto;
  }
  .cid-u7yDPoOf4u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7yDPoOf4u .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-u7yDPoOf4u .container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .cid-u7yDPoOf4u .container-fluid {
    padding-left: 130px;
    padding-right: 130px;
  }
}
.cid-u7yDPoOf4u .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-u7yDPoOf4u .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  padding: 20px 35px;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-u7yDPoOf4u .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-u7yDPoOf4u .navbar-caption:hover {
  opacity: .5;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u7yDPoOf4u .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-u7yDPoOf4u .text_widget {
  margin-bottom: 32px;
}
.cid-u7yDPoOf4u .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-u7yDPoOf4u .text_widget a:hover {
  color: #181a25 !important;
}
.cid-u7yDPoOf4u .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u7yDPoOf4u .navbar-caption {
  color: #ffffff;
}
.cid-u7yDPoOf4u .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-u7yDPoOf4u .mbr-section-subtitle,
.cid-u7yDPoOf4u .text_widget,
.cid-u7yDPoOf4u .mbr-section-btn {
  text-align: left;
}
.cid-u7yDPoOf4u a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-u7yDPpU6J7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-u7yDPpU6J7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yDPpU6J7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7yDPpU6J7 .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7yDPpU6J7 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u7yDPpU6J7 .container {
    padding: 0 20px;
  }
}
.cid-u7yDPpU6J7 .row {
  padding: 90px 82px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7yDPpU6J7 .row {
    padding: 50px 16px;
  }
}
.cid-u7yDPpU6J7 .row .blur-wrap_1 {
  position: absolute;
  top: -8rem;
  left: 36%;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(120px);
}
.cid-u7yDPpU6J7 .row .blur-wrap_2 {
  position: absolute;
  bottom: -8rem;
  right: 15%;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(150px);
}
.cid-u7yDPpU6J7 .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #1e6185;
  opacity: 1;
}
.cid-u7yDPpU6J7 .row .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-u7yDPpU6J7 .row .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-u7yDPpU6J7 .row .title-wrapper .desc-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u7yDPpU6J7 .row .title-wrapper .desc-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u7yDPpU6J7 .row .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding: 5px;
  border: 1px solid #fccfd3;
  border-radius: 10px;
  opacity: .5;
}
.cid-u7yDPpU6J7 .row .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7yDPpU6J7 .row .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u7yDPpU6J7 .row .image-wrapper {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-u7yDPpU6J7 .row .image-wrapper {
    min-height: 450px;
  }
}
.cid-u7yDPpU6J7 .row .image-wrapper img {
  position: absolute;
  right: 20%;
  border-radius: 50px;
  height: 400px;
  width: 270px;
  object-fit: cover;
  z-index: 2;
  transform: rotate(15deg);
}
.cid-u7yDPpU6J7 .row .image-wrapper img:nth-child(2) {
  height: 180px;
  width: 180px;
  right: 0;
  bottom: 12%;
  transform: rotate(45deg);
}
.cid-u7yDPpU6J7 .row .image-wrapper img:last-child {
  width: 250px;
  height: 550px;
  bottom: -12rem;
  right: auto;
  left: 6rem;
  z-index: 1;
  transform: rotate(-45deg);
  border-radius: 50%;
}
.cid-u7yDPpU6J7 .mbr-desc {
  color: #ffffff;
}
.cid-u7yDPpU6J7 .mbr-section-title {
  color: #ffffff;
}
.cid-u7yDPpU6J7 .mbr-text {
  color: #ffffff;
}
.cid-u7yDPpU6J7 .mbr-desc,
.cid-u7yDPpU6J7 .desc-wrapper {
  color: #ffffff;
}
.cid-u7yDPqOTCe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7yDPqOTCe .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yDPqOTCe .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-u7yDPqOTCe .container {
    padding: 10px 8px;
  }
}
.cid-u7yDPqOTCe .row {
  border-radius: 25px;
  background-color: #ffffff;
  margin: 0;
  overflow: hidden;
  padding: 100px 40px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-u7yDPqOTCe .row {
    padding: 50px 10px;
  }
}
.cid-u7yDPqOTCe .item {
  margin-bottom: 16px;
}
.cid-u7yDPqOTCe .item:last-child {
  margin-bottom: 0;
}
.cid-u7yDPqOTCe .item .item-wrapper {
  position: relative;
  display: flex;
  border-radius: 33px !important;
  padding: 25px;
  overflow: hidden;
}
.cid-u7yDPqOTCe .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e6185;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-u7yDPqOTCe .item .item-wrapper {
    padding: 20px 15px;
    display: block;
  }
}
.cid-u7yDPqOTCe .item .item-wrapper .item-img {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u7yDPqOTCe .item .item-wrapper .item-img {
    margin: 0 0 20px 0;
  }
}
.cid-u7yDPqOTCe .item .item-wrapper .item-img img {
  width: 260px;
  height: 100%;
  border-radius: 25px !important;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-u7yDPqOTCe .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-u7yDPqOTCe .item .item-wrapper .item-img img {
    width: 100%;
    height: 140px;
  }
}
.cid-u7yDPqOTCe .item .item-wrapper .item-img .mbr-iconfont {
  position: absolute;
  font-size: 130px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u7yDPqOTCe .item .item-wrapper .item-img .mbr-iconfont {
    font-size: 64px;
  }
}
.cid-u7yDPqOTCe .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  margin-right: 100px;
  padding: 30px 0;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-u7yDPqOTCe .item .item-wrapper .item-content {
    margin-right: 0;
    padding: 0;
    width: 100%;
  }
}
.cid-u7yDPqOTCe .item .item-wrapper .item-content .card-title {
  margin-bottom: 100px;
}
@media (min-width: 992px) {
  .cid-u7yDPqOTCe .item .item-wrapper .item-content .card-title {
    line-height: 50px;
  }
}
@media (max-width: 992px) {
  .cid-u7yDPqOTCe .item .item-wrapper .item-content .card-title {
    margin-bottom: 20px;
  }
}
.cid-u7yDPqOTCe .item .item-wrapper .item-content .card-text {
  margin-bottom: 0;
}
.cid-u7yDPqOTCe .item .item-wrapper .tags-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  height: fit-content;
}
@media (max-width: 992px) {
  .cid-u7yDPqOTCe .item .item-wrapper .tags-wrapper {
    margin-top: 20px;
    padding: 0;
    justify-content: flex-start;
  }
}
.cid-u7yDPqOTCe .item .item-wrapper .tags-wrapper .card-tag {
  border: 1px solid #f0f1f3;
  background-color: #ffffff;
  padding: 5px 25px;
  margin: 0 16px 16px 0;
  border-radius: 300px;
}
.cid-u7yDPqOTCe .item-menu-overlay .btn-wrapper {
  margin-top: 15%;
}
.cid-u7yDPqOTCe .card-title {
  color: #222222;
}
.cid-u7yDPqOTCe .card-text {
  color: #222222;
}
.cid-u7yDPqOTCe .card-tag {
  color: #222222;
}
.cid-u7yDPr90cX {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u7yDPr90cX .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yDPr90cX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7yDPr90cX .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u7yDPr90cX .mbr-section-title {
  color: #24262b;
  text-align: left;
}
.cid-u7yDPr90cX .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-u7yDPr90cX .cards-row {
  row-gap: 32px;
}
.cid-u7yDPr90cX .card {
  border-radius: 0;
}
.cid-u7yDPr90cX .card-wrapper {
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
  background: #1e6185;
}
@media (max-width: 991px) {
  .cid-u7yDPr90cX .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u7yDPr90cX .icons-wrap {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cid-u7yDPr90cX .icons-wrap .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-u7yDPr90cX .icons-wrap .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #fccfd3;
}
.cid-u7yDPr90cX .card-title {
  margin-bottom: 8px;
  color: #ffffff;
}
.cid-u7yDPr90cX .card-subtitle {
  color: #24262b;
}
.cid-u7yDPr90cX .card-bottom-wrap {
  margin-top: 24px;
}
.cid-u7yDPr90cX .card-name {
  color: #24262b;
}
.cid-u7yDPr90cX .card-text {
  color: #24262b;
}
.cid-u7zorDXSKt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u7zorDXSKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zorDXSKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zorDXSKt .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-u7zorDXSKt .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u7zorDXSKt .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-u7zorDXSKt .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-u7zorDXSKt .list-box {
  width: 100%;
}
.cid-u7zorDXSKt .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-u7zorDXSKt .list a:hover:before {
  background-position: left !important;
}
.cid-u7zorDXSKt .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-u7zorDXSKt .news-item {
  width: 100%;
}
.cid-u7zorDXSKt .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-u7zorDXSKt .news-title {
  color: #303030;
}
.cid-u7zorDXSKt .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-u7yDPs4epd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e6185;
}
.cid-u7yDPs4epd .wrapper {
  background-color: #ffffff;
}
.cid-u7yDPs4epd li {
  list-style-type: none;
}
.cid-u7yDPs4epd .contact-info-m {
  margin-bottom: 1.875rem;
}
.cid-u7yDPs4epd .list-1 li {
  margin-bottom: 1rem;
}
.cid-u7yDPs4epd .list-1 li:last-child {
  margin-bottom: 0;
}
.cid-u7yDPs4epd .list-2 li {
  margin-bottom: 1.875rem;
}
.cid-u7yDPs4epd .list-2 li:last-child {
  margin-bottom: 0;
}
.cid-u7yDPs4epd ul {
  margin: 0;
}
.cid-u7yDPs4epd .logo {
  width: auto;
  height: 140px;
  object-fit: cover;
}
.cid-u7yDPs4epd .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yDPs4epd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7yFHk69D2 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-u7yFHk69D2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-u7yFHk69D2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-u7yFHk69D2 .menu_box .navbar.opened,
  .cid-u7yFHk69D2 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-u7yFHk69D2 .navbar-dropdown {
  position: relative !important;
}
.cid-u7yFHk69D2 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-u7yFHk69D2 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u7yFHk69D2 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-u7yFHk69D2 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-u7yFHk69D2 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-u7yFHk69D2 .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #181a25;
  }
  .cid-u7yFHk69D2 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-u7yFHk69D2 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-u7yFHk69D2 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-u7yFHk69D2 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-u7yFHk69D2 .offcanvas-body .mbr-text,
  .cid-u7yFHk69D2 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-u7yFHk69D2 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-u7yFHk69D2 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-u7yFHk69D2 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1e6185;
  }
  .cid-u7yFHk69D2 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-u7yFHk69D2 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-u7yFHk69D2 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-u7yFHk69D2 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-u7yFHk69D2 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-u7yFHk69D2 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7yFHk69D2 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-u7yFHk69D2 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-u7yFHk69D2 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-u7yFHk69D2 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-u7yFHk69D2 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-u7yFHk69D2 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-u7yFHk69D2 .nav-item {
    margin: 0 !important;
  }
}
.cid-u7yFHk69D2 .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.cid-u7yFHk69D2 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #181a25;
  transition: all 0.3s ease-out;
}
.cid-u7yFHk69D2 .nav-item .nav-link:hover {
  color: #181a25 !important;
}
.cid-u7yFHk69D2 .nav-item .nav-link:hover::before {
  width: 100%;
}
.cid-u7yFHk69D2 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-u7yFHk69D2 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-u7yFHk69D2 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-u7yFHk69D2 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7yFHk69D2 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-u7yFHk69D2 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-u7yFHk69D2 .offcanvas_box {
    display: none;
  }
}
.cid-u7yFHk69D2 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-u7yFHk69D2 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-u7yFHk69D2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-u7yFHk69D2 .container {
  display: flex;
  margin: auto;
}
.cid-u7yFHk69D2 .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u7yFHk69D2 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u7yFHk69D2 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-u7yFHk69D2 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-u7yFHk69D2 .navbar-nav {
    margin: 0;
  }
}
.cid-u7yFHk69D2 .dropdown-menu,
.cid-u7yFHk69D2 .navbar.opened {
  background-color: false !important;
}
.cid-u7yFHk69D2 .nav-item:focus,
.cid-u7yFHk69D2 .nav-link:focus {
  outline: none;
}
.cid-u7yFHk69D2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7yFHk69D2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7yFHk69D2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7yFHk69D2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7yFHk69D2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7yFHk69D2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7yFHk69D2 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-u7yFHk69D2 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-u7yFHk69D2 .navbar.opened {
  transition: all 0.3s;
}
.cid-u7yFHk69D2 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-u7yFHk69D2 .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-u7yFHk69D2 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-u7yFHk69D2 .navbar.collapsed {
  justify-content: center;
}
.cid-u7yFHk69D2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7yFHk69D2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u7yFHk69D2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7yFHk69D2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7yFHk69D2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7yFHk69D2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-u7yFHk69D2 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u7yFHk69D2 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-u7yFHk69D2 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-u7yFHk69D2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7yFHk69D2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7yFHk69D2 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-u7yFHk69D2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7yFHk69D2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-u7yFHk69D2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7yFHk69D2 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-u7yFHk69D2 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u7yFHk69D2 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-u7yFHk69D2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7yFHk69D2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7yFHk69D2 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-u7yFHk69D2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7yFHk69D2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7yFHk69D2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7yFHk69D2 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7yFHk69D2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-u7yFHk69D2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7yFHk69D2 .dropdown-item.active,
.cid-u7yFHk69D2 .dropdown-item:active {
  background-color: transparent;
}
.cid-u7yFHk69D2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7yFHk69D2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7yFHk69D2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7yFHk69D2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7yFHk69D2 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-u7yFHk69D2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7yFHk69D2 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #1e6185;
}
.cid-u7yFHk69D2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1e6185;
}
.cid-u7yFHk69D2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7yFHk69D2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7yFHk69D2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7yFHk69D2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7yFHk69D2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7yFHk69D2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7yFHk69D2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7yFHk69D2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7yFHk69D2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-u7yFHk69D2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7yFHk69D2 .navbar {
    height: 70px;
  }
  .cid-u7yFHk69D2 .navbar.opened {
    height: auto;
  }
  .cid-u7yFHk69D2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7yFHk69D2 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-u7yFHk69D2 .container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .cid-u7yFHk69D2 .container-fluid {
    padding-left: 130px;
    padding-right: 130px;
  }
}
.cid-u7yFHk69D2 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-u7yFHk69D2 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  padding: 20px 35px;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-u7yFHk69D2 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-u7yFHk69D2 .navbar-caption:hover {
  opacity: .5;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u7yFHk69D2 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-u7yFHk69D2 .text_widget {
  margin-bottom: 32px;
}
.cid-u7yFHk69D2 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-u7yFHk69D2 .text_widget a:hover {
  color: #181a25 !important;
}
.cid-u7yFHk69D2 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u7yFHk69D2 .navbar-caption {
  color: #ffffff;
}
.cid-u7yFHk69D2 .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-u7yFHk69D2 .mbr-section-subtitle,
.cid-u7yFHk69D2 .text_widget,
.cid-u7yFHk69D2 .mbr-section-btn {
  text-align: left;
}
.cid-u7yFHk69D2 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-u7yFHl8GCO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-u7yFHl8GCO .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yFHl8GCO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7yFHl8GCO .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7yFHl8GCO .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u7yFHl8GCO .container {
    padding: 0 20px;
  }
}
.cid-u7yFHl8GCO .row {
  padding: 90px 82px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7yFHl8GCO .row {
    padding: 50px 16px;
  }
}
.cid-u7yFHl8GCO .row .blur-wrap_1 {
  position: absolute;
  top: -8rem;
  left: 36%;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(120px);
}
.cid-u7yFHl8GCO .row .blur-wrap_2 {
  position: absolute;
  bottom: -8rem;
  right: 15%;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(150px);
}
.cid-u7yFHl8GCO .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #1e6185;
  opacity: 1;
}
.cid-u7yFHl8GCO .row .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-u7yFHl8GCO .row .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-u7yFHl8GCO .row .title-wrapper .desc-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u7yFHl8GCO .row .title-wrapper .desc-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u7yFHl8GCO .row .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding: 5px;
  border: 1px solid #fccfd3;
  border-radius: 10px;
  opacity: .5;
}
.cid-u7yFHl8GCO .row .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7yFHl8GCO .row .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u7yFHl8GCO .row .image-wrapper {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-u7yFHl8GCO .row .image-wrapper {
    min-height: 450px;
  }
}
.cid-u7yFHl8GCO .row .image-wrapper img {
  position: absolute;
  right: 20%;
  border-radius: 50px;
  height: 400px;
  width: 270px;
  object-fit: cover;
  z-index: 2;
  transform: rotate(15deg);
}
.cid-u7yFHl8GCO .row .image-wrapper img:nth-child(2) {
  height: 180px;
  width: 180px;
  right: 0;
  bottom: 12%;
  transform: rotate(45deg);
}
.cid-u7yFHl8GCO .row .image-wrapper img:last-child {
  width: 250px;
  height: 550px;
  bottom: -12rem;
  right: auto;
  left: 6rem;
  z-index: 1;
  transform: rotate(-45deg);
  border-radius: 50%;
}
.cid-u7yFHl8GCO .mbr-desc {
  color: #ffffff;
}
.cid-u7yFHl8GCO .mbr-section-title {
  color: #ffffff;
}
.cid-u7yFHl8GCO .mbr-text {
  color: #ffffff;
}
.cid-u7yFHl8GCO .mbr-desc,
.cid-u7yFHl8GCO .desc-wrapper {
  color: #ffffff;
}
.cid-u7yFHlxuhQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7yFHlxuhQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yFHlxuhQ .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-u7yFHlxuhQ .container {
    padding: 10px 8px;
  }
}
.cid-u7yFHlxuhQ .row {
  border-radius: 25px;
  background-color: #ffffff;
  margin: 0;
  overflow: hidden;
  padding: 100px 40px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-u7yFHlxuhQ .row {
    padding: 50px 10px;
  }
}
.cid-u7yFHlxuhQ .item {
  margin-bottom: 16px;
}
.cid-u7yFHlxuhQ .item:last-child {
  margin-bottom: 0;
}
.cid-u7yFHlxuhQ .item .item-wrapper {
  position: relative;
  display: flex;
  border-radius: 33px !important;
  padding: 25px;
  overflow: hidden;
}
.cid-u7yFHlxuhQ .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e6185;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-u7yFHlxuhQ .item .item-wrapper {
    padding: 20px 15px;
    display: block;
  }
}
.cid-u7yFHlxuhQ .item .item-wrapper .item-img {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u7yFHlxuhQ .item .item-wrapper .item-img {
    margin: 0 0 20px 0;
  }
}
.cid-u7yFHlxuhQ .item .item-wrapper .item-img img {
  width: 260px;
  height: 100%;
  border-radius: 25px !important;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-u7yFHlxuhQ .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-u7yFHlxuhQ .item .item-wrapper .item-img img {
    width: 100%;
    height: 140px;
  }
}
.cid-u7yFHlxuhQ .item .item-wrapper .item-img .mbr-iconfont {
  position: absolute;
  font-size: 130px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u7yFHlxuhQ .item .item-wrapper .item-img .mbr-iconfont {
    font-size: 64px;
  }
}
.cid-u7yFHlxuhQ .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  margin-right: 100px;
  padding: 30px 0;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-u7yFHlxuhQ .item .item-wrapper .item-content {
    margin-right: 0;
    padding: 0;
    width: 100%;
  }
}
.cid-u7yFHlxuhQ .item .item-wrapper .item-content .card-title {
  margin-bottom: 100px;
}
@media (min-width: 992px) {
  .cid-u7yFHlxuhQ .item .item-wrapper .item-content .card-title {
    line-height: 50px;
  }
}
@media (max-width: 992px) {
  .cid-u7yFHlxuhQ .item .item-wrapper .item-content .card-title {
    margin-bottom: 20px;
  }
}
.cid-u7yFHlxuhQ .item .item-wrapper .item-content .card-text {
  margin-bottom: 0;
}
.cid-u7yFHlxuhQ .item .item-wrapper .tags-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  height: fit-content;
}
@media (max-width: 992px) {
  .cid-u7yFHlxuhQ .item .item-wrapper .tags-wrapper {
    margin-top: 20px;
    padding: 0;
    justify-content: flex-start;
  }
}
.cid-u7yFHlxuhQ .item .item-wrapper .tags-wrapper .card-tag {
  border: 1px solid #f0f1f3;
  background-color: #ffffff;
  padding: 5px 25px;
  margin: 0 16px 16px 0;
  border-radius: 300px;
}
.cid-u7yFHlxuhQ .item-menu-overlay .btn-wrapper {
  margin-top: 15%;
}
.cid-u7yFHlxuhQ .card-title {
  color: #222222;
}
.cid-u7yFHlxuhQ .card-text {
  color: #222222;
}
.cid-u7yFHlxuhQ .card-tag {
  color: #222222;
}
.cid-u7yFHlXc44 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u7yFHlXc44 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yFHlXc44 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7yFHlXc44 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u7yFHlXc44 .mbr-section-title {
  color: #24262b;
  text-align: left;
}
.cid-u7yFHlXc44 .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-u7yFHlXc44 .cards-row {
  row-gap: 32px;
}
.cid-u7yFHlXc44 .card {
  border-radius: 0;
}
.cid-u7yFHlXc44 .card-wrapper {
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
  background: #1e6185;
}
@media (max-width: 991px) {
  .cid-u7yFHlXc44 .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u7yFHlXc44 .icons-wrap {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cid-u7yFHlXc44 .icons-wrap .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-u7yFHlXc44 .icons-wrap .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #fccfd3;
}
.cid-u7yFHlXc44 .card-title {
  margin-bottom: 8px;
  color: #ffffff;
}
.cid-u7yFHlXc44 .card-subtitle {
  color: #24262b;
}
.cid-u7yFHlXc44 .card-bottom-wrap {
  margin-top: 24px;
}
.cid-u7yFHlXc44 .card-name {
  color: #24262b;
}
.cid-u7yFHlXc44 .card-text {
  color: #24262b;
}
.cid-u7yFHmyloD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e6185;
}
.cid-u7yFHmyloD .wrapper {
  background-color: #ffffff;
}
.cid-u7yFHmyloD li {
  list-style-type: none;
}
.cid-u7yFHmyloD .contact-info-m {
  margin-bottom: 1.875rem;
}
.cid-u7yFHmyloD .list-1 li {
  margin-bottom: 1rem;
}
.cid-u7yFHmyloD .list-1 li:last-child {
  margin-bottom: 0;
}
.cid-u7yFHmyloD .list-2 li {
  margin-bottom: 1.875rem;
}
.cid-u7yFHmyloD .list-2 li:last-child {
  margin-bottom: 0;
}
.cid-u7yFHmyloD ul {
  margin: 0;
}
.cid-u7yFHmyloD .logo {
  width: auto;
  height: 140px;
  object-fit: cover;
}
.cid-u7yFHmyloD .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yFHmyloD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zorDXSKt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u7zorDXSKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zorDXSKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zorDXSKt .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-u7zorDXSKt .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u7zorDXSKt .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-u7zorDXSKt .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-u7zorDXSKt .list-box {
  width: 100%;
}
.cid-u7zorDXSKt .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-u7zorDXSKt .list a:hover:before {
  background-position: left !important;
}
.cid-u7zorDXSKt .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-u7zorDXSKt .news-item {
  width: 100%;
}
.cid-u7zorDXSKt .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-u7zorDXSKt .news-title {
  color: #303030;
}
.cid-u7zorDXSKt .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-u7yIOViucj .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-u7yIOViucj .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-u7yIOViucj .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-u7yIOViucj .menu_box .navbar.opened,
  .cid-u7yIOViucj .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-u7yIOViucj .navbar-dropdown {
  position: relative !important;
}
.cid-u7yIOViucj .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-u7yIOViucj .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u7yIOViucj .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-u7yIOViucj .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-u7yIOViucj .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-u7yIOViucj .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #181a25;
  }
  .cid-u7yIOViucj .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-u7yIOViucj .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-u7yIOViucj .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-u7yIOViucj .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-u7yIOViucj .offcanvas-body .mbr-text,
  .cid-u7yIOViucj .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-u7yIOViucj .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-u7yIOViucj .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-u7yIOViucj .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1e6185;
  }
  .cid-u7yIOViucj .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-u7yIOViucj .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-u7yIOViucj .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-u7yIOViucj .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-u7yIOViucj ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-u7yIOViucj .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7yIOViucj .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-u7yIOViucj .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-u7yIOViucj li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-u7yIOViucj .lg_brand {
    margin: 0 1rem;
  }
}
.cid-u7yIOViucj .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-u7yIOViucj .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-u7yIOViucj .nav-item {
    margin: 0 !important;
  }
}
.cid-u7yIOViucj .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.cid-u7yIOViucj .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #181a25;
  transition: all 0.3s ease-out;
}
.cid-u7yIOViucj .nav-item .nav-link:hover {
  color: #181a25 !important;
}
.cid-u7yIOViucj .nav-item .nav-link:hover::before {
  width: 100%;
}
.cid-u7yIOViucj .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-u7yIOViucj .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-u7yIOViucj .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-u7yIOViucj .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7yIOViucj .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-u7yIOViucj .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-u7yIOViucj .offcanvas_box {
    display: none;
  }
}
.cid-u7yIOViucj .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-u7yIOViucj .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-u7yIOViucj .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-u7yIOViucj .container {
  display: flex;
  margin: auto;
}
.cid-u7yIOViucj .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u7yIOViucj .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u7yIOViucj .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-u7yIOViucj .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-u7yIOViucj .navbar-nav {
    margin: 0;
  }
}
.cid-u7yIOViucj .dropdown-menu,
.cid-u7yIOViucj .navbar.opened {
  background-color: false !important;
}
.cid-u7yIOViucj .nav-item:focus,
.cid-u7yIOViucj .nav-link:focus {
  outline: none;
}
.cid-u7yIOViucj .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7yIOViucj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7yIOViucj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7yIOViucj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7yIOViucj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7yIOViucj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7yIOViucj .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-u7yIOViucj .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-u7yIOViucj .navbar.opened {
  transition: all 0.3s;
}
.cid-u7yIOViucj .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-u7yIOViucj .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-u7yIOViucj .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-u7yIOViucj .navbar.collapsed {
  justify-content: center;
}
.cid-u7yIOViucj .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7yIOViucj .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u7yIOViucj .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7yIOViucj .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7yIOViucj .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7yIOViucj .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-u7yIOViucj .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u7yIOViucj .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-u7yIOViucj .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-u7yIOViucj .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7yIOViucj .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7yIOViucj .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-u7yIOViucj .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7yIOViucj .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-u7yIOViucj .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7yIOViucj .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-u7yIOViucj .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u7yIOViucj .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-u7yIOViucj .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7yIOViucj .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7yIOViucj .navbar .icons-menu {
    padding: 0;
  }
}
.cid-u7yIOViucj .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7yIOViucj .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7yIOViucj .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7yIOViucj .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7yIOViucj .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-u7yIOViucj .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7yIOViucj .dropdown-item.active,
.cid-u7yIOViucj .dropdown-item:active {
  background-color: transparent;
}
.cid-u7yIOViucj .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7yIOViucj .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7yIOViucj .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7yIOViucj .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7yIOViucj ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-u7yIOViucj .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7yIOViucj button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #1e6185;
}
.cid-u7yIOViucj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1e6185;
}
.cid-u7yIOViucj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7yIOViucj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7yIOViucj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7yIOViucj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7yIOViucj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7yIOViucj nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7yIOViucj nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7yIOViucj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7yIOViucj a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-u7yIOViucj .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7yIOViucj .navbar {
    height: 70px;
  }
  .cid-u7yIOViucj .navbar.opened {
    height: auto;
  }
  .cid-u7yIOViucj .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7yIOViucj .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-u7yIOViucj .container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .cid-u7yIOViucj .container-fluid {
    padding-left: 130px;
    padding-right: 130px;
  }
}
.cid-u7yIOViucj .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-u7yIOViucj .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  padding: 20px 35px;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-u7yIOViucj .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-u7yIOViucj .navbar-caption:hover {
  opacity: .5;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u7yIOViucj .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-u7yIOViucj .text_widget {
  margin-bottom: 32px;
}
.cid-u7yIOViucj .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-u7yIOViucj .text_widget a:hover {
  color: #181a25 !important;
}
.cid-u7yIOViucj .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u7yIOViucj .navbar-caption {
  color: #ffffff;
}
.cid-u7yIOViucj .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-u7yIOViucj .mbr-section-subtitle,
.cid-u7yIOViucj .text_widget,
.cid-u7yIOViucj .mbr-section-btn {
  text-align: left;
}
.cid-u7yIOViucj a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-u7yIOWyyAa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-u7yIOWyyAa .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yIOWyyAa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7yIOWyyAa .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7yIOWyyAa .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u7yIOWyyAa .container {
    padding: 0 20px;
  }
}
.cid-u7yIOWyyAa .row {
  padding: 90px 82px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7yIOWyyAa .row {
    padding: 50px 16px;
  }
}
.cid-u7yIOWyyAa .row .blur-wrap_1 {
  position: absolute;
  top: -8rem;
  left: 36%;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(120px);
}
.cid-u7yIOWyyAa .row .blur-wrap_2 {
  position: absolute;
  bottom: -8rem;
  right: 15%;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(150px);
}
.cid-u7yIOWyyAa .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #1e6185;
  opacity: 1;
}
.cid-u7yIOWyyAa .row .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-u7yIOWyyAa .row .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-u7yIOWyyAa .row .title-wrapper .desc-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u7yIOWyyAa .row .title-wrapper .desc-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u7yIOWyyAa .row .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding: 5px;
  border: 1px solid #fccfd3;
  border-radius: 10px;
  opacity: .5;
}
.cid-u7yIOWyyAa .row .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7yIOWyyAa .row .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u7yIOWyyAa .row .image-wrapper {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-u7yIOWyyAa .row .image-wrapper {
    min-height: 450px;
  }
}
.cid-u7yIOWyyAa .row .image-wrapper img {
  position: absolute;
  right: 20%;
  border-radius: 50px;
  height: 400px;
  width: 270px;
  object-fit: cover;
  z-index: 2;
  transform: rotate(15deg);
}
.cid-u7yIOWyyAa .row .image-wrapper img:nth-child(2) {
  height: 180px;
  width: 180px;
  right: 0;
  bottom: 12%;
  transform: rotate(45deg);
}
.cid-u7yIOWyyAa .row .image-wrapper img:last-child {
  width: 250px;
  height: 550px;
  bottom: -12rem;
  right: auto;
  left: 6rem;
  z-index: 1;
  transform: rotate(-45deg);
  border-radius: 50%;
}
.cid-u7yIOWyyAa .mbr-desc {
  color: #ffffff;
}
.cid-u7yIOWyyAa .mbr-section-title {
  color: #ffffff;
}
.cid-u7yIOWyyAa .mbr-text {
  color: #ffffff;
}
.cid-u7yIOWyyAa .mbr-desc,
.cid-u7yIOWyyAa .desc-wrapper {
  color: #ffffff;
}
.cid-u7yIOXz6pV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7yIOXz6pV .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yIOXz6pV .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-u7yIOXz6pV .container {
    padding: 10px 8px;
  }
}
.cid-u7yIOXz6pV .row {
  border-radius: 25px;
  background-color: #ffffff;
  margin: 0;
  overflow: hidden;
  padding: 100px 40px;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-u7yIOXz6pV .row {
    padding: 50px 10px;
  }
}
.cid-u7yIOXz6pV .item {
  margin-bottom: 16px;
}
.cid-u7yIOXz6pV .item:last-child {
  margin-bottom: 0;
}
.cid-u7yIOXz6pV .item .item-wrapper {
  position: relative;
  display: flex;
  border-radius: 33px !important;
  padding: 25px;
  overflow: hidden;
}
.cid-u7yIOXz6pV .item .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e6185;
  opacity: .4;
}
@media (max-width: 992px) {
  .cid-u7yIOXz6pV .item .item-wrapper {
    padding: 20px 15px;
    display: block;
  }
}
.cid-u7yIOXz6pV .item .item-wrapper .item-img {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 50px;
}
@media (max-width: 992px) {
  .cid-u7yIOXz6pV .item .item-wrapper .item-img {
    margin: 0 0 20px 0;
  }
}
.cid-u7yIOXz6pV .item .item-wrapper .item-img img {
  width: 260px;
  height: 100%;
  border-radius: 25px !important;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-u7yIOXz6pV .item .item-wrapper .item-img img {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .cid-u7yIOXz6pV .item .item-wrapper .item-img img {
    width: 100%;
    height: 140px;
  }
}
.cid-u7yIOXz6pV .item .item-wrapper .item-img .mbr-iconfont {
  position: absolute;
  font-size: 130px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-u7yIOXz6pV .item .item-wrapper .item-img .mbr-iconfont {
    font-size: 64px;
  }
}
.cid-u7yIOXz6pV .item .item-wrapper .item-content {
  position: relative;
  z-index: 1;
  margin-right: 100px;
  padding: 30px 0;
  width: 65%;
}
@media (max-width: 992px) {
  .cid-u7yIOXz6pV .item .item-wrapper .item-content {
    margin-right: 0;
    padding: 0;
    width: 100%;
  }
}
.cid-u7yIOXz6pV .item .item-wrapper .item-content .card-title {
  margin-bottom: 100px;
}
@media (min-width: 992px) {
  .cid-u7yIOXz6pV .item .item-wrapper .item-content .card-title {
    line-height: 50px;
  }
}
@media (max-width: 992px) {
  .cid-u7yIOXz6pV .item .item-wrapper .item-content .card-title {
    margin-bottom: 20px;
  }
}
.cid-u7yIOXz6pV .item .item-wrapper .item-content .card-text {
  margin-bottom: 0;
}
.cid-u7yIOXz6pV .item .item-wrapper .tags-wrapper {
  position: relative;
  z-index: 1;
  padding: 30px 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  height: fit-content;
}
@media (max-width: 992px) {
  .cid-u7yIOXz6pV .item .item-wrapper .tags-wrapper {
    margin-top: 20px;
    padding: 0;
    justify-content: flex-start;
  }
}
.cid-u7yIOXz6pV .item .item-wrapper .tags-wrapper .card-tag {
  border: 1px solid #f0f1f3;
  background-color: #ffffff;
  padding: 5px 25px;
  margin: 0 16px 16px 0;
  border-radius: 300px;
}
.cid-u7yIOXz6pV .item-menu-overlay .btn-wrapper {
  margin-top: 15%;
}
.cid-u7yIOXz6pV .card-title {
  color: #222222;
}
.cid-u7yIOXz6pV .card-text {
  color: #222222;
}
.cid-u7yIOXz6pV .card-tag {
  color: #222222;
}
.cid-u7yIOYetKT {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u7yIOYetKT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yIOYetKT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7yIOYetKT .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u7yIOYetKT .mbr-section-title {
  color: #24262b;
  text-align: left;
}
.cid-u7yIOYetKT .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-u7yIOYetKT .cards-row {
  row-gap: 32px;
}
.cid-u7yIOYetKT .card {
  border-radius: 0;
}
.cid-u7yIOYetKT .card-wrapper {
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
  background: #1e6185;
}
@media (max-width: 991px) {
  .cid-u7yIOYetKT .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u7yIOYetKT .icons-wrap {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cid-u7yIOYetKT .icons-wrap .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-u7yIOYetKT .icons-wrap .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #fccfd3;
}
.cid-u7yIOYetKT .card-title {
  margin-bottom: 8px;
  color: #ffffff;
}
.cid-u7yIOYetKT .card-subtitle {
  color: #24262b;
}
.cid-u7yIOYetKT .card-bottom-wrap {
  margin-top: 24px;
}
.cid-u7yIOYetKT .card-name {
  color: #24262b;
}
.cid-u7yIOYetKT .card-text {
  color: #24262b;
}
.cid-u7yIOYI4yW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e6185;
}
.cid-u7yIOYI4yW .wrapper {
  background-color: #ffffff;
}
.cid-u7yIOYI4yW li {
  list-style-type: none;
}
.cid-u7yIOYI4yW .contact-info-m {
  margin-bottom: 1.875rem;
}
.cid-u7yIOYI4yW .list-1 li {
  margin-bottom: 1rem;
}
.cid-u7yIOYI4yW .list-1 li:last-child {
  margin-bottom: 0;
}
.cid-u7yIOYI4yW .list-2 li {
  margin-bottom: 1.875rem;
}
.cid-u7yIOYI4yW .list-2 li:last-child {
  margin-bottom: 0;
}
.cid-u7yIOYI4yW ul {
  margin: 0;
}
.cid-u7yIOYI4yW .logo {
  width: auto;
  height: 140px;
  object-fit: cover;
}
.cid-u7yIOYI4yW .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7yIOYI4yW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zorDXSKt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u7zorDXSKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zorDXSKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zorDXSKt .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-u7zorDXSKt .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u7zorDXSKt .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-u7zorDXSKt .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-u7zorDXSKt .list-box {
  width: 100%;
}
.cid-u7zorDXSKt .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-u7zorDXSKt .list a:hover:before {
  background-position: left !important;
}
.cid-u7zorDXSKt .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-u7zorDXSKt .news-item {
  width: 100%;
}
.cid-u7zorDXSKt .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-u7zorDXSKt .news-title {
  color: #303030;
}
.cid-u7zorDXSKt .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-u7tmCC4cmK .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-u7tmCC4cmK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-u7tmCC4cmK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-u7tmCC4cmK .menu_box .navbar.opened,
  .cid-u7tmCC4cmK .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-u7tmCC4cmK .navbar-dropdown {
  position: relative !important;
}
.cid-u7tmCC4cmK .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-u7tmCC4cmK .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u7tmCC4cmK .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-u7tmCC4cmK .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-u7tmCC4cmK .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-u7tmCC4cmK .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #181a25;
  }
  .cid-u7tmCC4cmK .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-u7tmCC4cmK .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-u7tmCC4cmK .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-u7tmCC4cmK .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-u7tmCC4cmK .offcanvas-body .mbr-text,
  .cid-u7tmCC4cmK .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-u7tmCC4cmK .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-u7tmCC4cmK .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-u7tmCC4cmK .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1e6185;
  }
  .cid-u7tmCC4cmK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-u7tmCC4cmK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-u7tmCC4cmK .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-u7tmCC4cmK .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-u7tmCC4cmK ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-u7tmCC4cmK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7tmCC4cmK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-u7tmCC4cmK .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-u7tmCC4cmK li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-u7tmCC4cmK .lg_brand {
    margin: 0 1rem;
  }
}
.cid-u7tmCC4cmK .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-u7tmCC4cmK .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-u7tmCC4cmK .nav-item {
    margin: 0 !important;
  }
}
.cid-u7tmCC4cmK .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.cid-u7tmCC4cmK .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #181a25;
  transition: all 0.3s ease-out;
}
.cid-u7tmCC4cmK .nav-item .nav-link:hover {
  color: #181a25 !important;
}
.cid-u7tmCC4cmK .nav-item .nav-link:hover::before {
  width: 100%;
}
.cid-u7tmCC4cmK .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-u7tmCC4cmK .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-u7tmCC4cmK .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-u7tmCC4cmK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7tmCC4cmK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-u7tmCC4cmK .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-u7tmCC4cmK .offcanvas_box {
    display: none;
  }
}
.cid-u7tmCC4cmK .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-u7tmCC4cmK .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-u7tmCC4cmK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-u7tmCC4cmK .container {
  display: flex;
  margin: auto;
}
.cid-u7tmCC4cmK .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u7tmCC4cmK .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u7tmCC4cmK .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-u7tmCC4cmK .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-u7tmCC4cmK .navbar-nav {
    margin: 0;
  }
}
.cid-u7tmCC4cmK .dropdown-menu,
.cid-u7tmCC4cmK .navbar.opened {
  background-color: false !important;
}
.cid-u7tmCC4cmK .nav-item:focus,
.cid-u7tmCC4cmK .nav-link:focus {
  outline: none;
}
.cid-u7tmCC4cmK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7tmCC4cmK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7tmCC4cmK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7tmCC4cmK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7tmCC4cmK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7tmCC4cmK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7tmCC4cmK .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-u7tmCC4cmK .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-u7tmCC4cmK .navbar.opened {
  transition: all 0.3s;
}
.cid-u7tmCC4cmK .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-u7tmCC4cmK .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-u7tmCC4cmK .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-u7tmCC4cmK .navbar.collapsed {
  justify-content: center;
}
.cid-u7tmCC4cmK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7tmCC4cmK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u7tmCC4cmK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7tmCC4cmK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7tmCC4cmK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7tmCC4cmK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-u7tmCC4cmK .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u7tmCC4cmK .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-u7tmCC4cmK .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-u7tmCC4cmK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7tmCC4cmK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7tmCC4cmK .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-u7tmCC4cmK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7tmCC4cmK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-u7tmCC4cmK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7tmCC4cmK .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-u7tmCC4cmK .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u7tmCC4cmK .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-u7tmCC4cmK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7tmCC4cmK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7tmCC4cmK .navbar .icons-menu {
    padding: 0;
  }
}
.cid-u7tmCC4cmK .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7tmCC4cmK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7tmCC4cmK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7tmCC4cmK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7tmCC4cmK .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-u7tmCC4cmK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7tmCC4cmK .dropdown-item.active,
.cid-u7tmCC4cmK .dropdown-item:active {
  background-color: transparent;
}
.cid-u7tmCC4cmK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7tmCC4cmK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7tmCC4cmK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7tmCC4cmK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7tmCC4cmK ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-u7tmCC4cmK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7tmCC4cmK button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #1e6185;
}
.cid-u7tmCC4cmK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1e6185;
}
.cid-u7tmCC4cmK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7tmCC4cmK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7tmCC4cmK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7tmCC4cmK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7tmCC4cmK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7tmCC4cmK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7tmCC4cmK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7tmCC4cmK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7tmCC4cmK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-u7tmCC4cmK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7tmCC4cmK .navbar {
    height: 70px;
  }
  .cid-u7tmCC4cmK .navbar.opened {
    height: auto;
  }
  .cid-u7tmCC4cmK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7tmCC4cmK .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-u7tmCC4cmK .container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .cid-u7tmCC4cmK .container-fluid {
    padding-left: 130px;
    padding-right: 130px;
  }
}
.cid-u7tmCC4cmK .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-u7tmCC4cmK .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  padding: 20px 35px;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-u7tmCC4cmK .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-u7tmCC4cmK .navbar-caption:hover {
  opacity: .5;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u7tmCC4cmK .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-u7tmCC4cmK .text_widget {
  margin-bottom: 32px;
}
.cid-u7tmCC4cmK .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-u7tmCC4cmK .text_widget a:hover {
  color: #181a25 !important;
}
.cid-u7tmCC4cmK .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u7tmCC4cmK .navbar-caption {
  color: #ffffff;
}
.cid-u7tmCC4cmK .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-u7tmCC4cmK .mbr-section-subtitle,
.cid-u7tmCC4cmK .text_widget,
.cid-u7tmCC4cmK .mbr-section-btn {
  text-align: left;
}
.cid-u7tmCC4cmK a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-u7tmCCHEY5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-u7tmCCHEY5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7tmCCHEY5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7tmCCHEY5 .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7tmCCHEY5 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u7tmCCHEY5 .container {
    padding: 0 20px;
  }
}
.cid-u7tmCCHEY5 .row {
  padding: 90px 82px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7tmCCHEY5 .row {
    padding: 50px 16px;
  }
}
.cid-u7tmCCHEY5 .row .blur-wrap_1 {
  position: absolute;
  top: -8rem;
  left: 36%;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(120px);
}
.cid-u7tmCCHEY5 .row .blur-wrap_2 {
  position: absolute;
  bottom: -8rem;
  right: 15%;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(150px);
}
.cid-u7tmCCHEY5 .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #1e6185;
  opacity: 1;
}
.cid-u7tmCCHEY5 .row .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-u7tmCCHEY5 .row .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-u7tmCCHEY5 .row .title-wrapper .desc-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u7tmCCHEY5 .row .title-wrapper .desc-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u7tmCCHEY5 .row .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding: 5px;
  border: 1px solid #fccfd3;
  border-radius: 10px;
  opacity: .5;
}
.cid-u7tmCCHEY5 .row .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7tmCCHEY5 .row .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u7tmCCHEY5 .row .image-wrapper {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-u7tmCCHEY5 .row .image-wrapper {
    min-height: 450px;
  }
}
.cid-u7tmCCHEY5 .row .image-wrapper img {
  position: absolute;
  right: 20%;
  border-radius: 50px;
  height: 400px;
  width: 270px;
  object-fit: cover;
  z-index: 2;
  transform: rotate(15deg);
}
.cid-u7tmCCHEY5 .row .image-wrapper img:nth-child(2) {
  height: 180px;
  width: 180px;
  right: 0;
  bottom: 12%;
  transform: rotate(45deg);
}
.cid-u7tmCCHEY5 .row .image-wrapper img:last-child {
  width: 250px;
  height: 550px;
  bottom: -12rem;
  right: auto;
  left: 6rem;
  z-index: 1;
  transform: rotate(-45deg);
  border-radius: 50%;
}
.cid-u7tmCCHEY5 .mbr-desc {
  color: #ffffff;
}
.cid-u7tmCCHEY5 .mbr-section-title {
  color: #ffffff;
}
.cid-u7tmCCHEY5 .mbr-text {
  color: #ffffff;
}
.cid-u7tmCCHEY5 .mbr-desc,
.cid-u7tmCCHEY5 .desc-wrapper {
  color: #ffffff;
}
.cid-u7tmCCZ40d {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #0e0e10;
}
.cid-u7tmCCZ40d .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7tmCCZ40d .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-u7tmCCZ40d .container {
    padding: 0 20px;
  }
}
.cid-u7tmCCZ40d .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7tmCCZ40d .row .title-wrapper {
    margin-bottom: 50px;
    height: auto;
  }
}
.cid-u7tmCCZ40d .row .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7tmCCZ40d .row .title-wrapper .mbr-section-subtitle {
  margin-bottom: 32px;
}
.cid-u7tmCCZ40d .row .title-wrapper .list {
  padding: 0;
  margin-bottom: 32px;
  list-style-position: inside;
}
.cid-u7tmCCZ40d .row .title-wrapper .list .item-wrap {
  margin-bottom: 0;
}
.cid-u7tmCCZ40d .row .image-wrapper {
  position: relative;
}
.cid-u7tmCCZ40d .row .image-wrapper img {
  height: 320px;
  object-fit: cover;
  border-radius: 50px;
}
.cid-u7tmCCZ40d .row .image-wrapper .mbr-emoji {
  position: absolute;
  top: 1rem;
  right: 0;
  font-size: 100px;
}
.cid-u7tmCCZ40d .mbr-section-title {
  color: #ffffff;
}
.cid-u7tmCCZ40d .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u7tmCCZ40d .list {
  color: #ffffff;
}
.cid-u7tmCCZ40d .mbr-emoji {
  color: #f5fd7b;
}
.cid-u7tmCDyzgV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u7tmCDyzgV .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u7tmCDyzgV .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-u7tmCDyzgV .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-u7tmCDyzgV .btn-primary-outline:active {
  color: gray;
}
.cid-u7tmCDyzgV .btn-primary-outline:hover {
  color: white;
}
.cid-u7tmCDyzgV div {
  overflow: hidden;
}
.cid-u7tmCDyzgV li.active .btn-primary-outline {
  color: white;
}
.cid-u7tmCDyzgV .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u7tmCDyzgV .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u7tmCDyzgV .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u7tmCDyzgV .mbr-gallery-item {
  overflow: hidden;
}
.cid-u7tmCDyzgV .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-u7tmCDyzgV .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-u7tmCDyzgV .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-u7tmCDyzgV .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u7tmCDyzgV .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u7tmCDyzgV .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-u7tmCDyzgV .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u7tmCDyzgV .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u7tmCEPcnx {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u7tmCEPcnx .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7tmCEPcnx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7tmCEPcnx .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u7tmCEPcnx .mbr-section-title {
  color: #24262b;
  text-align: left;
}
.cid-u7tmCEPcnx .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-u7tmCEPcnx .cards-row {
  row-gap: 32px;
}
.cid-u7tmCEPcnx .card {
  border-radius: 0;
}
.cid-u7tmCEPcnx .card-wrapper {
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
  background: #1e6185;
}
@media (max-width: 991px) {
  .cid-u7tmCEPcnx .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u7tmCEPcnx .icons-wrap {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cid-u7tmCEPcnx .icons-wrap .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-u7tmCEPcnx .icons-wrap .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #fccfd3;
}
.cid-u7tmCEPcnx .card-title {
  margin-bottom: 8px;
  color: #ffffff;
}
.cid-u7tmCEPcnx .card-subtitle {
  color: #24262b;
}
.cid-u7tmCEPcnx .card-bottom-wrap {
  margin-top: 24px;
}
.cid-u7tmCEPcnx .card-name {
  color: #24262b;
}
.cid-u7tmCEPcnx .card-text {
  color: #24262b;
}
.cid-u7tpplExyk {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u7tpplExyk .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7tpplExyk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7tpplExyk .card-wrapper {
  display: flex;
  margin-bottom: 2rem;
}
.cid-u7tpplExyk .mbr-iconfont {
  font-size: 3rem;
  color: #502274;
  padding-right: 1.5rem;
}
.cid-u7tpplExyk img {
  height: 250px;
  object-fit: cover;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.cid-u7tnXxzl0O {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-u7tnXxzl0O .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-u7tnXxzl0O h4,
.cid-u7tnXxzl0O p {
  padding-bottom: 1rem;
}
.cid-u7tnXxzl0O .col-auto,
.cid-u7tnXxzl0O .btn {
  width: 100% !important;
  padding: 1rem;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7tnXxzl0O .mbr-form {
    margin-bottom: 1rem;
  }
}
.cid-u7tnXxzl0O .google-map {
  height: 100%;
  padding-bottom: 1rem;
  min-height: 20rem;
  filter: grayscale(1);
  position: relative;
  border-radius: 2rem;
}
.cid-u7tnXxzl0O .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-u7tnXxzl0O .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-u7tnXxzl0O .google-map[data-state] {
  background: #e9e5dc;
}
.cid-u7tnXxzl0O .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-u7tnXxzl0O .form-control,
.cid-u7tnXxzl0O .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #f2f2f2 !important;
  color: #232323;
  transition: 0.4s;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 400;
  outline: none;
}
.cid-u7tnXxzl0O .form-control::-webkit-input-placeholder,
.cid-u7tnXxzl0O .field-input::-webkit-input-placeholder,
.cid-u7tnXxzl0O .form-control::-webkit-input-placeholder,
.cid-u7tnXxzl0O .field-input::-webkit-input-placeholder {
  color: #cfcfcf;
}
.cid-u7tnXxzl0O .form-control:-moz-placeholder,
.cid-u7tnXxzl0O .field-input:-moz-placeholder,
.cid-u7tnXxzl0O .form-control:-moz-placeholder,
.cid-u7tnXxzl0O .field-input:-moz-placeholder {
  color: #cfcfcf;
}
.cid-u7tnXxzl0O .form-control:hover,
.cid-u7tnXxzl0O .field-input:hover,
.cid-u7tnXxzl0O .form-control:focus,
.cid-u7tnXxzl0O .field-input:focus {
  background-color: #ffffff;
  border-color: #ffbf31 !important;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-u7tnXxzl0O .form-control:hover::-webkit-input-placeholder,
.cid-u7tnXxzl0O .field-input:hover::-webkit-input-placeholder,
.cid-u7tnXxzl0O .form-control:focus::-webkit-input-placeholder,
.cid-u7tnXxzl0O .field-input:focus::-webkit-input-placeholder,
.cid-u7tnXxzl0O .form-control:hover::-webkit-input-placeholder,
.cid-u7tnXxzl0O .field-input:hover::-webkit-input-placeholder,
.cid-u7tnXxzl0O .form-control:focus::-webkit-input-placeholder,
.cid-u7tnXxzl0O .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-u7tnXxzl0O .form-control:hover:-moz-placeholder,
.cid-u7tnXxzl0O .field-input:hover:-moz-placeholder,
.cid-u7tnXxzl0O .form-control:focus:-moz-placeholder,
.cid-u7tnXxzl0O .field-input:focus:-moz-placeholder,
.cid-u7tnXxzl0O .form-control:hover:-moz-placeholder,
.cid-u7tnXxzl0O .field-input:hover:-moz-placeholder,
.cid-u7tnXxzl0O .form-control:focus:-moz-placeholder,
.cid-u7tnXxzl0O .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-u7tnXxzl0O .jq-number__spin:hover,
.cid-u7tnXxzl0O .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #ffbf31 !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-u7tnXxzl0O .jq-number__spin {
  background-color: #ffffff;
  border-color: #f2f2f2;
  color: #232323;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-u7tnXxzl0O .jq-selectbox li,
.cid-u7tnXxzl0O .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-u7tnXxzl0O .jq-selectbox li:hover,
.cid-u7tnXxzl0O .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-u7tnXxzl0O .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-u7tnXxzl0O .jq-number__spin.minus:hover:after,
.cid-u7tnXxzl0O .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-u7tnXxzl0O .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-u7tnXxzl0O .jq-number__spin.minus:after,
.cid-u7tnXxzl0O .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-u7tnXxzl0O input::-webkit-clear-button {
  display: none;
}
.cid-u7tnXxzl0O input::-webkit-inner-spin-button {
  display: none;
}
.cid-u7tnXxzl0O input::-webkit-outer-spin-button {
  display: none;
}
.cid-u7tnXxzl0O input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-u7tmCFy4pv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e6185;
}
.cid-u7tmCFy4pv .wrapper {
  background-color: #ffffff;
}
.cid-u7tmCFy4pv li {
  list-style-type: none;
}
.cid-u7tmCFy4pv .contact-info-m {
  margin-bottom: 1.875rem;
}
.cid-u7tmCFy4pv .list-1 li {
  margin-bottom: 1rem;
}
.cid-u7tmCFy4pv .list-1 li:last-child {
  margin-bottom: 0;
}
.cid-u7tmCFy4pv .list-2 li {
  margin-bottom: 1.875rem;
}
.cid-u7tmCFy4pv .list-2 li:last-child {
  margin-bottom: 0;
}
.cid-u7tmCFy4pv ul {
  margin: 0;
}
.cid-u7tmCFy4pv .logo {
  width: auto;
  height: 140px;
  object-fit: cover;
}
.cid-u7tmCFy4pv .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7tmCFy4pv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zorDXSKt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u7zorDXSKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zorDXSKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zorDXSKt .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-u7zorDXSKt .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u7zorDXSKt .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-u7zorDXSKt .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-u7zorDXSKt .list-box {
  width: 100%;
}
.cid-u7zorDXSKt .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-u7zorDXSKt .list a:hover:before {
  background-position: left !important;
}
.cid-u7zorDXSKt .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-u7zorDXSKt .news-item {
  width: 100%;
}
.cid-u7zorDXSKt .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-u7zorDXSKt .news-title {
  color: #303030;
}
.cid-u7zorDXSKt .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-u7zldjK1rI .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-u7zldjK1rI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-u7zldjK1rI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-u7zldjK1rI .menu_box .navbar.opened,
  .cid-u7zldjK1rI .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-u7zldjK1rI .navbar-dropdown {
  position: relative !important;
}
.cid-u7zldjK1rI .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-u7zldjK1rI .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-u7zldjK1rI .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-u7zldjK1rI .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-u7zldjK1rI .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-u7zldjK1rI .offcanvas {
    padding: 12rem 64px 0;
    width: 50%;
    background-color: #181a25;
  }
  .cid-u7zldjK1rI .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-u7zldjK1rI .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-u7zldjK1rI .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-u7zldjK1rI .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-u7zldjK1rI .offcanvas-body .mbr-text,
  .cid-u7zldjK1rI .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-u7zldjK1rI .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-u7zldjK1rI .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-u7zldjK1rI .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #1e6185;
  }
  .cid-u7zldjK1rI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-u7zldjK1rI .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-u7zldjK1rI .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-u7zldjK1rI .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-u7zldjK1rI ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-u7zldjK1rI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7zldjK1rI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-u7zldjK1rI .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-u7zldjK1rI li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-u7zldjK1rI .lg_brand {
    margin: 0 1rem;
  }
}
.cid-u7zldjK1rI .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-u7zldjK1rI .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-u7zldjK1rI .nav-item {
    margin: 0 !important;
  }
}
.cid-u7zldjK1rI .nav-item .nav-link {
  position: relative;
  transition: all 0.3s ease-out;
}
.cid-u7zldjK1rI .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: #181a25;
  transition: all 0.3s ease-out;
}
.cid-u7zldjK1rI .nav-item .nav-link:hover {
  color: #181a25 !important;
}
.cid-u7zldjK1rI .nav-item .nav-link:hover::before {
  width: 100%;
}
.cid-u7zldjK1rI .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-u7zldjK1rI .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-u7zldjK1rI .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-u7zldjK1rI .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-u7zldjK1rI .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-u7zldjK1rI .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-u7zldjK1rI .offcanvas_box {
    display: none;
  }
}
.cid-u7zldjK1rI .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-u7zldjK1rI .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-u7zldjK1rI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-u7zldjK1rI .container {
  display: flex;
  margin: auto;
}
.cid-u7zldjK1rI .iconfont-wrapper {
  color: #ffffff;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-u7zldjK1rI .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-u7zldjK1rI .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-u7zldjK1rI .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-u7zldjK1rI .navbar-nav {
    margin: 0;
  }
}
.cid-u7zldjK1rI .dropdown-menu,
.cid-u7zldjK1rI .navbar.opened {
  background-color: false !important;
}
.cid-u7zldjK1rI .nav-item:focus,
.cid-u7zldjK1rI .nav-link:focus {
  outline: none;
}
.cid-u7zldjK1rI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-u7zldjK1rI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u7zldjK1rI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-u7zldjK1rI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-u7zldjK1rI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u7zldjK1rI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u7zldjK1rI .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-u7zldjK1rI .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-u7zldjK1rI .navbar.opened {
  transition: all 0.3s;
}
.cid-u7zldjK1rI .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-u7zldjK1rI .navbar .navbar-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
}
.cid-u7zldjK1rI .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-u7zldjK1rI .navbar.collapsed {
  justify-content: center;
}
.cid-u7zldjK1rI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u7zldjK1rI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u7zldjK1rI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u7zldjK1rI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u7zldjK1rI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u7zldjK1rI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-u7zldjK1rI .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-u7zldjK1rI .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-u7zldjK1rI .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-u7zldjK1rI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u7zldjK1rI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u7zldjK1rI .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-u7zldjK1rI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u7zldjK1rI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-u7zldjK1rI .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-u7zldjK1rI .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-u7zldjK1rI .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-u7zldjK1rI .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-u7zldjK1rI .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-u7zldjK1rI .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-u7zldjK1rI .navbar .icons-menu {
    padding: 0;
  }
}
.cid-u7zldjK1rI .navbar.navbar-short {
  min-height: 60px;
}
.cid-u7zldjK1rI .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-u7zldjK1rI .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-u7zldjK1rI .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u7zldjK1rI .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-u7zldjK1rI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u7zldjK1rI .dropdown-item.active,
.cid-u7zldjK1rI .dropdown-item:active {
  background-color: transparent;
}
.cid-u7zldjK1rI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u7zldjK1rI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u7zldjK1rI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u7zldjK1rI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u7zldjK1rI ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-u7zldjK1rI .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-u7zldjK1rI button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #1e6185;
}
.cid-u7zldjK1rI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #1e6185;
}
.cid-u7zldjK1rI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-u7zldjK1rI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7zldjK1rI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-u7zldjK1rI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-u7zldjK1rI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7zldjK1rI nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-u7zldjK1rI nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-u7zldjK1rI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-u7zldjK1rI a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-u7zldjK1rI .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u7zldjK1rI .navbar {
    height: 70px;
  }
  .cid-u7zldjK1rI .navbar.opened {
    height: auto;
  }
  .cid-u7zldjK1rI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u7zldjK1rI .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-u7zldjK1rI .container-fluid {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 992px) {
  .cid-u7zldjK1rI .container-fluid {
    padding-left: 130px;
    padding-right: 130px;
  }
}
.cid-u7zldjK1rI .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-u7zldjK1rI .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  padding: 20px 35px;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-u7zldjK1rI .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-u7zldjK1rI .navbar-caption:hover {
  opacity: .5;
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-u7zldjK1rI .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-u7zldjK1rI .text_widget {
  margin-bottom: 32px;
}
.cid-u7zldjK1rI .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-u7zldjK1rI .text_widget a:hover {
  color: #181a25 !important;
}
.cid-u7zldjK1rI .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u7zldjK1rI .navbar-caption {
  color: #ffffff;
}
.cid-u7zldjK1rI .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-u7zldjK1rI .mbr-section-subtitle,
.cid-u7zldjK1rI .text_widget,
.cid-u7zldjK1rI .mbr-section-btn {
  text-align: left;
}
.cid-u7zldjK1rI a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-u7zldknSSD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0e0e10;
}
.cid-u7zldknSSD .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zldknSSD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zldknSSD .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7zldknSSD .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-u7zldknSSD .container {
    padding: 0 20px;
  }
}
.cid-u7zldknSSD .row {
  padding: 90px 82px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u7zldknSSD .row {
    padding: 50px 16px;
  }
}
.cid-u7zldknSSD .row .blur-wrap_1 {
  position: absolute;
  top: -8rem;
  left: 36%;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(120px);
}
.cid-u7zldknSSD .row .blur-wrap_2 {
  position: absolute;
  bottom: -8rem;
  right: 15%;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-color: #fccfd3;
  filter: blur(150px);
}
.cid-u7zldknSSD .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #1e6185;
  opacity: 1;
}
.cid-u7zldknSSD .row .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-u7zldknSSD .row .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-u7zldknSSD .row .title-wrapper .desc-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-u7zldknSSD .row .title-wrapper .desc-wrapper {
    margin-bottom: 32px;
  }
}
.cid-u7zldknSSD .row .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding: 5px;
  border: 1px solid #fccfd3;
  border-radius: 10px;
  opacity: .5;
}
.cid-u7zldknSSD .row .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-u7zldknSSD .row .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-u7zldknSSD .row .image-wrapper {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-u7zldknSSD .row .image-wrapper {
    min-height: 450px;
  }
}
.cid-u7zldknSSD .row .image-wrapper img {
  position: absolute;
  right: 20%;
  border-radius: 50px;
  height: 400px;
  width: 270px;
  object-fit: cover;
  z-index: 2;
  transform: rotate(15deg);
}
.cid-u7zldknSSD .row .image-wrapper img:nth-child(2) {
  height: 180px;
  width: 180px;
  right: 0;
  bottom: 12%;
  transform: rotate(45deg);
}
.cid-u7zldknSSD .row .image-wrapper img:last-child {
  width: 250px;
  height: 550px;
  bottom: -12rem;
  right: auto;
  left: 6rem;
  z-index: 1;
  transform: rotate(-45deg);
  border-radius: 50%;
}
.cid-u7zldknSSD .mbr-desc {
  color: #ffffff;
}
.cid-u7zldknSSD .mbr-section-title {
  color: #ffffff;
}
.cid-u7zldknSSD .mbr-text {
  color: #ffffff;
}
.cid-u7zldknSSD .mbr-desc,
.cid-u7zldknSSD .desc-wrapper {
  color: #ffffff;
}
.cid-u7zlCob321 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u7zlCob321 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-u7zlCob321 .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-u7zlCob321 .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-u7zlCob321 .btn-primary-outline:active {
  color: gray;
}
.cid-u7zlCob321 .btn-primary-outline:hover {
  color: white;
}
.cid-u7zlCob321 div {
  overflow: hidden;
}
.cid-u7zlCob321 li.active .btn-primary-outline {
  color: white;
}
.cid-u7zlCob321 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u7zlCob321 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u7zlCob321 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-u7zlCob321 .mbr-gallery-item {
  overflow: hidden;
}
.cid-u7zlCob321 .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-u7zlCob321 .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-u7zlCob321 .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-u7zlCob321 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-u7zlCob321 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-u7zlCob321 .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-u7zlCob321 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-u7zlCob321 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-u7zldlcFSo {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u7zldlcFSo .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zldlcFSo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zldlcFSo .mbr-section-head {
  margin-bottom: 32px;
}
.cid-u7zldlcFSo .mbr-section-title {
  color: #24262b;
  text-align: left;
}
.cid-u7zldlcFSo .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-u7zldlcFSo .cards-row {
  row-gap: 32px;
}
.cid-u7zldlcFSo .card {
  border-radius: 0;
}
.cid-u7zldlcFSo .card-wrapper {
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
  background: #1e6185;
}
@media (max-width: 991px) {
  .cid-u7zldlcFSo .card-wrapper {
    padding: 3rem 1rem;
  }
}
.cid-u7zldlcFSo .icons-wrap {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cid-u7zldlcFSo .icons-wrap .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-u7zldlcFSo .icons-wrap .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #fccfd3;
}
.cid-u7zldlcFSo .card-title {
  margin-bottom: 8px;
  color: #ffffff;
}
.cid-u7zldlcFSo .card-subtitle {
  color: #24262b;
}
.cid-u7zldlcFSo .card-bottom-wrap {
  margin-top: 24px;
}
.cid-u7zldlcFSo .card-name {
  color: #24262b;
}
.cid-u7zldlcFSo .card-text {
  color: #24262b;
}
.cid-u7zldlSDGy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1e6185;
}
.cid-u7zldlSDGy .wrapper {
  background-color: #ffffff;
}
.cid-u7zldlSDGy li {
  list-style-type: none;
}
.cid-u7zldlSDGy .contact-info-m {
  margin-bottom: 1.875rem;
}
.cid-u7zldlSDGy .list-1 li {
  margin-bottom: 1rem;
}
.cid-u7zldlSDGy .list-1 li:last-child {
  margin-bottom: 0;
}
.cid-u7zldlSDGy .list-2 li {
  margin-bottom: 1.875rem;
}
.cid-u7zldlSDGy .list-2 li:last-child {
  margin-bottom: 0;
}
.cid-u7zldlSDGy ul {
  margin: 0;
}
.cid-u7zldlSDGy .logo {
  width: auto;
  height: 140px;
  object-fit: cover;
}
.cid-u7zldlSDGy .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zldlSDGy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zorDXSKt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u7zorDXSKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-u7zorDXSKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u7zorDXSKt .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-u7zorDXSKt .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-u7zorDXSKt .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-u7zorDXSKt .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-u7zorDXSKt .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-u7zorDXSKt .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-u7zorDXSKt .list-box {
  width: 100%;
}
.cid-u7zorDXSKt .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-u7zorDXSKt .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-u7zorDXSKt .list a:hover:before {
  background-position: left !important;
}
.cid-u7zorDXSKt .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-u7zorDXSKt .news-item {
  width: 100%;
}
.cid-u7zorDXSKt .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-u7zorDXSKt .news-title {
  color: #303030;
}
.cid-u7zorDXSKt .copyright {
  margin-top: 20px;
  color: #303030;
}
