body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 4.88rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.1rem;
}
.display-2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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.904rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.416rem;
    font-size: calc( 2.358rem + (4.88 - 2.358) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.358rem + (4.88 - 2.358) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((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: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6ec1e4 !important;
}
.bg-success {
  background-color: #61ce70 !important;
}
.bg-info {
  background-color: #15d8d8 !important;
}
.bg-warning {
  background-color: #fa603c !important;
}
.bg-danger {
  background-color: #ea433b !important;
}
.btn-primary .mbr-iconfont {
  align-self: stretch;
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 24px;
  padding-left: 24px;
}
.btn-primary .mbr-iconfont:after {
  content: "";
  z-index: 1;
  position: absolute;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  left: 0;
  top: -12px;
  background-color: #47acff;
}
.btn-primary .mbr-iconfont:before {
  z-index: 2;
  position: relative;
}
@media (max-width: 575px) {
  .btn-primary .mbr-iconfont {
    margin-left: auto;
    border-left: 24px solid transparent;
  }
}
.btn-primary,
.btn-primary:active {
  background-color: #6ec1e4 !important;
  border-color: #6ec1e4 !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 {
  border-color: #27a1d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #27a1d4 !important;
  border-color: #27a1d4 !important;
}
.btn-secondary .mbr-iconfont {
  align-self: stretch;
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 24px;
  padding-left: 24px;
}
.btn-secondary .mbr-iconfont:after {
  content: "";
  z-index: 1;
  position: absolute;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  left: 0;
  top: -12px;
  background-color: #47acff;
}
.btn-secondary .mbr-iconfont:before {
  z-index: 2;
  position: relative;
}
@media (max-width: 575px) {
  .btn-secondary .mbr-iconfont {
    margin-left: auto;
    border-left: 24px solid transparent;
  }
}
.btn-secondary,
.btn-secondary:active {
  background-color: #54595f !important;
  border-color: #54595f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  border-color: #2b2e31 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2b2e31 !important;
  border-color: #2b2e31 !important;
}
.btn-info .mbr-iconfont {
  align-self: stretch;
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 24px;
  padding-left: 24px;
}
.btn-info .mbr-iconfont:after {
  content: "";
  z-index: 1;
  position: absolute;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  left: 0;
  top: -12px;
  background-color: #47acff;
}
.btn-info .mbr-iconfont:before {
  z-index: 2;
  position: relative;
}
@media (max-width: 575px) {
  .btn-info .mbr-iconfont {
    margin-left: auto;
    border-left: 24px solid transparent;
  }
}
.btn-info,
.btn-info:active {
  background-color: #15d8d8 !important;
  border-color: #15d8d8 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  border-color: #0d8989 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0d8989 !important;
  border-color: #0d8989 !important;
}
.btn-success .mbr-iconfont {
  align-self: stretch;
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 24px;
  padding-left: 24px;
}
.btn-success .mbr-iconfont:after {
  content: "";
  z-index: 1;
  position: absolute;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  left: 0;
  top: -12px;
  background-color: #47acff;
}
.btn-success .mbr-iconfont:before {
  z-index: 2;
  position: relative;
}
@media (max-width: 575px) {
  .btn-success .mbr-iconfont {
    margin-left: auto;
    border-left: 24px solid transparent;
  }
}
.btn-success,
.btn-success:active {
  background-color: #61ce70 !important;
  border-color: #61ce70 !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 {
  border-color: #33a543 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #33a543 !important;
  border-color: #33a543 !important;
}
.btn-warning .mbr-iconfont {
  align-self: stretch;
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 24px;
  padding-left: 24px;
}
.btn-warning .mbr-iconfont:after {
  content: "";
  z-index: 1;
  position: absolute;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  left: 0;
  top: -12px;
  background-color: #47acff;
}
.btn-warning .mbr-iconfont:before {
  z-index: 2;
  position: relative;
}
@media (max-width: 575px) {
  .btn-warning .mbr-iconfont {
    margin-left: auto;
    border-left: 24px solid transparent;
  }
}
.btn-warning,
.btn-warning:active {
  background-color: #fa603c !important;
  border-color: #fa603c !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 {
  border-color: #da2e06 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #da2e06 !important;
  border-color: #da2e06 !important;
}
.btn-danger .mbr-iconfont {
  align-self: stretch;
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 24px;
  padding-left: 24px;
}
.btn-danger .mbr-iconfont:after {
  content: "";
  z-index: 1;
  position: absolute;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  left: 0;
  top: -12px;
  background-color: #47acff;
}
.btn-danger .mbr-iconfont:before {
  z-index: 2;
  position: relative;
}
@media (max-width: 575px) {
  .btn-danger .mbr-iconfont {
    margin-left: auto;
    border-left: 24px solid transparent;
  }
}
.btn-danger,
.btn-danger:active {
  background-color: #ea433b !important;
  border-color: #ea433b !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 {
  border-color: #ba1c14 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ba1c14 !important;
  border-color: #ba1c14 !important;
}
.btn-white .mbr-iconfont {
  align-self: stretch;
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 24px;
  padding-left: 24px;
}
.btn-white .mbr-iconfont:after {
  content: "";
  z-index: 1;
  position: absolute;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  left: 0;
  top: -12px;
  background-color: #00223d;
}
.btn-white .mbr-iconfont:before {
  z-index: 2;
  position: relative;
}
@media (max-width: 575px) {
  .btn-white .mbr-iconfont {
    margin-left: auto;
    border-left: 24px solid transparent;
  }
}
.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 {
  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 .mbr-iconfont {
  align-self: stretch;
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 24px;
  padding-left: 24px;
}
.btn-black .mbr-iconfont:after {
  content: "";
  z-index: 1;
  position: absolute;
  width: calc(100% + 24px);
  height: calc(100% + 24px);
  left: 0;
  top: -12px;
  background-color: #47acff;
}
.btn-black .mbr-iconfont:before {
  z-index: 2;
  position: relative;
}
@media (max-width: 575px) {
  .btn-black .mbr-iconfont {
    margin-left: auto;
    border-left: 24px solid transparent;
  }
}
.btn-black,
.btn-black:active {
  background-color: #112b6d !important;
  border-color: #112b6d !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 {
  border-color: #050d22 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #050d22 !important;
  border-color: #050d22 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6ec1e4;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #6ec1e4 !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: #6ec1e4 !important;
  border-color: #6ec1e4 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #54595f;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #54595f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #54595f !important;
  border-color: #54595f !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #15d8d8;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #15d8d8 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #15d8d8 !important;
  border-color: #15d8d8 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #61ce70;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #61ce70 !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: #61ce70 !important;
  border-color: #61ce70 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fa603c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #fa603c !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: #fa603c !important;
  border-color: #fa603c !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ea433b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ea433b !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: #ea433b !important;
  border-color: #ea433b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #112b6d;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #112b6d !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: #112b6d !important;
  border-color: #112b6d !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: #fafafa !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: #6ec1e4 !important;
}
.text-secondary {
  color: #54595f !important;
}
.text-success {
  color: #61ce70 !important;
}
.text-info {
  color: #15d8d8 !important;
}
.text-warning {
  color: #fa603c !important;
}
.text-danger {
  color: #ea433b !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #112B6D !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #2597c7 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #242629 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #30993e !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #0c7b7b !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #cb2b05 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ad1a12 !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: #030815 !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: #6ec1e4;
}
.nav-tabs .nav-link:not(.active) {
  color: #112B6D;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #15d8d8;
}
.alert-warning {
  background-color: #fa603c;
}
.alert-danger {
  background-color: #ea433b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6ec1e4;
  border-color: #6ec1e4;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6ec1e4;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fdfefd;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c0f9f9;
}
.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: #fef4f3;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.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: #6ec1e4 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #6ec1e4;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6ec1e4;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6ec1e4;
}
.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: #6ec1e4;
  border-bottom-color: #6ec1e4;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #6ec1e4 !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: #54595f !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='%236ec1e4' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition-duration: .2s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1140px;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.row {
  margin-left: -10px;
  margin-right: -10px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}
.row {
  justify-content: center;
}
.mbr-section-btn .btn {
  min-width: 100px;
  min-height: 50px;
  padding: 12px 24px;
  font-weight: 300;
  line-height: 1 !important;
  transition-duration: .2s;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    min-width: auto !important;
  }
}
.cid-tbVHi119Vd .navbar-dropdown {
  position: relative !important;
}
.cid-tbVHi119Vd .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbVHi119Vd .dropdown-menu {
  padding: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-tbVHi119Vd .dropdown-menu .dropdown-item {
  border: none !important;
  border-radius: 0 !important;
  padding: 13px 20px 13px 28px !important;
  line-height: 1 !important;
}
.cid-tbVHi119Vd .dropdown-menu .dropdown-item:hover {
  background-color: #112B6D !important;
  color: #FFFFFF !important;
}
.cid-tbVHi119Vd .dropdown-item:hover,
.cid-tbVHi119Vd .dropdown-item:focus {
  background: #112B6D !important;
  color: white !important;
}
.cid-tbVHi119Vd .dropdown-item:hover span {
  color: white;
}
.cid-tbVHi119Vd .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tbVHi119Vd .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tbVHi119Vd .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tbVHi119Vd .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tbVHi119Vd .nav-link {
  position: relative;
}
.cid-tbVHi119Vd .container {
  display: flex;
  margin: auto;
  max-width: 100%;
  width: 100%;
  padding: 0 3.4rem !important;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-tbVHi119Vd .container {
    flex-wrap: nowrap;
  }
}
.cid-tbVHi119Vd .iconfont-wrapper {
  color: #112b6d !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tbVHi119Vd .navbar-nav {
  padding: 5px !important;
}
.cid-tbVHi119Vd .navbar-nav .nav-item {
  margin: 0 5px !important;
  padding: 0 !important;
}
.cid-tbVHi119Vd .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 13px 8px !important;
  font-weight: 400 !important;
}
.cid-tbVHi119Vd .dropdown-menu,
.cid-tbVHi119Vd .navbar.opened {
  background: #000000 !important;
}
.cid-tbVHi119Vd .nav-item:focus,
.cid-tbVHi119Vd .nav-link:focus {
  outline: none;
}
.cid-tbVHi119Vd .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tbVHi119Vd .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbVHi119Vd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tbVHi119Vd .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbVHi119Vd .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbVHi119Vd .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbVHi119Vd .navbar {
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-tbVHi119Vd .navbar.opened {
  transition: all 0.3s;
}
.cid-tbVHi119Vd .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
  font-weight: 400 !important;
}
.cid-tbVHi119Vd .navbar .navbar-logo img {
  width: auto;
}
.cid-tbVHi119Vd .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tbVHi119Vd .navbar.collapsed {
  justify-content: center;
}
.cid-tbVHi119Vd .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbVHi119Vd .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tbVHi119Vd .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tbVHi119Vd .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbVHi119Vd .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbVHi119Vd .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tbVHi119Vd .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbVHi119Vd .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tbVHi119Vd .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tbVHi119Vd .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbVHi119Vd .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbVHi119Vd .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbVHi119Vd .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbVHi119Vd .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tbVHi119Vd .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tbVHi119Vd .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tbVHi119Vd .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tbVHi119Vd .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tbVHi119Vd .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tbVHi119Vd .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tbVHi119Vd .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tbVHi119Vd .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tbVHi119Vd .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tbVHi119Vd .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 5px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tbVHi119Vd .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbVHi119Vd .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbVHi119Vd .dropdown-item.active,
.cid-tbVHi119Vd .dropdown-item:active {
  background-color: transparent;
}
.cid-tbVHi119Vd .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbVHi119Vd .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbVHi119Vd .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbVHi119Vd .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-tbVHi119Vd .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tbVHi119Vd .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbVHi119Vd ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tbVHi119Vd .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tbVHi119Vd button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tbVHi119Vd button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #112b6d;
}
.cid-tbVHi119Vd button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tbVHi119Vd button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbVHi119Vd button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbVHi119Vd button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tbVHi119Vd nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbVHi119Vd nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tbVHi119Vd nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tbVHi119Vd nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbVHi119Vd .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tbVHi119Vd a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tbVHi119Vd .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tbVHi119Vd .navbar {
    height: 70px;
  }
  .cid-tbVHi119Vd .navbar.opened {
    height: auto;
  }
  .cid-tbVHi119Vd .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbVHi119Vd .container-head {
  width: 100%;
  min-height: 60px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background-color: #15d8d8;
}
.cid-tbVHi119Vd .mbr-section-title {
  color: #112B6D;
  max-width: 50%;
  margin-right: auto;
}
.cid-tbVHi119Vd .mbr-section-btn {
  max-width: 50%;
  text-align: right;
  margin-left: auto;
}
.cid-tbVHi119Vd .mbr-section-btn .btn {
  font-weight: 500 !important;
}
.cid-tbVHi119Vd .mbr-section-btn .btn:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
@media (max-width: 991px) {
  .cid-tbVHi119Vd .container-head {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .cid-tbVHi119Vd .container {
    overflow: hidden;
  }
  .cid-tbVHi119Vd .mbr-section-title {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    text-align: center !important;
  }
  .cid-tbVHi119Vd .mbr-section-btn {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin-left: 0;
  }
  .cid-tbVHi119Vd .icons-menu {
    margin: 0 auto;
    padding-right: 0;
  }
  .cid-tbVHi119Vd .navbar-collapse {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin: 0 -3.4rem;
  }
  .cid-tbVHi119Vd .navbar-nav {
    padding: 0 !important;
  }
  .cid-tbVHi119Vd .navbar-nav .nav-item {
    margin: 0  !important;
    padding: 0 !important;
  }
  .cid-tbVHi119Vd .navbar-nav .nav-item .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    font-weight: 400 !important;
  }
  .cid-tbVHi119Vd .navbar-nav .nav-item .nav-link:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-tbVHi119Vd .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 13px 20px 13px 28px !important;
    line-height: 1 !important;
  }
  .cid-tbVHi119Vd .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-tbVHi119Vd .navbar-nav .dropdown-menu .dropdown-submenu {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-tbVHi119Vd .container {
    padding: 25px 15px !important;
  }
  .cid-tbVHi119Vd .container-head {
    padding: 10px !important;
  }
  .cid-tbVHi119Vd .navbar-collapse {
    margin: 0 -15px -25px !important;
  }
  .cid-tbVHi119Vd .navbar .navbar-brand {
    width: auto !important;
    max-width: 60%;
  }
  .cid-tbVHi119Vd .navbar-toggler {
    margin-right: 6%;
    max-width: 40%;
  }
}
.cid-tbVHAKKZkn {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/man-playing-roulette-at-the-casino-2023-11-27-05-01-33-utc.jpg-2000x1333.jpg");
}
.cid-tbVHAKKZkn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbVHAKKZkn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbVHAKKZkn .text-container {
  width: 100%;
}
.cid-tbVHAKKZkn .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 0;
  width: 100%;
}
.cid-tbVHAKKZkn .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-tbVHAKKZkn .mbr-section-btn {
  margin-top: 10px;
}
.cid-tbVHAKKZkn .mbr-text,
.cid-tbVHAKKZkn .mbr-section-btn {
  color: #ffffff;
}
.cid-uQhs03BVuC {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #f4f2ef;
}
.cid-uQhs03BVuC .mbr-text {
  color: #112b6d;
}
.cid-uQhs03BVuC .mbr-section-subtitle {
  color: #000000;
}
.cid-uQhs03BVuC .mbr-section-title {
  color: #112b6d;
}
.cid-uQhuLRuA0z {
  padding-top: 225px;
  padding-bottom: 75px;
  background-color: #e1f5ff;
}
@media (max-width: 767px) {
  .cid-uQhuLRuA0z {
    padding-top: 75px;
    padding-bottom: 25px;
  }
}
.cid-uQhuLRuA0z img {
  width: 100%;
  border-radius: 30px;
  transform: translate(1%, 5%);
}
.cid-uQhuLRuA0z .right-wrapper {
  padding-left: 5rem;
}
.cid-uQhuLRuA0z .btn {
  padding: 0.7rem 2.4rem;
  position: relative;
}
.cid-uQhuLRuA0z .container-fluid {
  max-width: 1200px;
  padding: 0 1.4rem;
}
.cid-uQhuLRuA0z .mbr-text {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}
.cid-uQhuLRuA0z .imageContainer {
  display: inline-block;
  position: relative;
  z-index: 0;
}
.cid-uQhuLRuA0z .imageContainer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 96%;
  height: 100%;
  border: 2px dashed #fa603c;
  border-radius: 30px;
  z-index: -1;
}
.cid-uQhuLRuA0z .btn:hover .inner-dashed-border {
  animation-play-state: running;
}
@keyframes dashed_border_running {
  100% {
    stroke-dashoffset: -1000;
  }
}
.cid-uQhuLRuA0z .svg1 {
  position: absolute;
  padding: 2px;
}
.cid-uQhuLRuA0z .svg1 rect {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-uQhuLRuA0z .imageContainer {
    margin-bottom: 4.2rem;
  }
  .cid-uQhuLRuA0z .right-wrapper {
    padding-left: 1.2rem;
  }
}
@media (max-width: 767px) {
  .cid-uQhuLRuA0z .imageContainer {
    margin-left: 1rem;
    margin-bottom: 3rem;
  }
  .cid-uQhuLRuA0z .container-fluid {
    padding: 0 1rem;
  }
  .cid-uQhuLRuA0z .right-wrapper {
    text-align: center;
    padding-left: 15px;
  }
}
.cid-uQhuLRuA0z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQhuLRuA0z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQhuLRuA0z .mbr-text,
.cid-uQhuLRuA0z .mbr-section-btn {
  color: #112b6d;
}
.cid-uQhuLRuA0z .mbr-section-title {
  color: #112b6d;
}
.cid-tbVLbMDHeq {
  padding-top: 9rem;
  padding-bottom: 7rem;
  background-color: #f4f2ef;
}
.cid-tbVLbMDHeq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbVLbMDHeq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbVLbMDHeq .col-title {
  margin-bottom: 30px;
  padding: 0 30px !important;
}
.cid-tbVLbMDHeq .mbr-section-title {
  color: #112B6D;
}
.cid-tbVLbMDHeq .mbr-section-subtitle {
  color: #112B6D;
  margin-top: 20px;
}
.cid-tbVLbMDHeq .number-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .cid-tbVLbMDHeq .number-container {
    display: none;
  }
}
.cid-tbVLbMDHeq .number-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.33333333%;
  padding: 0 10px;
}
.cid-tbVLbMDHeq .number-item:not(:first-child)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  right: 50%;
  top: calc(50% - 1px);
  background-color: #3cdede;
}
.cid-tbVLbMDHeq .number-text {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 30px;
  color: #000000;
  background-color: #3cdede;
}
.cid-tbVLbMDHeq .cards-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .cid-tbVLbMDHeq .cards-container {
    flex-wrap: wrap;
  }
}
.cid-tbVLbMDHeq .card {
  width: 33.33333333%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-tbVLbMDHeq .card {
    width: 100%;
    padding: 0 10px 30px;
  }
}
.cid-tbVLbMDHeq .card-box {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tbVLbMDHeq .card-box {
    display: flex;
    align-items: center;
  }
}
.cid-tbVLbMDHeq .iconfont-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-tbVLbMDHeq .iconfont-wrapper {
    min-width: 130px;
    width: auto;
    margin-bottom: 0;
    margin-right: 25px;
  }
}
.cid-tbVLbMDHeq .iconfont-wrapper .mbr-iconfont {
  font-size: 130px;
  color: #112b6d;
}
@media (max-width: 767px) {
  .cid-tbVLbMDHeq .iconfont-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-tbVLbMDHeq .card-container {
  width: 100%;
  padding: 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-tbVLbMDHeq .card-container {
    flex-grow: 1;
    padding: 0;
  }
}
.cid-tbVLbMDHeq .card-title {
  color: #112B6D;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tbVLbMDHeq .card-title {
    margin-bottom: 20px;
    text-align: left !important;
  }
}
.cid-tbVLbMDHeq .card-text {
  color: #112B6D;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-tbVLbMDHeq .card-text {
    text-align: left !important;
  }
}
.cid-tbVLbMDHeq .btn-container {
  padding: 40px 30px 0 !important;
}
.cid-tbVM8wUTxj {
  background-color: #e1f5ff;
}
@media (max-width: 991px) {
  .cid-tbVM8wUTxj {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.cid-tbVM8wUTxj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbVM8wUTxj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbVM8wUTxj .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tbVM8wUTxj .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-tbVM8wUTxj .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.cid-tbVM8wUTxj .content-container {
  display: flex;
  align-items: stretch;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tbVM8wUTxj .content-container {
    flex-wrap: wrap;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .cid-tbVM8wUTxj .content-container {
    padding: 0 20px;
  }
}
.cid-tbVM8wUTxj .img-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tbVM8wUTxj .img-container {
    order: 3;
    width: 100%;
    background-color: transparent;
  }
}
.cid-tbVM8wUTxj .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-tbVM8wUTxj .image-wrapper img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tbVM8wUTxj .image-wrapper img {
    max-width: 760px;
  }
}
.cid-tbVM8wUTxj .text-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 0 5% 0  5%;
  min-height: 780px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-tbVM8wUTxj .text-container {
    width: 100%;
    padding: 0;
    min-height: 0;
    margin-bottom: 20px;
  }
}
.cid-tbVM8wUTxj .mbr-section-title {
  color: #112B6D;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tbVM8wUTxj .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tbVM8wUTxj .mbr-text {
  color: #112B6D;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tbVM8wUTxj .mbr-text {
    text-align: center !important;
  }
}
.cid-tbVM8wUTxj .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-tbVM8wUTxj .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tbVM8wUTxj .col-list {
  margin-top: 25px;
  width: 100%;
}
.cid-tbVM8wUTxj .list-title {
  color: #112B6D;
  margin-bottom: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tbVM8wUTxj .list-title {
    text-align: center !important;
  }
}
.cid-tbVM8wUTxj .list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  list-style: none;
  padding-left: 0;
}
.cid-tbVM8wUTxj .item-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-tbVM8wUTxj .item-wrap:not(:first-child) {
  margin-top: 30px;
}
.cid-tbVM8wUTxj .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 36px;
  padding: 3px;
  min-width: 30px;
  min-height: 30px;
  border-radius: 100%;
  border: 2px solid #112b6d;
}
.cid-tbVM8wUTxj .iconfont-wrapper .mbr-iconfont {
  color: #112b6d;
  font-size: 14px;
  padding: 3px;
  border-radius: 100%;
  background-color: #b3dfff;
}
.cid-tbVM8wUTxj .list-text {
  color: #112B6D;
  flex-grow: 1;
}
.cid-tbVMExCiLs {
  background-color: #e1f5ff;
}
.cid-tbVMExCiLs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbVMExCiLs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbVMExCiLs .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tbVMExCiLs .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-tbVMExCiLs .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.cid-tbVMExCiLs .content-container {
  display: flex;
  align-items: stretch;
  width: 100%;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-tbVMExCiLs .content-container {
    flex-wrap: wrap;
  }
}
.cid-tbVMExCiLs .img-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tbVMExCiLs .img-container {
    width: 100%;
  }
}
.cid-tbVMExCiLs .image-wrapper {
  width: 100%;
  height: 100%;
}
.cid-tbVMExCiLs .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tbVMExCiLs .text-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 0 10% 0  10%;
  min-height: 720px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .cid-tbVMExCiLs .text-container {
    width: 100%;
    padding: 20px;
    padding-top: 5rem;
    padding-bottom: 5rem;
    min-height: 300px;
  }
}
.cid-tbVMExCiLs .mbr-section-title {
  color: #112B6D;
  margin-bottom: 0;
  width: 100%;
}
.cid-tbVMExCiLs .mbr-text {
  color: #112B6D;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-tbVMExCiLs .mbr-section-btn {
  margin-top: 10px;
}
.cid-tbVRvybjCI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f2ef;
}
.cid-tbVRvybjCI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbVRvybjCI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbVRvybjCI .col-title {
  margin-bottom: 40px;
}
.cid-tbVRvybjCI .mbr-section-title {
  color: #112B6D;
}
.cid-tbVRvybjCI .mbr-section-subtitle {
  color: #112B6D;
  margin-top: 20px;
}
.cid-tbVRvybjCI .cards-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0 !important;
  flex-wrap: wrap;
}
.cid-tbVRvybjCI .card {
  width: 50%;
  padding: 10px;
}
.cid-tbVRvybjCI .card .card-box {
  background-color: #e1f5ff;
}
.cid-tbVRvybjCI .card:nth-child(2n) .card-box {
  background-color: #fff5ee;
}
@media (max-width: 767px) {
  .cid-tbVRvybjCI .card {
    width: 100%;
  }
}
.cid-tbVRvybjCI .card-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 15% 15% 15% 15%;
}
.cid-tbVRvybjCI .iconfont-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
.cid-tbVRvybjCI .mbr-iconfont {
  font-size: 120px;
  color: #112b6d;
}
.cid-tbVRvybjCI .card-container {
  width: 100%;
}
.cid-tbVRvybjCI .card-title {
  color: #112B6D;
  margin-bottom: 20px !important;
}
.cid-tbVRvybjCI .card-text {
  color: #112B6D;
  margin-bottom: 0.9rem !important;
}
.cid-tbVPIaznDs {
  background-color: #e1f5ff;
}
@media (max-width: 991px) {
  .cid-tbVPIaznDs {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.cid-tbVPIaznDs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbVPIaznDs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbVPIaznDs .container {
  max-width: 100%;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-tbVPIaznDs .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cid-tbVPIaznDs .row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.cid-tbVPIaznDs .content-container {
  display: flex;
  align-items: stretch;
  width: 100%;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tbVPIaznDs .content-container {
    flex-wrap: wrap;
    padding: 0 20%;
  }
}
@media (max-width: 767px) {
  .cid-tbVPIaznDs .content-container {
    padding: 0 20px;
  }
}
.cid-tbVPIaznDs .img-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tbVPIaznDs .img-container {
    width: 100%;
    background-color: transparent;
  }
}
.cid-tbVPIaznDs .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cid-tbVPIaznDs .image-wrapper img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tbVPIaznDs .image-wrapper img {
    max-width: 100%;
  }
}
.cid-tbVPIaznDs .text-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 0 10% 0  10%;
  min-height: 630px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  .cid-tbVPIaznDs .text-container {
    width: 100%;
    padding: 0;
    min-height: 0;
    margin-bottom: 40px;
  }
}
.cid-tbVPIaznDs .mbr-section-title {
  color: #112B6D;
  margin-bottom: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tbVPIaznDs .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tbVPIaznDs .mbr-text {
  color: #112B6D;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tbVPIaznDs .mbr-text {
    text-align: center !important;
  }
}
.cid-tbVPIaznDs .mbr-section-btn {
  margin-top: 10px;
}
@media (max-width: 991px) {
  .cid-tbVPIaznDs .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-uQhr5UEdyz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-uQhr5UEdyz .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uQhr5UEdyz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQhr5UEdyz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQhr5UEdyz .content-wrap {
  margin: 0;
}
.cid-uQhr5UEdyz .content-wrap .card {
  padding: 0;
}
.cid-uQhr5UEdyz .google-map {
  height: 100%;
  border-right: 1px solid #150764;
}
@media (max-width: 992px) {
  .cid-uQhr5UEdyz .google-map {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-uQhr5UEdyz .google-map iframe {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQhr5UEdyz .google-map iframe {
    height: 350px;
    object-fit: cover;
  }
}
.cid-uQhr5UEdyz .content-wrapper {
  padding: 190px 72px;
}
@media (max-width: 1640px) {
  .cid-uQhr5UEdyz .content-wrapper {
    padding: 190px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uQhr5UEdyz .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uQhr5UEdyz .content-wrapper .title-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uQhr5UEdyz .content-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uQhr5UEdyz .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uQhr5UEdyz .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uQhr5UEdyz .content-wrapper .contacts-wrapper {
  margin-bottom: 40px;
}
.cid-uQhr5UEdyz .content-wrapper .contacts-wrapper .mbr-desc {
  margin-bottom: 12px;
}
.cid-uQhr5UEdyz .content-wrapper .contacts-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uQhr5UEdyz .content-wrapper .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uQhr5UEdyz .content-wrapper .contacts-wrapper .list .item-wrap:hover,
.cid-uQhr5UEdyz .content-wrapper .contacts-wrapper .list .item-wrap:focus {
  color: #4188ff;
}
.cid-uQhr5UEdyz .content-wrapper .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uQhr5UEdyz .mbr-section-title {
  color: #150764;
}
.cid-uQhr5UEdyz .mbr-desc {
  color: #150764;
}
.cid-uQhr5UEdyz .item-desc {
  color: #150764;
}
.cid-uQhr5UEdyz .list {
  color: #150764;
}
.cid-tbVSjRhVDr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #021041;
  overflow: hidden;
}
.cid-tbVSjRhVDr .mbr-text {
  color: #E1F5FF;
}
.cid-tbVSjRhVDr .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uQhwN5UjD8 .navbar-dropdown {
  position: relative !important;
}
.cid-uQhwN5UjD8 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQhwN5UjD8 .dropdown-menu {
  padding: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uQhwN5UjD8 .dropdown-menu .dropdown-item {
  border: none !important;
  border-radius: 0 !important;
  padding: 13px 20px 13px 28px !important;
  line-height: 1 !important;
}
.cid-uQhwN5UjD8 .dropdown-menu .dropdown-item:hover {
  background-color: #112B6D !important;
  color: #FFFFFF !important;
}
.cid-uQhwN5UjD8 .dropdown-item:hover,
.cid-uQhwN5UjD8 .dropdown-item:focus {
  background: #112B6D !important;
  color: white !important;
}
.cid-uQhwN5UjD8 .dropdown-item:hover span {
  color: white;
}
.cid-uQhwN5UjD8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uQhwN5UjD8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uQhwN5UjD8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uQhwN5UjD8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQhwN5UjD8 .nav-link {
  position: relative;
}
.cid-uQhwN5UjD8 .container {
  display: flex;
  margin: auto;
  max-width: 100%;
  width: 100%;
  padding: 0 3.4rem !important;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uQhwN5UjD8 .container {
    flex-wrap: nowrap;
  }
}
.cid-uQhwN5UjD8 .iconfont-wrapper {
  color: #112b6d !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQhwN5UjD8 .navbar-nav {
  padding: 5px !important;
}
.cid-uQhwN5UjD8 .navbar-nav .nav-item {
  margin: 0 5px !important;
  padding: 0 !important;
}
.cid-uQhwN5UjD8 .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 13px 8px !important;
  font-weight: 400 !important;
}
.cid-uQhwN5UjD8 .dropdown-menu,
.cid-uQhwN5UjD8 .navbar.opened {
  background: #000000 !important;
}
.cid-uQhwN5UjD8 .nav-item:focus,
.cid-uQhwN5UjD8 .nav-link:focus {
  outline: none;
}
.cid-uQhwN5UjD8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQhwN5UjD8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQhwN5UjD8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQhwN5UjD8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQhwN5UjD8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQhwN5UjD8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQhwN5UjD8 .navbar {
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uQhwN5UjD8 .navbar.opened {
  transition: all 0.3s;
}
.cid-uQhwN5UjD8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
  font-weight: 400 !important;
}
.cid-uQhwN5UjD8 .navbar .navbar-logo img {
  width: auto;
}
.cid-uQhwN5UjD8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQhwN5UjD8 .navbar.collapsed {
  justify-content: center;
}
.cid-uQhwN5UjD8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQhwN5UjD8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uQhwN5UjD8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uQhwN5UjD8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQhwN5UjD8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQhwN5UjD8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uQhwN5UjD8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQhwN5UjD8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQhwN5UjD8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQhwN5UjD8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQhwN5UjD8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQhwN5UjD8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQhwN5UjD8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQhwN5UjD8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uQhwN5UjD8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQhwN5UjD8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQhwN5UjD8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQhwN5UjD8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQhwN5UjD8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQhwN5UjD8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uQhwN5UjD8 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uQhwN5UjD8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQhwN5UjD8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQhwN5UjD8 .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 5px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQhwN5UjD8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQhwN5UjD8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQhwN5UjD8 .dropdown-item.active,
.cid-uQhwN5UjD8 .dropdown-item:active {
  background-color: transparent;
}
.cid-uQhwN5UjD8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQhwN5UjD8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQhwN5UjD8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQhwN5UjD8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uQhwN5UjD8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQhwN5UjD8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQhwN5UjD8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQhwN5UjD8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQhwN5UjD8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uQhwN5UjD8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #112b6d;
}
.cid-uQhwN5UjD8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQhwN5UjD8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQhwN5UjD8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQhwN5UjD8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQhwN5UjD8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQhwN5UjD8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQhwN5UjD8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQhwN5UjD8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQhwN5UjD8 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uQhwN5UjD8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQhwN5UjD8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQhwN5UjD8 .navbar {
    height: 70px;
  }
  .cid-uQhwN5UjD8 .navbar.opened {
    height: auto;
  }
  .cid-uQhwN5UjD8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQhwN5UjD8 .container-head {
  width: 100%;
  min-height: 60px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background-color: #15d8d8;
}
.cid-uQhwN5UjD8 .mbr-section-title {
  color: #112B6D;
  max-width: 50%;
  margin-right: auto;
}
.cid-uQhwN5UjD8 .mbr-section-btn {
  max-width: 50%;
  text-align: right;
  margin-left: auto;
}
.cid-uQhwN5UjD8 .mbr-section-btn .btn {
  font-weight: 500 !important;
}
.cid-uQhwN5UjD8 .mbr-section-btn .btn:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
@media (max-width: 991px) {
  .cid-uQhwN5UjD8 .container-head {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .cid-uQhwN5UjD8 .container {
    overflow: hidden;
  }
  .cid-uQhwN5UjD8 .mbr-section-title {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    text-align: center !important;
  }
  .cid-uQhwN5UjD8 .mbr-section-btn {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin-left: 0;
  }
  .cid-uQhwN5UjD8 .icons-menu {
    margin: 0 auto;
    padding-right: 0;
  }
  .cid-uQhwN5UjD8 .navbar-collapse {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin: 0 -3.4rem;
  }
  .cid-uQhwN5UjD8 .navbar-nav {
    padding: 0 !important;
  }
  .cid-uQhwN5UjD8 .navbar-nav .nav-item {
    margin: 0  !important;
    padding: 0 !important;
  }
  .cid-uQhwN5UjD8 .navbar-nav .nav-item .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    font-weight: 400 !important;
  }
  .cid-uQhwN5UjD8 .navbar-nav .nav-item .nav-link:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uQhwN5UjD8 .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 13px 20px 13px 28px !important;
    line-height: 1 !important;
  }
  .cid-uQhwN5UjD8 .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uQhwN5UjD8 .navbar-nav .dropdown-menu .dropdown-submenu {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uQhwN5UjD8 .container {
    padding: 25px 15px !important;
  }
  .cid-uQhwN5UjD8 .container-head {
    padding: 10px !important;
  }
  .cid-uQhwN5UjD8 .navbar-collapse {
    margin: 0 -15px -25px !important;
  }
  .cid-uQhwN5UjD8 .navbar .navbar-brand {
    width: auto !important;
    max-width: 60%;
  }
  .cid-uQhwN5UjD8 .navbar-toggler {
    margin-right: 6%;
    max-width: 40%;
  }
}
.cid-uQhwN6ThVG {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/12-crickex-casino-welcome-pack-bonus.png-1950x1440.png");
}
.cid-uQhwN6ThVG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQhwN6ThVG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQhwN6ThVG .text-container {
  width: 100%;
}
.cid-uQhwN6ThVG .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  width: 100%;
}
.cid-uQhwN6ThVG .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-uQhwN6ThVG .mbr-section-btn {
  margin-top: 10px;
}
.cid-uQhwN6ThVG .mbr-text,
.cid-uQhwN6ThVG .mbr-section-btn {
  color: #ffffff;
}
.cid-uQhwN7Og2v {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #f4f2ef;
}
.cid-uQhwN7Og2v .mbr-text {
  color: #112b6d;
}
.cid-uQhwN7Og2v .mbr-section-subtitle {
  color: #000000;
}
.cid-uQhwN7Og2v .mbr-section-title {
  color: #112b6d;
}
.cid-uQhwNf3cjc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-uQhwNf3cjc .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uQhwNf3cjc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQhwNf3cjc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQhwNf3cjc .content-wrap {
  margin: 0;
}
.cid-uQhwNf3cjc .content-wrap .card {
  padding: 0;
}
.cid-uQhwNf3cjc .google-map {
  height: 100%;
  border-right: 1px solid #150764;
}
@media (max-width: 992px) {
  .cid-uQhwNf3cjc .google-map {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-uQhwNf3cjc .google-map iframe {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQhwNf3cjc .google-map iframe {
    height: 350px;
    object-fit: cover;
  }
}
.cid-uQhwNf3cjc .content-wrapper {
  padding: 190px 72px;
}
@media (max-width: 1640px) {
  .cid-uQhwNf3cjc .content-wrapper {
    padding: 190px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uQhwNf3cjc .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uQhwNf3cjc .content-wrapper .title-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uQhwNf3cjc .content-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uQhwNf3cjc .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uQhwNf3cjc .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uQhwNf3cjc .content-wrapper .contacts-wrapper {
  margin-bottom: 40px;
}
.cid-uQhwNf3cjc .content-wrapper .contacts-wrapper .mbr-desc {
  margin-bottom: 12px;
}
.cid-uQhwNf3cjc .content-wrapper .contacts-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uQhwNf3cjc .content-wrapper .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uQhwNf3cjc .content-wrapper .contacts-wrapper .list .item-wrap:hover,
.cid-uQhwNf3cjc .content-wrapper .contacts-wrapper .list .item-wrap:focus {
  color: #4188ff;
}
.cid-uQhwNf3cjc .content-wrapper .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uQhwNf3cjc .mbr-section-title {
  color: #150764;
}
.cid-uQhwNf3cjc .mbr-desc {
  color: #150764;
}
.cid-uQhwNf3cjc .item-desc {
  color: #150764;
}
.cid-uQhwNf3cjc .list {
  color: #150764;
}
.cid-uQhwNfXLaN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #021041;
  overflow: hidden;
}
.cid-uQhwNfXLaN .mbr-text {
  color: #E1F5FF;
}
.cid-uQhwNfXLaN .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uQhxV7Zf0Z .navbar-dropdown {
  position: relative !important;
}
.cid-uQhxV7Zf0Z .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQhxV7Zf0Z .dropdown-menu {
  padding: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uQhxV7Zf0Z .dropdown-menu .dropdown-item {
  border: none !important;
  border-radius: 0 !important;
  padding: 13px 20px 13px 28px !important;
  line-height: 1 !important;
}
.cid-uQhxV7Zf0Z .dropdown-menu .dropdown-item:hover {
  background-color: #112B6D !important;
  color: #FFFFFF !important;
}
.cid-uQhxV7Zf0Z .dropdown-item:hover,
.cid-uQhxV7Zf0Z .dropdown-item:focus {
  background: #112B6D !important;
  color: white !important;
}
.cid-uQhxV7Zf0Z .dropdown-item:hover span {
  color: white;
}
.cid-uQhxV7Zf0Z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uQhxV7Zf0Z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uQhxV7Zf0Z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uQhxV7Zf0Z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQhxV7Zf0Z .nav-link {
  position: relative;
}
.cid-uQhxV7Zf0Z .container {
  display: flex;
  margin: auto;
  max-width: 100%;
  width: 100%;
  padding: 0 3.4rem !important;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uQhxV7Zf0Z .container {
    flex-wrap: nowrap;
  }
}
.cid-uQhxV7Zf0Z .iconfont-wrapper {
  color: #112b6d !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQhxV7Zf0Z .navbar-nav {
  padding: 5px !important;
}
.cid-uQhxV7Zf0Z .navbar-nav .nav-item {
  margin: 0 5px !important;
  padding: 0 !important;
}
.cid-uQhxV7Zf0Z .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 13px 8px !important;
  font-weight: 400 !important;
}
.cid-uQhxV7Zf0Z .dropdown-menu,
.cid-uQhxV7Zf0Z .navbar.opened {
  background: #000000 !important;
}
.cid-uQhxV7Zf0Z .nav-item:focus,
.cid-uQhxV7Zf0Z .nav-link:focus {
  outline: none;
}
.cid-uQhxV7Zf0Z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQhxV7Zf0Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQhxV7Zf0Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQhxV7Zf0Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQhxV7Zf0Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQhxV7Zf0Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQhxV7Zf0Z .navbar {
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uQhxV7Zf0Z .navbar.opened {
  transition: all 0.3s;
}
.cid-uQhxV7Zf0Z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
  font-weight: 400 !important;
}
.cid-uQhxV7Zf0Z .navbar .navbar-logo img {
  width: auto;
}
.cid-uQhxV7Zf0Z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQhxV7Zf0Z .navbar.collapsed {
  justify-content: center;
}
.cid-uQhxV7Zf0Z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQhxV7Zf0Z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uQhxV7Zf0Z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uQhxV7Zf0Z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQhxV7Zf0Z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQhxV7Zf0Z .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uQhxV7Zf0Z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQhxV7Zf0Z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQhxV7Zf0Z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQhxV7Zf0Z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQhxV7Zf0Z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQhxV7Zf0Z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQhxV7Zf0Z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQhxV7Zf0Z .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uQhxV7Zf0Z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQhxV7Zf0Z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQhxV7Zf0Z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQhxV7Zf0Z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQhxV7Zf0Z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQhxV7Zf0Z .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uQhxV7Zf0Z .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uQhxV7Zf0Z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQhxV7Zf0Z .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQhxV7Zf0Z .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 5px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQhxV7Zf0Z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQhxV7Zf0Z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQhxV7Zf0Z .dropdown-item.active,
.cid-uQhxV7Zf0Z .dropdown-item:active {
  background-color: transparent;
}
.cid-uQhxV7Zf0Z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQhxV7Zf0Z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQhxV7Zf0Z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQhxV7Zf0Z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uQhxV7Zf0Z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQhxV7Zf0Z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQhxV7Zf0Z ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQhxV7Zf0Z .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQhxV7Zf0Z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uQhxV7Zf0Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #112b6d;
}
.cid-uQhxV7Zf0Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQhxV7Zf0Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQhxV7Zf0Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQhxV7Zf0Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQhxV7Zf0Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQhxV7Zf0Z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQhxV7Zf0Z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQhxV7Zf0Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQhxV7Zf0Z .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uQhxV7Zf0Z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQhxV7Zf0Z .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQhxV7Zf0Z .navbar {
    height: 70px;
  }
  .cid-uQhxV7Zf0Z .navbar.opened {
    height: auto;
  }
  .cid-uQhxV7Zf0Z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQhxV7Zf0Z .container-head {
  width: 100%;
  min-height: 60px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background-color: #15d8d8;
}
.cid-uQhxV7Zf0Z .mbr-section-title {
  color: #112B6D;
  max-width: 50%;
  margin-right: auto;
}
.cid-uQhxV7Zf0Z .mbr-section-btn {
  max-width: 50%;
  text-align: right;
  margin-left: auto;
}
.cid-uQhxV7Zf0Z .mbr-section-btn .btn {
  font-weight: 500 !important;
}
.cid-uQhxV7Zf0Z .mbr-section-btn .btn:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
@media (max-width: 991px) {
  .cid-uQhxV7Zf0Z .container-head {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .cid-uQhxV7Zf0Z .container {
    overflow: hidden;
  }
  .cid-uQhxV7Zf0Z .mbr-section-title {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    text-align: center !important;
  }
  .cid-uQhxV7Zf0Z .mbr-section-btn {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin-left: 0;
  }
  .cid-uQhxV7Zf0Z .icons-menu {
    margin: 0 auto;
    padding-right: 0;
  }
  .cid-uQhxV7Zf0Z .navbar-collapse {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin: 0 -3.4rem;
  }
  .cid-uQhxV7Zf0Z .navbar-nav {
    padding: 0 !important;
  }
  .cid-uQhxV7Zf0Z .navbar-nav .nav-item {
    margin: 0  !important;
    padding: 0 !important;
  }
  .cid-uQhxV7Zf0Z .navbar-nav .nav-item .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    font-weight: 400 !important;
  }
  .cid-uQhxV7Zf0Z .navbar-nav .nav-item .nav-link:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uQhxV7Zf0Z .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 13px 20px 13px 28px !important;
    line-height: 1 !important;
  }
  .cid-uQhxV7Zf0Z .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uQhxV7Zf0Z .navbar-nav .dropdown-menu .dropdown-submenu {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uQhxV7Zf0Z .container {
    padding: 25px 15px !important;
  }
  .cid-uQhxV7Zf0Z .container-head {
    padding: 10px !important;
  }
  .cid-uQhxV7Zf0Z .navbar-collapse {
    margin: 0 -15px -25px !important;
  }
  .cid-uQhxV7Zf0Z .navbar .navbar-brand {
    width: auto !important;
    max-width: 60%;
  }
  .cid-uQhxV7Zf0Z .navbar-toggler {
    margin-right: 6%;
    max-width: 40%;
  }
}
.cid-uQhxV90CfM {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/online-sports-betting-site-e2-80-8d.jpg-1200x675.jpg");
}
.cid-uQhxV90CfM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQhxV90CfM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQhxV90CfM .text-container {
  width: 100%;
}
.cid-uQhxV90CfM .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  width: 100%;
}
.cid-uQhxV90CfM .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-uQhxV90CfM .mbr-section-btn {
  margin-top: 10px;
}
.cid-uQhxV90CfM .mbr-text,
.cid-uQhxV90CfM .mbr-section-btn {
  color: #ffffff;
}
.cid-uQhxV9RP3a {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #f4f2ef;
}
.cid-uQhxV9RP3a .mbr-text {
  color: #112b6d;
}
.cid-uQhxV9RP3a .mbr-section-subtitle {
  color: #000000;
}
.cid-uQhxV9RP3a .mbr-section-title {
  color: #112b6d;
}
.cid-uQhxVaEW61 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-uQhxVaEW61 .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uQhxVaEW61 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQhxVaEW61 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQhxVaEW61 .content-wrap {
  margin: 0;
}
.cid-uQhxVaEW61 .content-wrap .card {
  padding: 0;
}
.cid-uQhxVaEW61 .google-map {
  height: 100%;
  border-right: 1px solid #150764;
}
@media (max-width: 992px) {
  .cid-uQhxVaEW61 .google-map {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-uQhxVaEW61 .google-map iframe {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQhxVaEW61 .google-map iframe {
    height: 350px;
    object-fit: cover;
  }
}
.cid-uQhxVaEW61 .content-wrapper {
  padding: 190px 72px;
}
@media (max-width: 1640px) {
  .cid-uQhxVaEW61 .content-wrapper {
    padding: 190px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uQhxVaEW61 .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uQhxVaEW61 .content-wrapper .title-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uQhxVaEW61 .content-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uQhxVaEW61 .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uQhxVaEW61 .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uQhxVaEW61 .content-wrapper .contacts-wrapper {
  margin-bottom: 40px;
}
.cid-uQhxVaEW61 .content-wrapper .contacts-wrapper .mbr-desc {
  margin-bottom: 12px;
}
.cid-uQhxVaEW61 .content-wrapper .contacts-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uQhxVaEW61 .content-wrapper .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uQhxVaEW61 .content-wrapper .contacts-wrapper .list .item-wrap:hover,
.cid-uQhxVaEW61 .content-wrapper .contacts-wrapper .list .item-wrap:focus {
  color: #4188ff;
}
.cid-uQhxVaEW61 .content-wrapper .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uQhxVaEW61 .mbr-section-title {
  color: #150764;
}
.cid-uQhxVaEW61 .mbr-desc {
  color: #150764;
}
.cid-uQhxVaEW61 .item-desc {
  color: #150764;
}
.cid-uQhxVaEW61 .list {
  color: #150764;
}
.cid-uQhxVbuleJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #021041;
  overflow: hidden;
}
.cid-uQhxVbuleJ .mbr-text {
  color: #E1F5FF;
}
.cid-uQhxVbuleJ .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-uQhzKNRSxB .navbar-dropdown {
  position: relative !important;
}
.cid-uQhzKNRSxB .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQhzKNRSxB .dropdown-menu {
  padding: 0;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uQhzKNRSxB .dropdown-menu .dropdown-item {
  border: none !important;
  border-radius: 0 !important;
  padding: 13px 20px 13px 28px !important;
  line-height: 1 !important;
}
.cid-uQhzKNRSxB .dropdown-menu .dropdown-item:hover {
  background-color: #112B6D !important;
  color: #FFFFFF !important;
}
.cid-uQhzKNRSxB .dropdown-item:hover,
.cid-uQhzKNRSxB .dropdown-item:focus {
  background: #112B6D !important;
  color: white !important;
}
.cid-uQhzKNRSxB .dropdown-item:hover span {
  color: white;
}
.cid-uQhzKNRSxB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uQhzKNRSxB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uQhzKNRSxB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uQhzKNRSxB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uQhzKNRSxB .nav-link {
  position: relative;
}
.cid-uQhzKNRSxB .container {
  display: flex;
  margin: auto;
  max-width: 100%;
  width: 100%;
  padding: 0 3.4rem !important;
  min-height: 60px;
}
@media (min-width: 992px) {
  .cid-uQhzKNRSxB .container {
    flex-wrap: nowrap;
  }
}
.cid-uQhzKNRSxB .iconfont-wrapper {
  color: #112b6d !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uQhzKNRSxB .navbar-nav {
  padding: 5px !important;
}
.cid-uQhzKNRSxB .navbar-nav .nav-item {
  margin: 0 5px !important;
  padding: 0 !important;
}
.cid-uQhzKNRSxB .navbar-nav .nav-item .nav-link {
  margin: 0 !important;
  padding: 13px 8px !important;
  font-weight: 400 !important;
}
.cid-uQhzKNRSxB .dropdown-menu,
.cid-uQhzKNRSxB .navbar.opened {
  background: #000000 !important;
}
.cid-uQhzKNRSxB .nav-item:focus,
.cid-uQhzKNRSxB .nav-link:focus {
  outline: none;
}
.cid-uQhzKNRSxB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQhzKNRSxB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQhzKNRSxB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQhzKNRSxB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQhzKNRSxB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQhzKNRSxB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQhzKNRSxB .navbar {
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uQhzKNRSxB .navbar.opened {
  transition: all 0.3s;
}
.cid-uQhzKNRSxB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
  font-weight: 400 !important;
}
.cid-uQhzKNRSxB .navbar .navbar-logo img {
  width: auto;
}
.cid-uQhzKNRSxB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uQhzKNRSxB .navbar.collapsed {
  justify-content: center;
}
.cid-uQhzKNRSxB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQhzKNRSxB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uQhzKNRSxB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uQhzKNRSxB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQhzKNRSxB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQhzKNRSxB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uQhzKNRSxB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQhzKNRSxB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uQhzKNRSxB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uQhzKNRSxB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQhzKNRSxB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQhzKNRSxB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQhzKNRSxB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uQhzKNRSxB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uQhzKNRSxB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQhzKNRSxB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uQhzKNRSxB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uQhzKNRSxB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uQhzKNRSxB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQhzKNRSxB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-uQhzKNRSxB .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-uQhzKNRSxB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQhzKNRSxB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uQhzKNRSxB .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 5px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uQhzKNRSxB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uQhzKNRSxB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQhzKNRSxB .dropdown-item.active,
.cid-uQhzKNRSxB .dropdown-item:active {
  background-color: transparent;
}
.cid-uQhzKNRSxB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQhzKNRSxB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQhzKNRSxB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQhzKNRSxB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-uQhzKNRSxB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQhzKNRSxB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQhzKNRSxB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uQhzKNRSxB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQhzKNRSxB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uQhzKNRSxB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #112b6d;
}
.cid-uQhzKNRSxB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQhzKNRSxB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQhzKNRSxB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQhzKNRSxB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQhzKNRSxB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQhzKNRSxB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQhzKNRSxB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQhzKNRSxB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQhzKNRSxB .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uQhzKNRSxB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uQhzKNRSxB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uQhzKNRSxB .navbar {
    height: 70px;
  }
  .cid-uQhzKNRSxB .navbar.opened {
    height: auto;
  }
  .cid-uQhzKNRSxB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQhzKNRSxB .container-head {
  width: 100%;
  min-height: 60px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  background-color: #15d8d8;
}
.cid-uQhzKNRSxB .mbr-section-title {
  color: #112B6D;
  max-width: 50%;
  margin-right: auto;
}
.cid-uQhzKNRSxB .mbr-section-btn {
  max-width: 50%;
  text-align: right;
  margin-left: auto;
}
.cid-uQhzKNRSxB .mbr-section-btn .btn {
  font-weight: 500 !important;
}
.cid-uQhzKNRSxB .mbr-section-btn .btn:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}
@media (max-width: 991px) {
  .cid-uQhzKNRSxB .container-head {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .cid-uQhzKNRSxB .container {
    overflow: hidden;
  }
  .cid-uQhzKNRSxB .mbr-section-title {
    max-width: 100%;
    width: 100%;
    margin-right: 0;
    text-align: center !important;
  }
  .cid-uQhzKNRSxB .mbr-section-btn {
    max-width: 100%;
    width: 100%;
    text-align: center !important;
    margin-left: 0;
  }
  .cid-uQhzKNRSxB .icons-menu {
    margin: 0 auto;
    padding-right: 0;
  }
  .cid-uQhzKNRSxB .navbar-collapse {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    margin: 0 -3.4rem;
  }
  .cid-uQhzKNRSxB .navbar-nav {
    padding: 0 !important;
  }
  .cid-uQhzKNRSxB .navbar-nav .nav-item {
    margin: 0  !important;
    padding: 0 !important;
  }
  .cid-uQhzKNRSxB .navbar-nav .nav-item .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 10px 20px !important;
    font-weight: 400 !important;
  }
  .cid-uQhzKNRSxB .navbar-nav .nav-item .nav-link:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uQhzKNRSxB .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    text-align: left !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 13px 20px 13px 28px !important;
    line-height: 1 !important;
  }
  .cid-uQhzKNRSxB .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #112B6D !important;
    color: #FFFFFF !important;
  }
  .cid-uQhzKNRSxB .navbar-nav .dropdown-menu .dropdown-submenu {
    margin-left: 0 !important;
  }
}
@media (max-width: 767px) {
  .cid-uQhzKNRSxB .container {
    padding: 25px 15px !important;
  }
  .cid-uQhzKNRSxB .container-head {
    padding: 10px !important;
  }
  .cid-uQhzKNRSxB .navbar-collapse {
    margin: 0 -15px -25px !important;
  }
  .cid-uQhzKNRSxB .navbar .navbar-brand {
    width: auto !important;
    max-width: 60%;
  }
  .cid-uQhzKNRSxB .navbar-toggler {
    margin-right: 6%;
    max-width: 40%;
  }
}
.cid-uQhzKP0SPC {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/carl-raw-7h7kvcihbvi-unsplash-1280x840.jpg-1280x840.jpg");
}
.cid-uQhzKP0SPC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQhzKP0SPC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQhzKP0SPC .text-container {
  width: 100%;
}
.cid-uQhzKP0SPC .mbr-section-title {
  color: #ffffff;
  margin-bottom: 0;
  width: 100%;
}
.cid-uQhzKP0SPC .mbr-text {
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 20px;
  width: 100%;
}
.cid-uQhzKP0SPC .mbr-section-btn {
  margin-top: 10px;
}
.cid-uQhzKP0SPC .mbr-text,
.cid-uQhzKP0SPC .mbr-section-btn {
  color: #ffffff;
}
.cid-uQhzKPMGRH {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #f4f2ef;
}
.cid-uQhzKPMGRH .mbr-text {
  color: #112b6d;
}
.cid-uQhzKPMGRH .mbr-section-subtitle {
  color: #000000;
}
.cid-uQhzKPMGRH .mbr-section-title {
  color: #112b6d;
}
.cid-uQhzKQAOwd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  position: relative;
  overflow: hidden;
  background-color: #f4f2ef;
}
.cid-uQhzKQAOwd .border-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000vh;
  height: 1px;
  background-color: #150764;
}
.cid-uQhzKQAOwd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQhzKQAOwd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQhzKQAOwd .content-wrap {
  margin: 0;
}
.cid-uQhzKQAOwd .content-wrap .card {
  padding: 0;
}
.cid-uQhzKQAOwd .google-map {
  height: 100%;
  border-right: 1px solid #150764;
}
@media (max-width: 992px) {
  .cid-uQhzKQAOwd .google-map {
    border-right: none;
    border-bottom: 1px solid #150764;
  }
}
.cid-uQhzKQAOwd .google-map iframe {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uQhzKQAOwd .google-map iframe {
    height: 350px;
    object-fit: cover;
  }
}
.cid-uQhzKQAOwd .content-wrapper {
  padding: 190px 72px;
}
@media (max-width: 1640px) {
  .cid-uQhzKQAOwd .content-wrapper {
    padding: 190px 24px;
  }
}
@media (max-width: 992px) {
  .cid-uQhzKQAOwd .content-wrapper {
    padding: 40px 0;
  }
}
.cid-uQhzKQAOwd .content-wrapper .title-wrapper {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .cid-uQhzKQAOwd .content-wrapper .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-uQhzKQAOwd .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uQhzKQAOwd .content-wrapper .title-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uQhzKQAOwd .content-wrapper .contacts-wrapper {
  margin-bottom: 40px;
}
.cid-uQhzKQAOwd .content-wrapper .contacts-wrapper .mbr-desc {
  margin-bottom: 12px;
}
.cid-uQhzKQAOwd .content-wrapper .contacts-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uQhzKQAOwd .content-wrapper .contacts-wrapper .list .item-wrap {
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uQhzKQAOwd .content-wrapper .contacts-wrapper .list .item-wrap:hover,
.cid-uQhzKQAOwd .content-wrapper .contacts-wrapper .list .item-wrap:focus {
  color: #4188ff;
}
.cid-uQhzKQAOwd .content-wrapper .contacts-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uQhzKQAOwd .mbr-section-title {
  color: #150764;
}
.cid-uQhzKQAOwd .mbr-desc {
  color: #150764;
}
.cid-uQhzKQAOwd .item-desc {
  color: #150764;
}
.cid-uQhzKQAOwd .list {
  color: #150764;
}
.cid-uQhzKRxKHu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #021041;
  overflow: hidden;
}
.cid-uQhzKRxKHu .mbr-text {
  color: #E1F5FF;
}
.cid-uQhzKRxKHu .media-container-row .mbr-text {
  color: #ffffff;
}
