body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'Merriweather', serif;
  font-size: 4rem;
}
.display-1 > .mbr-iconfont {
  font-size: 6.4rem;
}
.display-2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-5 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3.9rem;
}
.display-5 > .mbr-iconfont {
  font-size: 6.24rem;
}
.display-7 {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 3.12rem;
    font-size: calc( 2.0149999999999997rem + (3.9 - 2.0149999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.0149999999999997rem + (3.9 - 2.0149999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-sm {
  padding: 0.5rem 1.5rem;
  border-radius: 0px;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0px;
}
.bg-primary {
  background-color: #0a67a3 !important;
}
.bg-success {
  background-color: #36d88a !important;
}
.bg-info {
  background-color: #ff4100 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #0a67a3 !important;
  border-color: #0a67a3 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #06395b !important;
  border-color: #06395b !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #06395b !important;
  border-color: #06395b !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #256e9d !important;
  border-color: #256e9d !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #b32d00 !important;
  border-color: #b32d00 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #b32d00 !important;
  border-color: #b32d00 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #36d88a !important;
  border-color: #36d88a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #1fa263 !important;
  border-color: #1fa263 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #0a67a3;
  color: #0a67a3 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #0a67a3;
  border-color: #0a67a3;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0a67a3 !important;
  border-color: #0a67a3 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #3e97d1;
  color: #3e97d1 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #3e97d1;
  border-color: #3e97d1;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3e97d1 !important;
  border-color: #3e97d1 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #ff4100;
  color: #ff4100 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #ff4100;
  border-color: #ff4100;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4100 !important;
  border-color: #ff4100 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #36d88a;
  color: #36d88a !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #36d88a;
  border-color: #36d88a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #36d88a !important;
  border-color: #36d88a !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #c1c1c1;
  color: #c1c1c1 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #444444;
  color: #444444 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444;
  border-color: #444444;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #333333;
  color: #333333 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #0a67a3 !important;
}
.text-secondary {
  color: #3e97d1 !important;
}
.text-success {
  color: #36d88a !important;
}
.text-info {
  color: #ff4100 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a,
a:hover {
  color: #0a67a3;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #074973 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #2a7cb2 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #24b770 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #cc3400 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a8a8a8 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #2b2b2b !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #e6e6e6 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #1a1a1a !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ff4100;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0a67a3;
  border-color: #0a67a3;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #3aaaf3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #e1f9ed;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffd9cc;
}
.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: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
#scrollToTop a {
  background: #444444;
}
#scrollToTop a i:before {
  background: #ffffff;
}
#scrollToTop a i:after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.mbr-arrow {
  background-color: #444444;
}
.mbr-arrow a {
  color: #ffffff;
}
.form-control {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #0a67a3;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0a67a3;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #0a67a3;
  border-bottom-color: #0a67a3;
}
.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: #0a67a3 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #3e97d1 !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%;
}
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='%230a67a3' %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;
}
.cid-rJMD9bGa21 .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-rJMD9bGa21 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-rJMD9bGa21 .navbar {
  position: static!important;
  min-height: 77px;
  transition: 1s;
  background: #ffda73;
  display: flex;
  flex-direction: column;
}
.cid-rJMD9bGa21 .navbar.opened {
  transition: all .3s;
  background: #ffda73 !important;
}
.cid-rJMD9bGa21 .navbar .dropdown-item {
  font-family: 'Cormorant', sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #a8a8a8;
  color: #132c70;
  background: #c1c1c1 !important;
}
.cid-rJMD9bGa21 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-rJMD9bGa21 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-rJMD9bGa21 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rJMD9bGa21 .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  -webkit-box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  -moz-box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-rJMD9bGa21 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #0a67a3;
}
.cid-rJMD9bGa21 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-rJMD9bGa21 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rJMD9bGa21 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 91.82857143vh;
  }
}
.cid-rJMD9bGa21 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-rJMD9bGa21 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rJMD9bGa21 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-rJMD9bGa21 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rJMD9bGa21 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-rJMD9bGa21 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-rJMD9bGa21 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rJMD9bGa21 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-rJMD9bGa21 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-rJMD9bGa21 .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-rJMD9bGa21 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rJMD9bGa21 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-rJMD9bGa21 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rJMD9bGa21 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-rJMD9bGa21 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rJMD9bGa21 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-rJMD9bGa21 .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-rJMD9bGa21 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rJMD9bGa21 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-rJMD9bGa21 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-rJMD9bGa21 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-rJMD9bGa21 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rJMD9bGa21 .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-rJMD9bGa21 .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-rJMD9bGa21 .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-rJMD9bGa21 .navbar.navbar-short .navbar-brand {
  margin-top: -7rem;
  height: 0%;
  padding: 0;
}
.cid-rJMD9bGa21 .navbar.navbar-short .social-block {
  margin-top: 1rem;
}
.cid-rJMD9bGa21 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rJMD9bGa21 .navbar-brand {
  height: 100%;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  opacity: 1;
}
.cid-rJMD9bGa21 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rJMD9bGa21 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rJMD9bGa21 .dropdown-item.active,
.cid-rJMD9bGa21 .dropdown-item:active {
  background-color: transparent;
}
.cid-rJMD9bGa21 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
  font-family: 'IBM Plex Sans', sans-serif;
}
.cid-rJMD9bGa21 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rJMD9bGa21 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rJMD9bGa21 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffda73;
}
.cid-rJMD9bGa21 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-rJMD9bGa21 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rJMD9bGa21 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-rJMD9bGa21 .navbar-buttons {
  text-align: center;
}
.cid-rJMD9bGa21 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rJMD9bGa21 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-rJMD9bGa21 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rJMD9bGa21 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rJMD9bGa21 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rJMD9bGa21 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rJMD9bGa21 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJMD9bGa21 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rJMD9bGa21 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rJMD9bGa21 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rJMD9bGa21 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
}
.cid-rJMD9bGa21 .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: .5rem;
  color: #132c70;
}
.cid-rJMD9bGa21 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-rJMD9bGa21 .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-rJMD9bGa21 .nav-link:hover,
.cid-rJMD9bGa21 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-rJMD9bGa21 .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 0;
  margin-top: 2.5rem;
  max-width: 1300px;
  transition: 0.5s;
}
.cid-rJMD9bGa21 .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-rJMD9bGa21 .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-tQo9mnYbzB {
  overflow: hidden !important;
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #1b243c;
}
@media (max-width: 991px) {
  .cid-tQo9mnYbzB {
    height: auto;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 18px;
  }
}
.cid-tQo9mnYbzB .content-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tQo9mnYbzB h1 {
  color: #ffffff;
}
.cid-tQo9mnYbzB h2 {
  color: #ffffff;
}
.cid-tQo9mnYbzB a {
  color: #ffffff;
}
.cid-tQo9mnYbzB .btn-line::after {
  background-color: #ffffff;
}
.cid-tQo9mnYbzB .animated-element {
  color: #efefef;
}
.cid-tQo9mnYbzB .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-tQo9mnYbzB .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tQo9mnYbzB .container-fluid {
    padding: 0 1rem;
  }
  .cid-tQo9mnYbzB .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-tQo9mnYbzB .mbr-white {
    padding-left: 6rem;
  }
  .cid-tQo9mnYbzB .container-fluid {
    padding: 0 2rem;
  }
}
.cid-tQo9mnYbzB .container-fluid {
  max-width: 1300px;
}
.cid-tQo9mnYbzB .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-tQo9mnYbzB .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-tQo9mnYbzB .btn-line {
  margin-top: 3rem;
}
.cid-tQo9mnYbzB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQo9mnYbzB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-rDJmd443f0 {
  overflow: hidden !important;
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffda73;
}
@media (max-width: 991px) {
  .cid-rDJmd443f0 {
    height: auto;
    min-height: auto;
    padding-top: 6px;
    padding-bottom: 16px;
  }
}
.cid-rDJmd443f0 .animated-element {
  color: #efefef;
}
.cid-rDJmd443f0 .img-block {
  -webkit-align-self: center;
  align-self: center;
}
@media (max-width: 1199px) {
  .cid-rDJmd443f0 .mbr-figure img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-rDJmd443f0 .container-fluid {
    padding: 0 1rem;
  }
  .cid-rDJmd443f0 .mbr-figure {
    margin-top: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-rDJmd443f0 .mbr-white {
    padding-left: 5rem;
  }
  .cid-rDJmd443f0 .mbr-section-subtitle {
    padding-right: 3rem;
  }
  .cid-rDJmd443f0 .container-fluid {
    padding: 0 2rem;
  }
}
.cid-rDJmd443f0 .container-fluid {
  max-width: 1300px;
}
.cid-rDJmd443f0 .mbr-section-title {
  margin-bottom: 1rem;
  color: #000000;
}
.cid-rDJmd443f0 .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-rDJmd443f0 .btn-line {
  margin-top: 3rem;
}
.cid-rDJmd443f0 .mbr-section-subtitle,
.cid-rDJmd443f0 .mbr-section-btn {
  color: #000000;
}
.cid-rDJnnaMBRb {
  background-color: #1b243c;
}
.cid-rDJnnaMBRb .media-container-column {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: 0;
  flex-wrap: nowrap;
}
.cid-rDJnnaMBRb .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-rDJnnaMBRb .first-card {
  display: block;
}
.cid-rDJnnaMBRb .first-card .card-wrapper {
  height: 100%;
}
.cid-rDJnnaMBRb .first-card .info-wrapper {
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rDJnnaMBRb .first-card .info-wrapper .mbr-iconfont {
  padding-right: .5rem;
  font-size: 20px;
}
.cid-rDJnnaMBRb .first-card .info-wrapper .info-text {
  display: inline-block;
  padding-right: 1rem;
  margin: 0;
}
.cid-rDJnnaMBRb .first-card .card-btn .btn {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.cid-rDJnnaMBRb .first-row,
.cid-rDJnnaMBRb .second-row {
  -webkit-flex: 1 1 50%;
  flex: 1 1 50%;
  margin: 0;
}
.cid-rDJnnaMBRb .first-row .card .card-wrapper,
.cid-rDJnnaMBRb .second-row .card .card-wrapper {
  overflow: hidden;
  position: relative;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex: 1;
}
.cid-rDJnnaMBRb .first-row .card .card-wrapper .card-img,
.cid-rDJnnaMBRb .second-row .card .card-wrapper .card-img {
  -webkit-flex: 1 1 100%;
  flex: 1 1 100%;
}
.cid-rDJnnaMBRb .first-row .card .card-wrapper .card-img img,
.cid-rDJnnaMBRb .second-row .card .card-wrapper .card-img img {
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .cid-rDJnnaMBRb .first-row,
  .cid-rDJnnaMBRb .second-row {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rDJnnaMBRb .first-row .card .card-wrapper .card-img,
  .cid-rDJnnaMBRb .second-row .card .card-wrapper .card-img {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rDJnnaMBRb .first-row .card .card-wrapper .card-img img,
  .cid-rDJnnaMBRb .second-row .card .card-wrapper .card-img img {
    min-height: 0;
  }
}
.cid-rDJnnaMBRb .first-row .caption,
.cid-rDJnnaMBRb .second-row .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: center;
  align-items: center;
  letter-spacing: 2px;
}
.cid-rDJnnaMBRb .first-row .caption .price,
.cid-rDJnnaMBRb .second-row .caption .price {
  background: #c19b76;
  padding: 0 .5rem;
}
.cid-rDJnnaMBRb .first-row {
  padding-bottom: 0rem;
}
.cid-rDJnnaMBRb .second-row {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-rDJnnaMBRb {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .cid-rDJnnaMBRb .first-card,
  .cid-rDJnnaMBRb .first-child {
    padding-bottom: 0rem;
  }
  .cid-rDJnnaMBRb .card-box {
    padding: 0 0rem;
  }
  .cid-rDJnnaMBRb .card {
    margin: 0;
    padding: 1rem;
  }
}
@media (min-width: 767px) {
  .cid-rDJnnaMBRb {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .cid-rDJnnaMBRb .container-fluid {
    max-width: 1300px;
    padding: 0 2.5rem;
  }
  .cid-rDJnnaMBRb .card-box {
    padding-right: 7rem;
    padding-left: 4rem;
  }
  .cid-rDJnnaMBRb .card {
    margin: 0;
    padding: 0 0.5rem;
  }
}
@media (max-width: 991px) {
  .cid-rDJnnaMBRb .first-card {
    padding-bottom: 2rem;
  }
  .cid-rDJnnaMBRb .only-first-row {
    height: 100%;
  }
}
.cid-rDJnnaMBRb p {
  margin-bottom: 0;
}
.cid-rDJnnaMBRb h2 {
  margin-bottom: 1rem;
}
.cid-rDJnnaMBRb .mbr-section-subtitle {
  margin-bottom: 0rem;
}
.cid-rDJnnaMBRb .btn-line {
  margin-top: 3rem;
}
.cid-rDJnnaMBRb .container-fluid {
  max-width: 1300px;
}
.cid-rDJnnaMBRb .first-card .card-wrapper {
  display: flex;
  align-items: center;
}
.cid-rDJnnaMBRb .first-card-text,
.cid-rDJnnaMBRb .card-btn {
  color: #ffffff;
}
.cid-rDJnnaMBRb .first-card-title,
.cid-rDJnnaMBRb .first-card-info {
  color: #ffffff;
}
.cid-tQojEji4iW {
  background-color: #ffbc00;
}
.cid-tQojEji4iW .photo-split img {
  width: 100%;
}
.cid-tQojEji4iW .counter-container ul {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tQojEji4iW .counter-container ul li {
  margin-bottom: 0.5rem;
  list-style: ✓;
}
.cid-tQojEji4iW .counter-container ul li:before {
  color: #ffbc00;
  display: inline-block;
  content: "✓";
  text-align: center;
  line-height: 1.5em;
  transition: all 0.2s;
  width: 25px;
  height: 25px;
}
.cid-tQojEji4iW .wrap-block {
  padding-left: 2rem;
}
.cid-tQojEji4iW .wrap-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cid-tQojEji4iW .wrap-block ul li {
  display: inline-block;
}
.cid-tQojEji4iW .wrap-block ul li span {
  text-align: center;
}
.cid-tQojEji4iW .social-media {
  margin-top: 1.5em;
  padding: 0;
}
.cid-tQojEji4iW .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-tQojEji4iW .social-media ul li {
  padding: 4px;
  display: inline-block;
}
.cid-tQojEji4iW .mbr-list,
.cid-tQojEji4iW .social-media ul {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-tQojEji4iW {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-tQojEji4iW .wrap-block {
    margin: 0.5rem 0;
  }
  .cid-tQojEji4iW .container-fluid {
    padding: 0 1rem;
  }
  .cid-tQojEji4iW .mbr-section-title,
  .cid-tQojEji4iW .mbr-section-subtitle,
  .cid-tQojEji4iW .mbr-text {
    text-align: center !important;
  }
  .cid-tQojEji4iW .social-list {
    text-align: center !important;
  }
}
@media (min-width: 767px) {
  .cid-tQojEji4iW {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .cid-tQojEji4iW .wrap-block {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .cid-tQojEji4iW .container-fluid {
    padding: 0 2rem;
  }
}
.cid-tQojEji4iW .btn-line {
  margin-top: 3rem;
}
.cid-tQojEji4iW .container-fluid {
  max-width: 1300px;
}
@media (max-width: 992px) {
  .cid-tQojEji4iW .col-lg-8 {
    order: 2;
  }
  .cid-tQojEji4iW .col-lg-4 {
    order: 1;
  }
}
.cid-tQojEji4iW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQojEji4iW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQojEji4iW .mbr-text {
  color: #ffffff;
}
.cid-tQojEji4iW .mbr-section-title {
  color: #ffffff;
}
.cid-uBX9FHAu18 {
  background-color: #1b243c;
}
.cid-uBX9FHAu18 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBX9FHAu18 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBX9FHAu18 .card {
  justify-content: center;
}
.cid-uBX9FHAu18 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uBX9FHAu18 .content-wrapper .mbr-section-title {
    text-align: center;
  }
}
.cid-uBX9FHAu18 .content-wrapper .text-wrapper {
  margin-bottom: 30px;
}
.cid-uBX9FHAu18 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
}
@media (max-width: 992px) {
  .cid-uBX9FHAu18 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cid-uBX9FHAu18 .content-wrapper .mbr-section-btn {
    text-align: center;
  }
}
.cid-uBX9FHAu18 .image-wrapper {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uBX9FHAu18 .image-wrapper {
    margin-top: 30px;
    justify-content: center;
  }
}
.cid-uBX9FHAu18 .image-wrapper img {
  width: 640px;
  height: 640px;
  border-radius: 100% !important;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .cid-uBX9FHAu18 .image-wrapper img {
    width: 440px;
    height: 440px;
  }
}
@media (max-width: 768px) {
  .cid-uBX9FHAu18 .image-wrapper img {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }
}
.cid-uBX9FHAu18 .mbr-section-title {
  color: #f24d4a;
}
.cid-uBX9FHAu18 .mbr-text {
  color: #f24d4a;
}
.cid-uBX9FHAu18 .mbr-section-title,
.cid-uBX9FHAu18 .mbr-section-btn {
  color: #ffffff;
}
.cid-uBX9FHAu18 .mbr-text,
.cid-uBX9FHAu18 .text-wrapper {
  color: #ffffff;
}
.cid-uBXaXboVU9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffbc00;
}
@media (max-width: 767px) {
  .cid-uBXaXboVU9 {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.cid-uBXaXboVU9 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-uBXaXboVU9 H1 {
  color: #132c70;
}
.cid-uBXaXboVU9 .mbr-text,
.cid-uBXaXboVU9 .mbr-section-btn {
  color: #132c70;
}
.cid-uBXaXboVU9 H3 {
  color: #132c70;
}
.cid-uBXaXboVU9 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uBXaXboVU9 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-uBXaXboVU9 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-uBXaXboVU9 .link:hover {
  color: #0a67a3 !important;
}
.cid-uBXaXboVU9 .link:hover .link-ico {
  color: #0a67a3 !important;
  padding-left: 10px;
}
.cid-uBXaXboVU9 DIV {
  color: #57468b;
}
.cid-uBXaXboVU9 .text-1 {
  line-height: 1;
}
.cid-uBXaXboVU9 .container-fluid {
  max-width: 1300px;
}
.cid-uBXaXboVU9 .mbr-section-title {
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .cid-uBXaXboVU9 .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uBXaXboVU9 .container-fluid {
    padding: 0 2rem;
  }
}
.cid-uBXaXboVU9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBXaXboVU9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBXaXboVU9 .mbr-text,
.cid-uBXaXboVU9 .media-content {
  text-align: center;
  color: #000000;
}
.cid-uBXaXboVU9 .mbr-section-subtitle,
.cid-uBXaXboVU9 .media-content {
  color: #000000;
}
.cid-tQojrpd03D {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #1b1818;
}
.cid-tQojrpd03D .mbr-text {
  color: #ffffff;
}
.cid-tQooBpEWZf .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-tQooBpEWZf .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-tQooBpEWZf .navbar {
  position: static!important;
  min-height: 77px;
  transition: 1s;
  background: #ffda73;
  display: flex;
  flex-direction: column;
}
.cid-tQooBpEWZf .navbar.opened {
  transition: all .3s;
  background: #ffda73 !important;
}
.cid-tQooBpEWZf .navbar .dropdown-item {
  font-family: 'Cormorant', sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #a8a8a8;
  color: #132c70;
  background: #c1c1c1 !important;
}
.cid-tQooBpEWZf .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-tQooBpEWZf .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-tQooBpEWZf .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tQooBpEWZf .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  -webkit-box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  -moz-box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-tQooBpEWZf .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #0a67a3;
}
.cid-tQooBpEWZf .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-tQooBpEWZf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tQooBpEWZf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 91.82857143vh;
  }
}
.cid-tQooBpEWZf .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-tQooBpEWZf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tQooBpEWZf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tQooBpEWZf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tQooBpEWZf .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-tQooBpEWZf .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-tQooBpEWZf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tQooBpEWZf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-tQooBpEWZf .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-tQooBpEWZf .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-tQooBpEWZf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tQooBpEWZf .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-tQooBpEWZf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tQooBpEWZf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tQooBpEWZf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tQooBpEWZf .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-tQooBpEWZf .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-tQooBpEWZf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tQooBpEWZf .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-tQooBpEWZf .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-tQooBpEWZf .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-tQooBpEWZf .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tQooBpEWZf .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-tQooBpEWZf .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-tQooBpEWZf .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-tQooBpEWZf .navbar.navbar-short .navbar-brand {
  margin-top: -7rem;
  height: 0%;
  padding: 0;
}
.cid-tQooBpEWZf .navbar.navbar-short .social-block {
  margin-top: 1rem;
}
.cid-tQooBpEWZf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tQooBpEWZf .navbar-brand {
  height: 100%;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  opacity: 1;
}
.cid-tQooBpEWZf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tQooBpEWZf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tQooBpEWZf .dropdown-item.active,
.cid-tQooBpEWZf .dropdown-item:active {
  background-color: transparent;
}
.cid-tQooBpEWZf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
  font-family: 'IBM Plex Sans', sans-serif;
}
.cid-tQooBpEWZf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tQooBpEWZf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tQooBpEWZf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffda73;
}
.cid-tQooBpEWZf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-tQooBpEWZf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tQooBpEWZf ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-tQooBpEWZf .navbar-buttons {
  text-align: center;
}
.cid-tQooBpEWZf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tQooBpEWZf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tQooBpEWZf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tQooBpEWZf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tQooBpEWZf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tQooBpEWZf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tQooBpEWZf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tQooBpEWZf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tQooBpEWZf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tQooBpEWZf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tQooBpEWZf a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
}
.cid-tQooBpEWZf .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: .5rem;
  color: #132c70;
}
.cid-tQooBpEWZf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-tQooBpEWZf .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-tQooBpEWZf .nav-link:hover,
.cid-tQooBpEWZf .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-tQooBpEWZf .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 0;
  margin-top: 2.5rem;
  max-width: 1300px;
  transition: 0.5s;
}
.cid-tQooBpEWZf .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-tQooBpEWZf .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-tQooBqcaDG {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1b243c;
}
.cid-tQooBqcaDG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQooBqcaDG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tQooBqcaDG .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tQooBqcaDG .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tQooBqcaDG .container {
    padding: 0 20px;
  }
}
.cid-tQooBqcaDG .row {
  padding: 90px 82px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tQooBqcaDG .row {
    padding: 50px 16px;
  }
}
.cid-tQooBqcaDG .row .blur-wrap_1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffcd40;
  filter: blur(120px);
}
.cid-tQooBqcaDG .row .blur-wrap_2 {
  position: absolute;
  bottom: -8rem;
  right: 15%;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-color: #3e97d1;
  filter: blur(150px);
}
.cid-tQooBqcaDG .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #ffda73;
  opacity: 1;
}
.cid-tQooBqcaDG .row .image-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}
.cid-tQooBqcaDG .row .image-wrapper img {
  height: 400px;
  width: 70%;
  object-fit: cover;
  border-radius: 50px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-tQooBqcaDG .row .image-wrapper img {
    height: 300px;
    width: 100%;
    margin: 0;
  }
}
.cid-tQooBqcaDG .row .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-tQooBqcaDG .row .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-tQooBqcaDG .row .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tQooBqcaDG .row .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-tQooBqcaDG .row .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-tQooBqcaDG .mbr-desc {
  color: #ffffff;
}
.cid-tQooBqcaDG .mbr-section-title {
  color: #ffffff;
}
.cid-tQooBqcaDG .mbr-text {
  color: #000000;
}
.cid-tQooBqcaDG .mbr-section-title,
.cid-tQooBqcaDG .mbr-section-btn {
  color: #000000;
}
.cid-tQooBqwO0h {
  background-color: #ffcd40;
}
.cid-tQooBqwO0h H1 {
  color: #132c70;
}
.cid-tQooBqwO0h .mbr-text,
.cid-tQooBqwO0h .mbr-section-btn {
  color: #000000;
}
.cid-tQooBqwO0h H3 {
  color: #132c70;
}
.cid-tQooBqwO0h .mbr-list {
  list-style: none;
  padding: 0 1.5rem;
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
}
.cid-tQooBqwO0h .mbr-list li {
  margin-bottom: 1rem;
}
.cid-tQooBqwO0h .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-tQooBqwO0h p {
  margin: 0;
}
.cid-tQooBqwO0h a {
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .cid-tQooBqwO0h .row {
    display: flex;
    flex-direction: column;
  }
  .cid-tQooBqwO0h .container {
    margin: 0;
    padding: 0 1rem;
  }
  .cid-tQooBqwO0h .container-fluid {
    margin-top: 1.7rem;
  }
}
@media (min-width: 767px) {
  .cid-tQooBqwO0h .container-fluid {
    padding: 0 3rem;
    margin-top: 1.7rem;
  }
}
.cid-tQooBqwO0h .nav-dropdown .link {
  font-weight: 300;
}
.cid-tQooBqwO0h .mbr-fallback-image.disabled {
  display: none;
}
.cid-tQooBqwO0h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC1vH3x6MJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #1b243c;
}
@media (max-width: 767px) {
  .cid-uC1vH3x6MJ {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.cid-uC1vH3x6MJ img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-uC1vH3x6MJ H1 {
  color: #132c70;
}
.cid-uC1vH3x6MJ .mbr-text,
.cid-uC1vH3x6MJ .mbr-section-btn {
  color: #132c70;
}
.cid-uC1vH3x6MJ H3 {
  color: #132c70;
}
.cid-uC1vH3x6MJ .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uC1vH3x6MJ .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-uC1vH3x6MJ .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-uC1vH3x6MJ .link:hover {
  color: #0a67a3 !important;
}
.cid-uC1vH3x6MJ .link:hover .link-ico {
  color: #0a67a3 !important;
  padding-left: 10px;
}
.cid-uC1vH3x6MJ DIV {
  color: #57468b;
}
.cid-uC1vH3x6MJ .text-1 {
  line-height: 1;
}
.cid-uC1vH3x6MJ .container-fluid {
  max-width: 1300px;
}
.cid-uC1vH3x6MJ .mbr-section-title {
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .cid-uC1vH3x6MJ .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uC1vH3x6MJ .container-fluid {
    padding: 0 2rem;
  }
}
.cid-uC1vH3x6MJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC1vH3x6MJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC1vH3x6MJ .mbr-text,
.cid-uC1vH3x6MJ .media-content {
  text-align: center;
  color: #ffffff;
}
.cid-uC1vH3x6MJ .mbr-section-subtitle,
.cid-uC1vH3x6MJ .media-content {
  color: #ffffff;
}
.cid-tQooBroAGM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #1b1818;
}
.cid-tQooBroAGM .mbr-text {
  color: #ffffff;
}
.cid-uC1vX7dHFd .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-uC1vX7dHFd .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-uC1vX7dHFd .navbar {
  position: static!important;
  min-height: 77px;
  transition: 1s;
  background: #ffda73;
  display: flex;
  flex-direction: column;
}
.cid-uC1vX7dHFd .navbar.opened {
  transition: all .3s;
  background: #ffda73 !important;
}
.cid-uC1vX7dHFd .navbar .dropdown-item {
  font-family: 'Cormorant', sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #a8a8a8;
  color: #132c70;
  background: #c1c1c1 !important;
}
.cid-uC1vX7dHFd .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uC1vX7dHFd .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uC1vX7dHFd .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uC1vX7dHFd .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  -webkit-box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  -moz-box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-uC1vX7dHFd .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #0a67a3;
}
.cid-uC1vX7dHFd .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uC1vX7dHFd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uC1vX7dHFd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 91.82857143vh;
  }
}
.cid-uC1vX7dHFd .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uC1vX7dHFd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uC1vX7dHFd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uC1vX7dHFd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uC1vX7dHFd .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uC1vX7dHFd .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-uC1vX7dHFd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uC1vX7dHFd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uC1vX7dHFd .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uC1vX7dHFd .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-uC1vX7dHFd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uC1vX7dHFd .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uC1vX7dHFd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uC1vX7dHFd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uC1vX7dHFd .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uC1vX7dHFd .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uC1vX7dHFd .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-uC1vX7dHFd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uC1vX7dHFd .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-uC1vX7dHFd .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uC1vX7dHFd .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-uC1vX7dHFd .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uC1vX7dHFd .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-uC1vX7dHFd .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-uC1vX7dHFd .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-uC1vX7dHFd .navbar.navbar-short .navbar-brand {
  margin-top: -7rem;
  height: 0%;
  padding: 0;
}
.cid-uC1vX7dHFd .navbar.navbar-short .social-block {
  margin-top: 1rem;
}
.cid-uC1vX7dHFd .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uC1vX7dHFd .navbar-brand {
  height: 100%;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  opacity: 1;
}
.cid-uC1vX7dHFd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uC1vX7dHFd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uC1vX7dHFd .dropdown-item.active,
.cid-uC1vX7dHFd .dropdown-item:active {
  background-color: transparent;
}
.cid-uC1vX7dHFd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
  font-family: 'IBM Plex Sans', sans-serif;
}
.cid-uC1vX7dHFd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uC1vX7dHFd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uC1vX7dHFd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffda73;
}
.cid-uC1vX7dHFd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uC1vX7dHFd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uC1vX7dHFd ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uC1vX7dHFd .navbar-buttons {
  text-align: center;
}
.cid-uC1vX7dHFd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uC1vX7dHFd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uC1vX7dHFd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uC1vX7dHFd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uC1vX7dHFd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uC1vX7dHFd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uC1vX7dHFd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uC1vX7dHFd nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uC1vX7dHFd nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uC1vX7dHFd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uC1vX7dHFd a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
}
.cid-uC1vX7dHFd .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: .5rem;
  color: #132c70;
}
.cid-uC1vX7dHFd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uC1vX7dHFd .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-uC1vX7dHFd .nav-link:hover,
.cid-uC1vX7dHFd .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uC1vX7dHFd .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 0;
  margin-top: 2.5rem;
  max-width: 1300px;
  transition: 0.5s;
}
.cid-uC1vX7dHFd .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-uC1vX7dHFd .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-uC1vX7DfZ4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1b243c;
}
.cid-uC1vX7DfZ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC1vX7DfZ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC1vX7DfZ4 .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uC1vX7DfZ4 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uC1vX7DfZ4 .container {
    padding: 0 20px;
  }
}
.cid-uC1vX7DfZ4 .row {
  padding: 90px 82px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uC1vX7DfZ4 .row {
    padding: 50px 16px;
  }
}
.cid-uC1vX7DfZ4 .row .blur-wrap_1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffcd40;
  filter: blur(120px);
}
.cid-uC1vX7DfZ4 .row .blur-wrap_2 {
  position: absolute;
  bottom: -8rem;
  right: 15%;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-color: #3e97d1;
  filter: blur(150px);
}
.cid-uC1vX7DfZ4 .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #ffda73;
  opacity: 1;
}
.cid-uC1vX7DfZ4 .row .image-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}
.cid-uC1vX7DfZ4 .row .image-wrapper img {
  height: 400px;
  width: 70%;
  object-fit: cover;
  border-radius: 50px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-uC1vX7DfZ4 .row .image-wrapper img {
    height: 300px;
    width: 100%;
    margin: 0;
  }
}
.cid-uC1vX7DfZ4 .row .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-uC1vX7DfZ4 .row .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uC1vX7DfZ4 .row .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uC1vX7DfZ4 .row .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uC1vX7DfZ4 .row .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uC1vX7DfZ4 .mbr-desc {
  color: #ffffff;
}
.cid-uC1vX7DfZ4 .mbr-section-title {
  color: #ffffff;
}
.cid-uC1vX7DfZ4 .mbr-text {
  color: #000000;
}
.cid-uC1vX7DfZ4 .mbr-section-title,
.cid-uC1vX7DfZ4 .mbr-section-btn {
  color: #000000;
}
.cid-uC1vX7WwWc {
  background-color: #ffcd40;
}
.cid-uC1vX7WwWc H1 {
  color: #132c70;
}
.cid-uC1vX7WwWc .mbr-text,
.cid-uC1vX7WwWc .mbr-section-btn {
  color: #000000;
}
.cid-uC1vX7WwWc H3 {
  color: #132c70;
}
.cid-uC1vX7WwWc .mbr-list {
  list-style: none;
  padding: 0 1.5rem;
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
}
.cid-uC1vX7WwWc .mbr-list li {
  margin-bottom: 1rem;
}
.cid-uC1vX7WwWc .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-uC1vX7WwWc p {
  margin: 0;
}
.cid-uC1vX7WwWc a {
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .cid-uC1vX7WwWc .row {
    display: flex;
    flex-direction: column;
  }
  .cid-uC1vX7WwWc .container {
    margin: 0;
    padding: 0 1rem;
  }
  .cid-uC1vX7WwWc .container-fluid {
    margin-top: 1.7rem;
  }
}
@media (min-width: 767px) {
  .cid-uC1vX7WwWc .container-fluid {
    padding: 0 3rem;
    margin-top: 1.7rem;
  }
}
.cid-uC1vX7WwWc .nav-dropdown .link {
  font-weight: 300;
}
.cid-uC1vX7WwWc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC1vX7WwWc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC1vX8xNsP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #1b243c;
}
@media (max-width: 767px) {
  .cid-uC1vX8xNsP {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.cid-uC1vX8xNsP img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-uC1vX8xNsP H1 {
  color: #132c70;
}
.cid-uC1vX8xNsP .mbr-text,
.cid-uC1vX8xNsP .mbr-section-btn {
  color: #132c70;
}
.cid-uC1vX8xNsP H3 {
  color: #132c70;
}
.cid-uC1vX8xNsP .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uC1vX8xNsP .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-uC1vX8xNsP .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-uC1vX8xNsP .link:hover {
  color: #0a67a3 !important;
}
.cid-uC1vX8xNsP .link:hover .link-ico {
  color: #0a67a3 !important;
  padding-left: 10px;
}
.cid-uC1vX8xNsP DIV {
  color: #57468b;
}
.cid-uC1vX8xNsP .text-1 {
  line-height: 1;
}
.cid-uC1vX8xNsP .container-fluid {
  max-width: 1300px;
}
.cid-uC1vX8xNsP .mbr-section-title {
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .cid-uC1vX8xNsP .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uC1vX8xNsP .container-fluid {
    padding: 0 2rem;
  }
}
.cid-uC1vX8xNsP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC1vX8xNsP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC1vX8xNsP .mbr-text,
.cid-uC1vX8xNsP .media-content {
  text-align: center;
  color: #ffffff;
}
.cid-uC1vX8xNsP .mbr-section-subtitle,
.cid-uC1vX8xNsP .media-content {
  color: #ffffff;
}
.cid-uC1vX8UqjV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #1b1818;
}
.cid-uC1vX8UqjV .mbr-text {
  color: #ffffff;
}
.cid-uC1x5kzMqr .navbar-dropdown {
  position: relative!important;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-uC1x5kzMqr .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-uC1x5kzMqr .navbar {
  position: static!important;
  min-height: 77px;
  transition: 1s;
  background: #ffda73;
  display: flex;
  flex-direction: column;
}
.cid-uC1x5kzMqr .navbar.opened {
  transition: all .3s;
  background: #ffda73 !important;
}
.cid-uC1x5kzMqr .navbar .dropdown-item {
  font-family: 'Cormorant', sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: all .3s;
  padding: .3rem 1.5rem;
  border-bottom: 1px solid #a8a8a8;
  color: #132c70;
  background: #c1c1c1 !important;
}
.cid-uC1x5kzMqr .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uC1x5kzMqr .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-uC1x5kzMqr .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uC1x5kzMqr .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  -webkit-box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  -moz-box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-uC1x5kzMqr .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #0a67a3;
}
.cid-uC1x5kzMqr .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-uC1x5kzMqr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uC1x5kzMqr .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 91.82857143vh;
  }
}
.cid-uC1x5kzMqr .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-uC1x5kzMqr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uC1x5kzMqr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uC1x5kzMqr .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uC1x5kzMqr .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-uC1x5kzMqr .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-uC1x5kzMqr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uC1x5kzMqr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-uC1x5kzMqr .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-uC1x5kzMqr .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-uC1x5kzMqr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uC1x5kzMqr .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-uC1x5kzMqr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uC1x5kzMqr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uC1x5kzMqr .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uC1x5kzMqr .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-uC1x5kzMqr .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-uC1x5kzMqr .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uC1x5kzMqr .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-uC1x5kzMqr .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-uC1x5kzMqr .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-uC1x5kzMqr .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uC1x5kzMqr .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-uC1x5kzMqr .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-uC1x5kzMqr .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-uC1x5kzMqr .navbar.navbar-short .navbar-brand {
  margin-top: -7rem;
  height: 0%;
  padding: 0;
}
.cid-uC1x5kzMqr .navbar.navbar-short .social-block {
  margin-top: 1rem;
}
.cid-uC1x5kzMqr .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uC1x5kzMqr .navbar-brand {
  height: 100%;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
  opacity: 1;
}
.cid-uC1x5kzMqr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uC1x5kzMqr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uC1x5kzMqr .dropdown-item.active,
.cid-uC1x5kzMqr .dropdown-item:active {
  background-color: transparent;
}
.cid-uC1x5kzMqr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
  font-family: 'IBM Plex Sans', sans-serif;
}
.cid-uC1x5kzMqr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uC1x5kzMqr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uC1x5kzMqr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffda73;
}
.cid-uC1x5kzMqr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-uC1x5kzMqr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uC1x5kzMqr ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-uC1x5kzMqr .navbar-buttons {
  text-align: center;
}
.cid-uC1x5kzMqr button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uC1x5kzMqr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uC1x5kzMqr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uC1x5kzMqr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uC1x5kzMqr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uC1x5kzMqr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uC1x5kzMqr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uC1x5kzMqr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uC1x5kzMqr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uC1x5kzMqr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uC1x5kzMqr a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  outline: none;
}
.cid-uC1x5kzMqr .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: .5rem;
  color: #132c70;
}
.cid-uC1x5kzMqr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-uC1x5kzMqr .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 700;
}
.cid-uC1x5kzMqr .nav-link:hover,
.cid-uC1x5kzMqr .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uC1x5kzMqr .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 0;
  margin-top: 2.5rem;
  max-width: 1300px;
  transition: 0.5s;
}
.cid-uC1x5kzMqr .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-uC1x5kzMqr .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-uC1x5l6aKi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #1b243c;
}
.cid-uC1x5l6aKi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC1x5l6aKi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC1x5l6aKi .container-fluid {
  padding: 0 32px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uC1x5l6aKi .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uC1x5l6aKi .container {
    padding: 0 20px;
  }
}
.cid-uC1x5l6aKi .row {
  padding: 90px 82px;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-uC1x5l6aKi .row {
    padding: 50px 16px;
  }
}
.cid-uC1x5l6aKi .row .blur-wrap_1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background-color: #ffcd40;
  filter: blur(120px);
}
.cid-uC1x5l6aKi .row .blur-wrap_2 {
  position: absolute;
  bottom: -8rem;
  right: 15%;
  width: 500px;
  height: 500px;
  border-radius: 100%;
  background-color: #3e97d1;
  filter: blur(150px);
}
.cid-uC1x5l6aKi .row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #ffda73;
  opacity: 1;
}
.cid-uC1x5l6aKi .row .image-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}
.cid-uC1x5l6aKi .row .image-wrapper img {
  height: 400px;
  width: 70%;
  object-fit: cover;
  border-radius: 50px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cid-uC1x5l6aKi .row .image-wrapper img {
    height: 300px;
    width: 100%;
    margin: 0;
  }
}
.cid-uC1x5l6aKi .row .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-uC1x5l6aKi .row .title-wrapper {
    margin-bottom: 50px;
  }
}
.cid-uC1x5l6aKi .row .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uC1x5l6aKi .row .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uC1x5l6aKi .row .title-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uC1x5l6aKi .mbr-desc {
  color: #ffffff;
}
.cid-uC1x5l6aKi .mbr-section-title {
  color: #ffffff;
}
.cid-uC1x5l6aKi .mbr-text {
  color: #000000;
}
.cid-uC1x5l6aKi .mbr-section-title,
.cid-uC1x5l6aKi .mbr-section-btn {
  color: #000000;
}
.cid-uC1x5lmaUW {
  background-color: #ffcd40;
}
.cid-uC1x5lmaUW H1 {
  color: #132c70;
}
.cid-uC1x5lmaUW .mbr-text,
.cid-uC1x5lmaUW .mbr-section-btn {
  color: #000000;
}
.cid-uC1x5lmaUW H3 {
  color: #132c70;
}
.cid-uC1x5lmaUW .mbr-list {
  list-style: none;
  padding: 0 1.5rem;
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
}
.cid-uC1x5lmaUW .mbr-list li {
  margin-bottom: 1rem;
}
.cid-uC1x5lmaUW .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-uC1x5lmaUW p {
  margin: 0;
}
.cid-uC1x5lmaUW a {
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .cid-uC1x5lmaUW .row {
    display: flex;
    flex-direction: column;
  }
  .cid-uC1x5lmaUW .container {
    margin: 0;
    padding: 0 1rem;
  }
  .cid-uC1x5lmaUW .container-fluid {
    margin-top: 1.7rem;
  }
}
@media (min-width: 767px) {
  .cid-uC1x5lmaUW .container-fluid {
    padding: 0 3rem;
    margin-top: 1.7rem;
  }
}
.cid-uC1x5lmaUW .nav-dropdown .link {
  font-weight: 300;
}
.cid-uC1x5lmaUW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC1x5lmaUW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC1x5lNjal {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #1b243c;
}
@media (max-width: 767px) {
  .cid-uC1x5lNjal {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
.cid-uC1x5lNjal img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-uC1x5lNjal H1 {
  color: #132c70;
}
.cid-uC1x5lNjal .mbr-text,
.cid-uC1x5lNjal .mbr-section-btn {
  color: #132c70;
}
.cid-uC1x5lNjal H3 {
  color: #132c70;
}
.cid-uC1x5lNjal .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uC1x5lNjal .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-uC1x5lNjal .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-uC1x5lNjal .link:hover {
  color: #0a67a3 !important;
}
.cid-uC1x5lNjal .link:hover .link-ico {
  color: #0a67a3 !important;
  padding-left: 10px;
}
.cid-uC1x5lNjal DIV {
  color: #57468b;
}
.cid-uC1x5lNjal .text-1 {
  line-height: 1;
}
.cid-uC1x5lNjal .container-fluid {
  max-width: 1300px;
}
.cid-uC1x5lNjal .mbr-section-title {
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .cid-uC1x5lNjal .container-fluid {
    padding: 0 1rem;
  }
}
@media (min-width: 767px) {
  .cid-uC1x5lNjal .container-fluid {
    padding: 0 2rem;
  }
}
.cid-uC1x5lNjal .mbr-fallback-image.disabled {
  display: none;
}
.cid-uC1x5lNjal .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uC1x5lNjal .mbr-text,
.cid-uC1x5lNjal .media-content {
  text-align: center;
  color: #ffffff;
}
.cid-uC1x5lNjal .mbr-section-subtitle,
.cid-uC1x5lNjal .media-content {
  color: #ffffff;
}
.cid-uC1x5lZJIi {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #1b1818;
}
.cid-uC1x5lZJIi .mbr-text {
  color: #ffffff;
}
