body {
  font-family: 'Inter', sans-serif;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.88rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.35rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.504rem;
    font-size: calc( 1.3079999999999998rem + (1.88 - 1.3079999999999998) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.2 * (1.3079999999999998rem + (1.88 - 1.3079999999999998) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.25 * (1rem + (1 - 1) * ((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: #061af5 !important;
}
.bg-success {
  background-color: #64ff54 !important;
}
.bg-info {
  background-color: #56f1ff !important;
}
.bg-warning {
  background-color: #fdff54 !important;
}
.bg-danger {
  background-color: #f7874b !important;
}
.btn-primary .btn-overlay {
  background-color: #2731a1 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #061af5 !important;
  border-color: #061af5 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2731a1 !important;
  border-color: #2731a1 !important;
}
.btn-secondary .btn-overlay {
  background-color: #8e9d51 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
  color: #181c06 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #181c06 !important;
  background-color: #8e9d51 !important;
  border-color: #8e9d51 !important;
}
.btn-info .btn-overlay {
  background-color: #48ceda !important;
}
.btn-info,
.btn-info:active {
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
  color: #004f56 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #004f56 !important;
  background-color: #48ceda !important;
  border-color: #48ceda !important;
}
.btn-success .btn-overlay {
  background-color: #54d947 !important;
}
.btn-success,
.btn-success:active {
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
  color: #085400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #085400 !important;
  background-color: #54d947 !important;
  border-color: #54d947 !important;
}
.btn-warning .btn-overlay {
  background-color: #d8d947 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
  color: #535400 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #535400 !important;
  background-color: #d8d947 !important;
  border-color: #d8d947 !important;
}
.btn-danger .btn-overlay {
  background-color: #cc7343 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #f7874b !important;
  border-color: #f7874b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #cc7343 !important;
  border-color: #cc7343 !important;
}
.btn-white .btn-overlay {
  background-color: #e1e1e1 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-black .btn-overlay {
  background-color: #000000 !important;
}
.btn-black,
.btn-black:active {
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #061af5;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0411a0 !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: #061af5 !important;
  border-color: #061af5 !important;
}
.btn-secondary-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bcd948;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #8da823 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #181c06 !important;
  background-color: #bcd948 !important;
  border-color: #bcd948 !important;
}
.btn-info-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #56f1ff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #00e9fe !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #004f56 !important;
  background-color: #56f1ff !important;
  border-color: #56f1ff !important;
}
.btn-success-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #64ff54;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #18fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #085400 !important;
  background-color: #64ff54 !important;
  border-color: #64ff54 !important;
}
.btn-warning-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fdff54;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #f9fc00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #535400 !important;
  background-color: #fdff54 !important;
  border-color: #fdff54 !important;
}
.btn-danger-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f7874b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #e1550a !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: #f7874b !important;
  border-color: #f7874b !important;
}
.btn-black-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1b1f0a;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #1b1f0a !important;
  border-color: #1b1f0a !important;
}
.btn-white-outline {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #061af5 !important;
}
.text-secondary {
  color: #bcd948 !important;
}
.text-success {
  color: #64ff54 !important;
}
.text-info {
  color: #56f1ff !important;
}
.text-warning {
  color: #fdff54 !important;
}
.text-danger {
  color: #f7874b !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #1B1F0A !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #040f91 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #829b20 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #16ed00 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #00dbef !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #eaed00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #d35009 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #061af5;
}
.nav-tabs .nav-link:not(.active) {
  color: #1B1F0A;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #56f1ff;
}
.alert-warning {
  background-color: #fdff54;
}
.alert-danger {
  background-color: #f7874b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #061af5;
  border-color: #061af5;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #061af5;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c9cefe;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #061af5 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #061af5;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #061af5;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #061af5;
}
.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: #061af5;
  border-bottom-color: #061af5;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #061af5 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #bcd948 !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='%23061af5' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
a:hover {
  background-image: none !important;
}
.container {
  width: 90%;
  max-width: 70rem;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.row {
  margin-left: 0;
  margin-right: 0;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 0;
  padding-right: 0;
}
.mbr-section-btn .btn {
  min-width: 100px;
  border-radius: 100vw;
  padding: 1rem 1.5rem;
  line-height: 1.25;
  font-weight: 600 !important;
  box-shadow: none !important;
  border: none !important;
  position: relative;
  overflow: hidden;
}
.mbr-section-btn .btn .mbr-iconfont {
  position: relative;
  z-index: 1000;
}
.mbr-section-btn .btn-transform {
  position: relative;
  overflow: hidden;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn-transform .btn-transform-1 {
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.3s all !important;
  animation: btn-move-out 0.3s ease-in-out;
}
.mbr-section-btn .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 100%;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  transition: 0.3s all !important;
}
.mbr-section-btn .btn {
  transition: 0.3s all !important;
}
.mbr-section-btn .btn:hover .btn-transform .btn-transform-1 {
  animation: btn-move 0.3s ease-in-out;
}
.mbr-section-btn .btn:hover .btn-overlay {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg) !important;
}
@media (max-width: 575px) {
  .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .mbr-section-btn .btn {
    width: 100%;
    box-shadow: none !important;
  }
}
b {
  font-weight: 600 !important;
}
@keyframes btn-move {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
@keyframes btn-move-out {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  49% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
.cid-uS2dyAWEg7 .navbar-dropdown {
  position: relative !important;
}
.cid-uS2dyAWEg7 .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uS2dyAWEg7 .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uS2dyAWEg7 .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-uS2dyAWEg7 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uS2dyAWEg7 .dropdown-item {
  border: 1px solid #63635d !important;
  background: #efef51 !important;
}
.cid-uS2dyAWEg7 .dropdown-item:hover,
.cid-uS2dyAWEg7 .dropdown-item:focus {
  background: #efef51 !important;
}
.cid-uS2dyAWEg7 .dropdown-item:hover span {
  color: white;
}
.cid-uS2dyAWEg7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uS2dyAWEg7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uS2dyAWEg7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uS2dyAWEg7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uS2dyAWEg7 .nav-link {
  position: relative;
}
.cid-uS2dyAWEg7 .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uS2dyAWEg7 .container {
    flex-wrap: nowrap;
  }
}
.cid-uS2dyAWEg7 .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uS2dyAWEg7 .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uS2dyAWEg7 .dropdown-menu,
.cid-uS2dyAWEg7 .navbar.opened {
  background: #efef51 !important;
}
.cid-uS2dyAWEg7 .nav-item:focus,
.cid-uS2dyAWEg7 .nav-link:focus {
  outline: none;
}
.cid-uS2dyAWEg7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uS2dyAWEg7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uS2dyAWEg7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uS2dyAWEg7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uS2dyAWEg7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uS2dyAWEg7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uS2dyAWEg7 .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #efef51;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uS2dyAWEg7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uS2dyAWEg7 .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uS2dyAWEg7 .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uS2dyAWEg7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uS2dyAWEg7 .navbar.collapsed {
  justify-content: center;
}
.cid-uS2dyAWEg7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uS2dyAWEg7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uS2dyAWEg7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uS2dyAWEg7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uS2dyAWEg7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uS2dyAWEg7 .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-uS2dyAWEg7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uS2dyAWEg7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uS2dyAWEg7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uS2dyAWEg7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uS2dyAWEg7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uS2dyAWEg7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uS2dyAWEg7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uS2dyAWEg7 .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-uS2dyAWEg7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uS2dyAWEg7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uS2dyAWEg7 .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uS2dyAWEg7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uS2dyAWEg7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uS2dyAWEg7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uS2dyAWEg7 .navbar.navbar-short {
  min-height: 96px;
}
.cid-uS2dyAWEg7 .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uS2dyAWEg7 .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uS2dyAWEg7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uS2dyAWEg7 .navbar-brand .navbar-caption:hover,
.cid-uS2dyAWEg7 .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uS2dyAWEg7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uS2dyAWEg7 .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uS2dyAWEg7 .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uS2dyAWEg7 .dropdown-item.active,
.cid-uS2dyAWEg7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uS2dyAWEg7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uS2dyAWEg7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uS2dyAWEg7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uS2dyAWEg7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efef51;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uS2dyAWEg7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uS2dyAWEg7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uS2dyAWEg7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uS2dyAWEg7 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uS2dyAWEg7 ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uS2dyAWEg7 .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uS2dyAWEg7 .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uS2dyAWEg7 .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uS2dyAWEg7 .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uS2dyAWEg7 button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #efef51 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uS2dyAWEg7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uS2dyAWEg7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uS2dyAWEg7 button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uS2dyAWEg7 button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uS2dyAWEg7 button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uS2dyAWEg7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uS2dyAWEg7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uS2dyAWEg7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uS2dyAWEg7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uS2dyAWEg7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uS2dyAWEg7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uS2dyAWEg7 .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-uS2dyAWEg7 .navbar {
    height: 70px;
  }
  .cid-uS2dyAWEg7 .navbar.opened {
    height: auto;
  }
  .cid-uS2dyAWEg7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uS2dyAWEg7 .navbar-nav {
  margin: 0 auto;
}
.cid-uS2dyAWEg7 .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uS2dyAWEg7 .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #63635d;
}
.cid-uS2dyAWEg7 .nav-item .nav-link::after {
  color: #63635d !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uS2dyAWEg7 .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uS2dyAWEg7 .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uS2dyAWEg7 .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uS2dyAWEg7 .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uS2dyAWEg7 .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uS2dyAWEg7 .navbar {
    justify-content: flex-start !important;
  }
  .cid-uS2dyAWEg7 .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uS2dyAWEg7 .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uS2dyAWEg7 .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uS2dyAWEg7 .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uS2dyAWEg7 .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uS2dyAWEg7 .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uS2dyAWEg7 .content-wrap {
  min-height: 110px;
}
.cid-uhED6b1qID {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/20.webp");
}
.cid-uhED6b1qID .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhED6b1qID .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhED6b1qID .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uhED6b1qID .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhED6b1qID .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uhED6b1qID .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhED6b1qID .container {
    padding: 0 24px;
  }
}
.cid-uhED6b1qID .content-wrapper {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .cid-uhED6b1qID .content-wrapper {
    padding: 0;
  }
}
.cid-uhED6b1qID .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 16px;
  border-radius: 500px;
  z-index: 1;
}
.cid-uhED6b1qID .content-wrapper .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #ffffff;
  opacity: .12;
  pointer-events: none;
}
.cid-uhED6b1qID .content-wrapper .desc-wrapper .mbr-desc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background-color: #ffffff;
  opacity: .09;
  pointer-events: none;
}
.cid-uhED6b1qID .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhED6b1qID .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uhED6b1qID .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uhED6b1qID .mbr-section-title {
  color: #ffffff;
}
.cid-uhED6b1qID .mbr-desc,
.cid-uhED6b1qID .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhED6b1qID .mbr-text,
.cid-uhED6b1qID .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhED6b1qID .mbr-section-title,
.cid-uhED6b1qID .mbr-section-btn {
  text-align: center;
}
.cid-uhCNNIbecd {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #99f5fe;
}
.cid-uhCNNIbecd .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uhCNNIbecd .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uhCNNIbecd .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-uhCNNIbecd .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uhCNNIbecd .mbr-text {
  color: #000000;
}
.cid-uhEDlbzCbB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uhEDlbzCbB blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #99f5fe;
}
.cid-uhEDlbzCbB .mbr-section-title {
  text-align: center;
}
.cid-uhEDlbzCbB .mbr-text {
  color: #000000;
}
.cid-uhEDGewrHJ {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #99f5fe;
}
.cid-uhEDGewrHJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEDGewrHJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uhEDGewrHJ .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uhEDGewrHJ .row {
  background: #000000;
  align-items: center;
  padding: 3rem;
  border-radius: 3rem;
  width: fit-content;
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uhEDGewrHJ .row {
    padding: 3rem 1rem;
    padding-bottom: 1rem;
    border-radius: 2rem;
  }
}
.cid-uhEDGewrHJ img {
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-uhEDGewrHJ img {
    border-radius: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uhEDGewrHJ .image-wrapper {
    padding: 1rem;
  }
}
.cid-uhEDGewrHJ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uhEDGewrHJ .mbr-text,
.cid-uhEDGewrHJ .mbr-section-btn {
  color: #ffffff;
}
.cid-t2YrRMp191 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-t2YrRMp191 .row {
  align-items: center;
  width: 100%;
}
.cid-t2YrRMp191 .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2YrRMp191 .mbr-section-title {
  color: #f3f4ef;
}
.cid-t2YrRMp191 .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-t2YrRMp191 .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-t2YrRMp191 .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-t2YrRMp191 .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t2YrRMp191 .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #99f5fe;
}
@media (max-width: 991px) {
  .cid-t2YrRMp191 .text-container {
    padding: 24px;
  }
}
.cid-t2YrRMp191 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2YrRMp191 .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-t2YrRMp191 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #ddff55;
}
.cid-t2YrRMp191 .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-t2YrRMp191 .mbr-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-uhEG8FWDVa {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #99f5fe;
}
.cid-uhEG8FWDVa .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhEG8FWDVa .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uhEG8FWDVa .col-title,
.cid-uhEG8FWDVa .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uhEG8FWDVa .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uhEG8FWDVa .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uhEG8FWDVa .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uhEG8FWDVa .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uhEG8FWDVa .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uhEG8FWDVa .mbr-text {
    text-align: center !important;
  }
}
.cid-uS2oiRxaVH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uS2oiRxaVH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2oiRxaVH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2oiRxaVH .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uS2oiRxaVH .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uS2oiRxaVH .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-uS2oiRxaVH .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uS2oiRxaVH .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uS2oiRxaVH .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uS2oiRxaVH .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uS2oiRxaVH .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uS2oiRxaVH .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uS2oiRxaVH .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uS2oiRxaVH .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uS2oiRxaVH .mbr-section-title {
  color: #19171c;
}
.cid-uS2oiRxaVH .panel-title {
  color: #19171c;
}
.cid-uS2oiRxaVH .panel-text {
  color: #ffffff;
}
.cid-uS2oiRxaVH .panel-title-edit {
  color: #ffffff;
}
.cid-uS2oiRxaVH .mbr-section-title,
.cid-uS2oiRxaVH .mbr-section-btn {
  color: #ffffff;
}
.cid-uhEG7WsWP4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uhEG7WsWP4 .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uhEG7WsWP4 .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uhEG7WsWP4 .col-title,
.cid-uhEG7WsWP4 .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uhEG7WsWP4 .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uhEG7WsWP4 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uhEG7WsWP4 .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uhEG7WsWP4 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uhEG7WsWP4 .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uhEG7WsWP4 .mbr-text {
    text-align: center !important;
  }
}
.cid-t2YzETSBMU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-t2YzETSBMU .row {
  align-items: center;
  width: 100%;
}
.cid-t2YzETSBMU .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-t2YzETSBMU .mbr-section-title {
  color: #000000;
}
.cid-t2YzETSBMU .mbr-section-subtitle {
  color: #000000;
}
.cid-t2YzETSBMU .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-t2YzETSBMU .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-t2YzETSBMU .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-t2YzETSBMU .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #99f5fe;
}
@media (max-width: 991px) {
  .cid-t2YzETSBMU .text-container {
    padding: 24px;
  }
}
.cid-t2YzETSBMU .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-t2YzETSBMU .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-t2YzETSBMU .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #000000;
}
.cid-t2YzETSBMU .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-t2YzETSBMU .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
  text-align: center;
}
.cid-uhEGXNtYk2 {
  display: flex;
  padding-top: 75px;
  padding-bottom: 45px;
  background: linear-gradient(to bottom, #000000, #99f5fe);
}
@media (min-width: 768px) {
  .cid-uhEGXNtYk2 {
    align-items: flex-start;
  }
  .cid-uhEGXNtYk2 .row {
    justify-content: center;
  }
}
.cid-uhEGXNtYk2 .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uhEGXNtYk2 .mbr-text,
.cid-uhEGXNtYk2 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uhEGXNtYk2 .mbr-section-title,
.cid-uhEGXNtYk2 .line {
  color: #ffffff;
  text-align: center;
}
.cid-uhEGXNtYk2 h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uhEGXNtYk2 h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uhEGXNtYk2 .mbr-section-subtitle,
.cid-uhEGXNtYk2 .align {
  text-align: left;
  color: #232323;
}
.cid-uhEGXNtYk2 .mbr-text2 {
  color: #808080;
}
.cid-uhFjmQ0zn3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #99f5fe;
}
.cid-uhFjmQ0zn3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhFjmQ0zn3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhFjmQ0zn3 .row {
  justify-content: center;
}
.cid-uhFjmQ0zn3 .col-title {
  margin-bottom: 2.5rem;
}
.cid-uhFjmQ0zn3 .mbr-section-title {
  color: #000000;
}
.cid-uhFjmQ0zn3 .mbr-section-subtitle {
  color: #000000;
  margin-top: 1rem;
}
.cid-uhFjmQ0zn3 .img-container {
  margin: 0 auto;
}
.cid-uhFjmQ0zn3 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  height: 620px;
}
.cid-uhFjmQ0zn3 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uhEDDMIaoX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uhEDDMIaoX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEDDMIaoX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhEDDMIaoX .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uhEDDMIaoX .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uhEDDMIaoX .container {
    padding: 0 30px;
  }
}
.cid-uhEDDMIaoX .row {
  position: relative;
}
.cid-uhEDDMIaoX .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uhEDDMIaoX .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uhEDDMIaoX .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #99f5fe;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uhEDDMIaoX .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uhEDDMIaoX .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uhEDDMIaoX .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uhEDDMIaoX .mbr-text {
  color: #000000;
}
.cid-uhEDDMIaoX .mbr-link,
.cid-uhEDDMIaoX .mbr-iconfont {
  color: #212529;
}
.cid-uhEDDMIaoX .mbr-section-title {
  color: #000000;
}
.cid-uhEHf7ieZN {
  display: flex;
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(to bottom, #99f5fe, #000000);
}
@media (min-width: 768px) {
  .cid-uhEHf7ieZN {
    align-items: flex-start;
  }
  .cid-uhEHf7ieZN .row {
    justify-content: center;
  }
}
.cid-uhEHf7ieZN .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uhEHf7ieZN .mbr-text,
.cid-uhEHf7ieZN .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uhEHf7ieZN .mbr-section-title,
.cid-uhEHf7ieZN .line {
  color: #ffffff;
  text-align: center;
}
.cid-uhEHf7ieZN h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uhEHf7ieZN h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uhEHf7ieZN .mbr-section-subtitle,
.cid-uhEHf7ieZN .align {
  text-align: left;
  color: #232323;
}
.cid-uhEHf7ieZN .mbr-text2 {
  color: #808080;
}
.cid-uhDS60R6i6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uhDS60R6i6 .google-map {
  height: 30rem;
  position: relative;
}
.cid-uhDS60R6i6 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uhDS60R6i6 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uhDS60R6i6 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhDS60R6i6 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhDS60R6i6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDS60R6i6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2rt8JnOS {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #99f5fe;
}
.cid-uS2rt8JnOS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2rt8JnOS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2rt8JnOS .content-wrap {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uS2rt8JnOS .content-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uS2rt8JnOS .content-wrapper .social-wrap {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uS2rt8JnOS .content-wrapper .social-wrap {
    margin-bottom: 12px;
  }
}
.cid-uS2rt8JnOS .content-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uS2rt8JnOS .content-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uS2rt8JnOS .content-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uS2rt8JnOS .content-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ffe66d;
}
.cid-uS2rt8JnOS .content-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  color: #050f0f;
  font-size: 32px;
  border-radius: .5rem;
  border: 2px solid #050f0f;
  transition: all 0.3s ease-in-out;
  margin: 0 12px 12px 0;
}
.cid-uS2rt8JnOS .content-wrapper .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
}
@media (max-width: 992px) {
  .cid-uS2rt8JnOS .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uS2rt8JnOS .list-wrapper .list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uS2rt8JnOS .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-uS2rt8JnOS .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uS2rt8JnOS .list-wrapper .list .item-wrap:hover,
.cid-uS2rt8JnOS .list-wrapper .list .item-wrap:focus {
  transform: translateX(3px);
}
.cid-uS2rt8JnOS .title-wrapper .mbr-section-title {
  margin-top: 80px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uS2rt8JnOS .title-wrapper .mbr-section-title {
    margin-top: 8px;
  }
}
.cid-uS2rt8JnOS .list {
  color: #050f0f;
}
.cid-uS2rt8JnOS .mbr-copy {
  color: #050f0f;
}
.cid-uS2rt8JnOS .mbr-section-title {
  color: #87ceeb;
  text-align: center;
}
.cid-uhEKLCmXpU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/21.webp");
}
.cid-uhEKLCmXpU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEKLCmXpU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhEKLCmXpU .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uhEKLCmXpU .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhEKLCmXpU .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uhEKLCmXpU .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhEKLCmXpU .container {
    padding: 0 24px;
  }
}
.cid-uhEKLCmXpU .content-wrapper {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .cid-uhEKLCmXpU .content-wrapper {
    padding: 0;
  }
}
.cid-uhEKLCmXpU .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 16px;
  border-radius: 500px;
  z-index: 1;
}
.cid-uhEKLCmXpU .content-wrapper .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #ffffff;
  opacity: .12;
  pointer-events: none;
}
.cid-uhEKLCmXpU .content-wrapper .desc-wrapper .mbr-desc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background-color: #ffffff;
  opacity: .09;
  pointer-events: none;
}
.cid-uhEKLCmXpU .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhEKLCmXpU .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uhEKLCmXpU .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uhEKLCmXpU .mbr-section-title {
  color: #ffffff;
}
.cid-uhEKLCmXpU .mbr-desc,
.cid-uhEKLCmXpU .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhEKLCmXpU .mbr-text,
.cid-uhEKLCmXpU .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhEKLCmXpU .mbr-section-title,
.cid-uhEKLCmXpU .mbr-section-btn {
  text-align: center;
}
.cid-uhDV9LkfL9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fafafa;
}
.cid-uhDV9LkfL9 .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #061af5;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uhDV9LkfL9 .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uhDV9LkfL9 .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uhDV9LkfL9 .main-title.display-2 {
  line-height: 1.375;
}
.cid-uhDV9LkfL9 .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uhDV9LkfL9 .mbr-text {
  color: #606060;
}
.cid-uhDV9LkfL9 .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uhDV9LkfL9 .mbr-section-btn {
  margin-top: 24px;
}
.cid-uhDV9LkfL9 .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uhDV9LkfL9 .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uhDV9LkfL9 .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uhDV9LkfL9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDV9LkfL9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDV9LkfL9 .mbr-text,
.cid-uhDV9LkfL9 .mbr-section-btn {
  color: #000000;
}
.cid-uhDV9ZodSZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uhDV9ZodSZ .google-map {
  height: 30rem;
  position: relative;
}
.cid-uhDV9ZodSZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uhDV9ZodSZ .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uhDV9ZodSZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhDV9ZodSZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhDV9ZodSZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDV9ZodSZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2dyAWEg7 .navbar-dropdown {
  position: relative !important;
}
.cid-uS2dyAWEg7 .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uS2dyAWEg7 .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uS2dyAWEg7 .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-uS2dyAWEg7 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uS2dyAWEg7 .dropdown-item {
  border: 1px solid #63635d !important;
  background: #efef51 !important;
}
.cid-uS2dyAWEg7 .dropdown-item:hover,
.cid-uS2dyAWEg7 .dropdown-item:focus {
  background: #efef51 !important;
}
.cid-uS2dyAWEg7 .dropdown-item:hover span {
  color: white;
}
.cid-uS2dyAWEg7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uS2dyAWEg7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uS2dyAWEg7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uS2dyAWEg7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uS2dyAWEg7 .nav-link {
  position: relative;
}
.cid-uS2dyAWEg7 .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uS2dyAWEg7 .container {
    flex-wrap: nowrap;
  }
}
.cid-uS2dyAWEg7 .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uS2dyAWEg7 .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uS2dyAWEg7 .dropdown-menu,
.cid-uS2dyAWEg7 .navbar.opened {
  background: #efef51 !important;
}
.cid-uS2dyAWEg7 .nav-item:focus,
.cid-uS2dyAWEg7 .nav-link:focus {
  outline: none;
}
.cid-uS2dyAWEg7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uS2dyAWEg7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uS2dyAWEg7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uS2dyAWEg7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uS2dyAWEg7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uS2dyAWEg7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uS2dyAWEg7 .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #efef51;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uS2dyAWEg7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uS2dyAWEg7 .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uS2dyAWEg7 .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uS2dyAWEg7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uS2dyAWEg7 .navbar.collapsed {
  justify-content: center;
}
.cid-uS2dyAWEg7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uS2dyAWEg7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uS2dyAWEg7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uS2dyAWEg7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uS2dyAWEg7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uS2dyAWEg7 .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-uS2dyAWEg7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uS2dyAWEg7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uS2dyAWEg7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uS2dyAWEg7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uS2dyAWEg7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uS2dyAWEg7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uS2dyAWEg7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uS2dyAWEg7 .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-uS2dyAWEg7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uS2dyAWEg7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uS2dyAWEg7 .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uS2dyAWEg7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uS2dyAWEg7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uS2dyAWEg7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uS2dyAWEg7 .navbar.navbar-short {
  min-height: 96px;
}
.cid-uS2dyAWEg7 .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uS2dyAWEg7 .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uS2dyAWEg7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uS2dyAWEg7 .navbar-brand .navbar-caption:hover,
.cid-uS2dyAWEg7 .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uS2dyAWEg7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uS2dyAWEg7 .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uS2dyAWEg7 .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uS2dyAWEg7 .dropdown-item.active,
.cid-uS2dyAWEg7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uS2dyAWEg7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uS2dyAWEg7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uS2dyAWEg7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uS2dyAWEg7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efef51;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uS2dyAWEg7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uS2dyAWEg7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uS2dyAWEg7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uS2dyAWEg7 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uS2dyAWEg7 ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uS2dyAWEg7 .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uS2dyAWEg7 .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uS2dyAWEg7 .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uS2dyAWEg7 .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uS2dyAWEg7 button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #efef51 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uS2dyAWEg7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uS2dyAWEg7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uS2dyAWEg7 button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uS2dyAWEg7 button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uS2dyAWEg7 button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uS2dyAWEg7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uS2dyAWEg7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uS2dyAWEg7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uS2dyAWEg7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uS2dyAWEg7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uS2dyAWEg7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uS2dyAWEg7 .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-uS2dyAWEg7 .navbar {
    height: 70px;
  }
  .cid-uS2dyAWEg7 .navbar.opened {
    height: auto;
  }
  .cid-uS2dyAWEg7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uS2dyAWEg7 .navbar-nav {
  margin: 0 auto;
}
.cid-uS2dyAWEg7 .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uS2dyAWEg7 .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #63635d;
}
.cid-uS2dyAWEg7 .nav-item .nav-link::after {
  color: #63635d !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uS2dyAWEg7 .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uS2dyAWEg7 .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uS2dyAWEg7 .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uS2dyAWEg7 .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uS2dyAWEg7 .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uS2dyAWEg7 .navbar {
    justify-content: flex-start !important;
  }
  .cid-uS2dyAWEg7 .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uS2dyAWEg7 .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uS2dyAWEg7 .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uS2dyAWEg7 .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uS2dyAWEg7 .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uS2dyAWEg7 .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uS2dyAWEg7 .content-wrap {
  min-height: 110px;
}
.cid-uS2rt8JnOS {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #99f5fe;
}
.cid-uS2rt8JnOS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2rt8JnOS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2rt8JnOS .content-wrap {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uS2rt8JnOS .content-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uS2rt8JnOS .content-wrapper .social-wrap {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uS2rt8JnOS .content-wrapper .social-wrap {
    margin-bottom: 12px;
  }
}
.cid-uS2rt8JnOS .content-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uS2rt8JnOS .content-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uS2rt8JnOS .content-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uS2rt8JnOS .content-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ffe66d;
}
.cid-uS2rt8JnOS .content-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  color: #050f0f;
  font-size: 32px;
  border-radius: .5rem;
  border: 2px solid #050f0f;
  transition: all 0.3s ease-in-out;
  margin: 0 12px 12px 0;
}
.cid-uS2rt8JnOS .content-wrapper .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
}
@media (max-width: 992px) {
  .cid-uS2rt8JnOS .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uS2rt8JnOS .list-wrapper .list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uS2rt8JnOS .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-uS2rt8JnOS .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uS2rt8JnOS .list-wrapper .list .item-wrap:hover,
.cid-uS2rt8JnOS .list-wrapper .list .item-wrap:focus {
  transform: translateX(3px);
}
.cid-uS2rt8JnOS .title-wrapper .mbr-section-title {
  margin-top: 80px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uS2rt8JnOS .title-wrapper .mbr-section-title {
    margin-top: 8px;
  }
}
.cid-uS2rt8JnOS .list {
  color: #050f0f;
}
.cid-uS2rt8JnOS .mbr-copy {
  color: #050f0f;
}
.cid-uS2rt8JnOS .mbr-section-title {
  color: #87ceeb;
  text-align: center;
}
.cid-uhEL3FTSkv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/22.webp");
}
.cid-uhEL3FTSkv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhEL3FTSkv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhEL3FTSkv .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uhEL3FTSkv .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhEL3FTSkv .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uhEL3FTSkv .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uhEL3FTSkv .container {
    padding: 0 24px;
  }
}
.cid-uhEL3FTSkv .content-wrapper {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .cid-uhEL3FTSkv .content-wrapper {
    padding: 0;
  }
}
.cid-uhEL3FTSkv .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 16px;
  border-radius: 500px;
  z-index: 1;
}
.cid-uhEL3FTSkv .content-wrapper .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #ffffff;
  opacity: .12;
  pointer-events: none;
}
.cid-uhEL3FTSkv .content-wrapper .desc-wrapper .mbr-desc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background-color: #ffffff;
  opacity: .09;
  pointer-events: none;
}
.cid-uhEL3FTSkv .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uhEL3FTSkv .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uhEL3FTSkv .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uhEL3FTSkv .mbr-section-title {
  color: #ffffff;
}
.cid-uhEL3FTSkv .mbr-desc,
.cid-uhEL3FTSkv .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhEL3FTSkv .mbr-text,
.cid-uhEL3FTSkv .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uhEL3FTSkv .mbr-section-title,
.cid-uhEL3FTSkv .mbr-section-btn {
  text-align: center;
}
.cid-uhDVPqn16I {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uhDVPqn16I .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #061af5;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-uhDVPqn16I .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-uhDVPqn16I .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-uhDVPqn16I .main-title.display-2 {
  line-height: 1.375;
}
.cid-uhDVPqn16I .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-uhDVPqn16I .mbr-text {
  color: #606060;
}
.cid-uhDVPqn16I .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-uhDVPqn16I .mbr-section-btn {
  margin-top: 24px;
}
.cid-uhDVPqn16I .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-uhDVPqn16I .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-uhDVPqn16I .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-uhDVPqn16I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDVPqn16I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uhDVPqn16I .mbr-text,
.cid-uhDVPqn16I .mbr-section-btn {
  color: #000000;
}
.cid-uhDVPrqqnx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uhDVPrqqnx .google-map {
  height: 30rem;
  position: relative;
}
.cid-uhDVPrqqnx .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uhDVPrqqnx .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uhDVPrqqnx .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uhDVPrqqnx .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uhDVPrqqnx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uhDVPrqqnx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2dyAWEg7 .navbar-dropdown {
  position: relative !important;
}
.cid-uS2dyAWEg7 .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uS2dyAWEg7 .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uS2dyAWEg7 .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-uS2dyAWEg7 .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uS2dyAWEg7 .dropdown-item {
  border: 1px solid #63635d !important;
  background: #efef51 !important;
}
.cid-uS2dyAWEg7 .dropdown-item:hover,
.cid-uS2dyAWEg7 .dropdown-item:focus {
  background: #efef51 !important;
}
.cid-uS2dyAWEg7 .dropdown-item:hover span {
  color: white;
}
.cid-uS2dyAWEg7 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uS2dyAWEg7 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uS2dyAWEg7 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uS2dyAWEg7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uS2dyAWEg7 .nav-link {
  position: relative;
}
.cid-uS2dyAWEg7 .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uS2dyAWEg7 .container {
    flex-wrap: nowrap;
  }
}
.cid-uS2dyAWEg7 .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uS2dyAWEg7 .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uS2dyAWEg7 .dropdown-menu,
.cid-uS2dyAWEg7 .navbar.opened {
  background: #efef51 !important;
}
.cid-uS2dyAWEg7 .nav-item:focus,
.cid-uS2dyAWEg7 .nav-link:focus {
  outline: none;
}
.cid-uS2dyAWEg7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uS2dyAWEg7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uS2dyAWEg7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uS2dyAWEg7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uS2dyAWEg7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uS2dyAWEg7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uS2dyAWEg7 .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #efef51;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uS2dyAWEg7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uS2dyAWEg7 .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uS2dyAWEg7 .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uS2dyAWEg7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uS2dyAWEg7 .navbar.collapsed {
  justify-content: center;
}
.cid-uS2dyAWEg7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uS2dyAWEg7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uS2dyAWEg7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uS2dyAWEg7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uS2dyAWEg7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uS2dyAWEg7 .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-uS2dyAWEg7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uS2dyAWEg7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uS2dyAWEg7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uS2dyAWEg7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uS2dyAWEg7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uS2dyAWEg7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uS2dyAWEg7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uS2dyAWEg7 .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-uS2dyAWEg7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uS2dyAWEg7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uS2dyAWEg7 .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uS2dyAWEg7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uS2dyAWEg7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uS2dyAWEg7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uS2dyAWEg7 .navbar.navbar-short {
  min-height: 96px;
}
.cid-uS2dyAWEg7 .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uS2dyAWEg7 .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uS2dyAWEg7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uS2dyAWEg7 .navbar-brand .navbar-caption:hover,
.cid-uS2dyAWEg7 .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uS2dyAWEg7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uS2dyAWEg7 .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uS2dyAWEg7 .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uS2dyAWEg7 .dropdown-item.active,
.cid-uS2dyAWEg7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uS2dyAWEg7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uS2dyAWEg7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uS2dyAWEg7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uS2dyAWEg7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efef51;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uS2dyAWEg7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uS2dyAWEg7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uS2dyAWEg7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uS2dyAWEg7 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uS2dyAWEg7 ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uS2dyAWEg7 .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uS2dyAWEg7 .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uS2dyAWEg7 .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uS2dyAWEg7 .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uS2dyAWEg7 button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #efef51 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uS2dyAWEg7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uS2dyAWEg7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uS2dyAWEg7 button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uS2dyAWEg7 button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uS2dyAWEg7 button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uS2dyAWEg7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uS2dyAWEg7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uS2dyAWEg7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uS2dyAWEg7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uS2dyAWEg7 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uS2dyAWEg7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uS2dyAWEg7 .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-uS2dyAWEg7 .navbar {
    height: 70px;
  }
  .cid-uS2dyAWEg7 .navbar.opened {
    height: auto;
  }
  .cid-uS2dyAWEg7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uS2dyAWEg7 .navbar-nav {
  margin: 0 auto;
}
.cid-uS2dyAWEg7 .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uS2dyAWEg7 .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #63635d;
}
.cid-uS2dyAWEg7 .nav-item .nav-link::after {
  color: #63635d !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uS2dyAWEg7 .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uS2dyAWEg7 .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uS2dyAWEg7 .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uS2dyAWEg7 .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uS2dyAWEg7 .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uS2dyAWEg7 .navbar {
    justify-content: flex-start !important;
  }
  .cid-uS2dyAWEg7 .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uS2dyAWEg7 .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uS2dyAWEg7 .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uS2dyAWEg7 .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uS2dyAWEg7 .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uS2dyAWEg7 .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uS2dyAWEg7 .content-wrap {
  min-height: 110px;
}
.cid-uS2rt8JnOS {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #99f5fe;
}
.cid-uS2rt8JnOS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2rt8JnOS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2rt8JnOS .content-wrap {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uS2rt8JnOS .content-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uS2rt8JnOS .content-wrapper .social-wrap {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uS2rt8JnOS .content-wrapper .social-wrap {
    margin-bottom: 12px;
  }
}
.cid-uS2rt8JnOS .content-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uS2rt8JnOS .content-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uS2rt8JnOS .content-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uS2rt8JnOS .content-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ffe66d;
}
.cid-uS2rt8JnOS .content-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  color: #050f0f;
  font-size: 32px;
  border-radius: .5rem;
  border: 2px solid #050f0f;
  transition: all 0.3s ease-in-out;
  margin: 0 12px 12px 0;
}
.cid-uS2rt8JnOS .content-wrapper .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
}
@media (max-width: 992px) {
  .cid-uS2rt8JnOS .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uS2rt8JnOS .list-wrapper .list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uS2rt8JnOS .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-uS2rt8JnOS .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uS2rt8JnOS .list-wrapper .list .item-wrap:hover,
.cid-uS2rt8JnOS .list-wrapper .list .item-wrap:focus {
  transform: translateX(3px);
}
.cid-uS2rt8JnOS .title-wrapper .mbr-section-title {
  margin-top: 80px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uS2rt8JnOS .title-wrapper .mbr-section-title {
    margin-top: 8px;
  }
}
.cid-uS2rt8JnOS .list {
  color: #050f0f;
}
.cid-uS2rt8JnOS .mbr-copy {
  color: #050f0f;
}
.cid-uS2rt8JnOS .mbr-section-title {
  color: #87ceeb;
  text-align: center;
}
.cid-uS2xCHtGlz .navbar-dropdown {
  position: relative !important;
}
.cid-uS2xCHtGlz .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uS2xCHtGlz .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uS2xCHtGlz .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-uS2xCHtGlz .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uS2xCHtGlz .dropdown-item {
  border: 1px solid #63635d !important;
  background: #efef51 !important;
}
.cid-uS2xCHtGlz .dropdown-item:hover,
.cid-uS2xCHtGlz .dropdown-item:focus {
  background: #efef51 !important;
}
.cid-uS2xCHtGlz .dropdown-item:hover span {
  color: white;
}
.cid-uS2xCHtGlz .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uS2xCHtGlz .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uS2xCHtGlz .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uS2xCHtGlz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uS2xCHtGlz .nav-link {
  position: relative;
}
.cid-uS2xCHtGlz .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uS2xCHtGlz .container {
    flex-wrap: nowrap;
  }
}
.cid-uS2xCHtGlz .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uS2xCHtGlz .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uS2xCHtGlz .dropdown-menu,
.cid-uS2xCHtGlz .navbar.opened {
  background: #efef51 !important;
}
.cid-uS2xCHtGlz .nav-item:focus,
.cid-uS2xCHtGlz .nav-link:focus {
  outline: none;
}
.cid-uS2xCHtGlz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uS2xCHtGlz .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uS2xCHtGlz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uS2xCHtGlz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uS2xCHtGlz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uS2xCHtGlz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uS2xCHtGlz .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #efef51;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uS2xCHtGlz .navbar.opened {
  transition: all 0.3s;
}
.cid-uS2xCHtGlz .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uS2xCHtGlz .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uS2xCHtGlz .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uS2xCHtGlz .navbar.collapsed {
  justify-content: center;
}
.cid-uS2xCHtGlz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uS2xCHtGlz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uS2xCHtGlz .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uS2xCHtGlz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uS2xCHtGlz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uS2xCHtGlz .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-uS2xCHtGlz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uS2xCHtGlz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uS2xCHtGlz .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uS2xCHtGlz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uS2xCHtGlz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uS2xCHtGlz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uS2xCHtGlz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uS2xCHtGlz .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-uS2xCHtGlz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uS2xCHtGlz .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uS2xCHtGlz .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uS2xCHtGlz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uS2xCHtGlz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uS2xCHtGlz .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uS2xCHtGlz .navbar.navbar-short {
  min-height: 96px;
}
.cid-uS2xCHtGlz .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uS2xCHtGlz .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uS2xCHtGlz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uS2xCHtGlz .navbar-brand .navbar-caption:hover,
.cid-uS2xCHtGlz .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uS2xCHtGlz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uS2xCHtGlz .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uS2xCHtGlz .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uS2xCHtGlz .dropdown-item.active,
.cid-uS2xCHtGlz .dropdown-item:active {
  background-color: transparent;
}
.cid-uS2xCHtGlz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uS2xCHtGlz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uS2xCHtGlz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uS2xCHtGlz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efef51;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uS2xCHtGlz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uS2xCHtGlz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uS2xCHtGlz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uS2xCHtGlz ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uS2xCHtGlz ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uS2xCHtGlz .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uS2xCHtGlz .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uS2xCHtGlz .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uS2xCHtGlz .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uS2xCHtGlz button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #efef51 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uS2xCHtGlz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uS2xCHtGlz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uS2xCHtGlz button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uS2xCHtGlz button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uS2xCHtGlz button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uS2xCHtGlz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uS2xCHtGlz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uS2xCHtGlz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uS2xCHtGlz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uS2xCHtGlz .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uS2xCHtGlz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uS2xCHtGlz .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-uS2xCHtGlz .navbar {
    height: 70px;
  }
  .cid-uS2xCHtGlz .navbar.opened {
    height: auto;
  }
  .cid-uS2xCHtGlz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uS2xCHtGlz .navbar-nav {
  margin: 0 auto;
}
.cid-uS2xCHtGlz .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uS2xCHtGlz .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #63635d;
}
.cid-uS2xCHtGlz .nav-item .nav-link::after {
  color: #63635d !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uS2xCHtGlz .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uS2xCHtGlz .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uS2xCHtGlz .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uS2xCHtGlz .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uS2xCHtGlz .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uS2xCHtGlz .navbar {
    justify-content: flex-start !important;
  }
  .cid-uS2xCHtGlz .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uS2xCHtGlz .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uS2xCHtGlz .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uS2xCHtGlz .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uS2xCHtGlz .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uS2xCHtGlz .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uS2xCHtGlz .content-wrap {
  min-height: 110px;
}
.cid-uS2xCL1LKf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/23.webp");
}
.cid-uS2xCL1LKf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2xCL1LKf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2xCL1LKf .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uS2xCL1LKf .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uS2xCL1LKf .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uS2xCL1LKf .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uS2xCL1LKf .container {
    padding: 0 24px;
  }
}
.cid-uS2xCL1LKf .content-wrapper {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .cid-uS2xCL1LKf .content-wrapper {
    padding: 0;
  }
}
.cid-uS2xCL1LKf .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 16px;
  border-radius: 500px;
  z-index: 1;
}
.cid-uS2xCL1LKf .content-wrapper .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #ffffff;
  opacity: .12;
  pointer-events: none;
}
.cid-uS2xCL1LKf .content-wrapper .desc-wrapper .mbr-desc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background-color: #ffffff;
  opacity: .09;
  pointer-events: none;
}
.cid-uS2xCL1LKf .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uS2xCL1LKf .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uS2xCL1LKf .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uS2xCL1LKf .mbr-section-title {
  color: #ffffff;
}
.cid-uS2xCL1LKf .mbr-desc,
.cid-uS2xCL1LKf .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uS2xCL1LKf .mbr-text,
.cid-uS2xCL1LKf .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uS2xCL1LKf .mbr-section-title,
.cid-uS2xCL1LKf .mbr-section-btn {
  text-align: center;
}
.cid-uS2xCMEOvV {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #99f5fe;
}
.cid-uS2xCMEOvV .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uS2xCMEOvV .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uS2xCMEOvV .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-uS2xCMEOvV .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uS2xCMEOvV .mbr-text {
  color: #000000;
}
.cid-uS2xCOyLeB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uS2xCOyLeB blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #99f5fe;
}
.cid-uS2xCOyLeB .mbr-section-title {
  text-align: center;
}
.cid-uS2xCOyLeB .mbr-text {
  color: #000000;
}
.cid-uS2xCQTuB2 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #99f5fe;
}
.cid-uS2xCQTuB2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2xCQTuB2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uS2xCQTuB2 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uS2xCQTuB2 .row {
  background: #000000;
  align-items: center;
  padding: 3rem;
  border-radius: 3rem;
  width: fit-content;
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uS2xCQTuB2 .row {
    padding: 3rem 1rem;
    padding-bottom: 1rem;
    border-radius: 2rem;
  }
}
.cid-uS2xCQTuB2 img {
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-uS2xCQTuB2 img {
    border-radius: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uS2xCQTuB2 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uS2xCQTuB2 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uS2xCQTuB2 .mbr-text,
.cid-uS2xCQTuB2 .mbr-section-btn {
  color: #ffffff;
}
.cid-uS2xCWGFZY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uS2xCWGFZY .row {
  align-items: center;
  width: 100%;
}
.cid-uS2xCWGFZY .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uS2xCWGFZY .mbr-section-title {
  color: #f3f4ef;
}
.cid-uS2xCWGFZY .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-uS2xCWGFZY .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uS2xCWGFZY .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uS2xCWGFZY .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uS2xCWGFZY .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #99f5fe;
}
@media (max-width: 991px) {
  .cid-uS2xCWGFZY .text-container {
    padding: 24px;
  }
}
.cid-uS2xCWGFZY .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uS2xCWGFZY .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uS2xCWGFZY .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #ddff55;
}
.cid-uS2xCWGFZY .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-uS2xCWGFZY .mbr-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-uS2xD5hFba {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #99f5fe;
}
.cid-uS2xD5hFba .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uS2xD5hFba .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uS2xD5hFba .col-title,
.cid-uS2xD5hFba .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uS2xD5hFba .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uS2xD5hFba .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uS2xD5hFba .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uS2xD5hFba .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uS2xD5hFba .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uS2xD5hFba .mbr-text {
    text-align: center !important;
  }
}
.cid-uS2xDbrVWD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uS2xDbrVWD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2xDbrVWD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2xDbrVWD .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uS2xDbrVWD .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uS2xDbrVWD .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-uS2xDbrVWD .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uS2xDbrVWD .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uS2xDbrVWD .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uS2xDbrVWD .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uS2xDbrVWD .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uS2xDbrVWD .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uS2xDbrVWD .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uS2xDbrVWD .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uS2xDbrVWD .mbr-section-title {
  color: #19171c;
}
.cid-uS2xDbrVWD .panel-title {
  color: #19171c;
}
.cid-uS2xDbrVWD .panel-text {
  color: #ffffff;
}
.cid-uS2xDbrVWD .panel-title-edit {
  color: #ffffff;
}
.cid-uS2xDbrVWD .mbr-section-title,
.cid-uS2xDbrVWD .mbr-section-btn {
  color: #ffffff;
}
.cid-uS2xDfe91l {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uS2xDfe91l .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uS2xDfe91l .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uS2xDfe91l .col-title,
.cid-uS2xDfe91l .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uS2xDfe91l .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uS2xDfe91l .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uS2xDfe91l .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uS2xDfe91l .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uS2xDfe91l .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uS2xDfe91l .mbr-text {
    text-align: center !important;
  }
}
.cid-uS2xDgL7IL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uS2xDgL7IL .row {
  align-items: center;
  width: 100%;
}
.cid-uS2xDgL7IL .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uS2xDgL7IL .mbr-section-title {
  color: #000000;
}
.cid-uS2xDgL7IL .mbr-section-subtitle {
  color: #000000;
}
.cid-uS2xDgL7IL .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uS2xDgL7IL .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uS2xDgL7IL .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uS2xDgL7IL .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #99f5fe;
}
@media (max-width: 991px) {
  .cid-uS2xDgL7IL .text-container {
    padding: 24px;
  }
}
.cid-uS2xDgL7IL .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uS2xDgL7IL .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uS2xDgL7IL .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #000000;
}
.cid-uS2xDgL7IL .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-uS2xDgL7IL .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
  text-align: center;
}
.cid-uS2xDiKpyS {
  display: flex;
  padding-top: 75px;
  padding-bottom: 45px;
  background: linear-gradient(to bottom, #000000, #99f5fe);
}
@media (min-width: 768px) {
  .cid-uS2xDiKpyS {
    align-items: flex-start;
  }
  .cid-uS2xDiKpyS .row {
    justify-content: center;
  }
}
.cid-uS2xDiKpyS .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uS2xDiKpyS .mbr-text,
.cid-uS2xDiKpyS .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uS2xDiKpyS .mbr-section-title,
.cid-uS2xDiKpyS .line {
  color: #ffffff;
  text-align: center;
}
.cid-uS2xDiKpyS h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uS2xDiKpyS h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uS2xDiKpyS .mbr-section-subtitle,
.cid-uS2xDiKpyS .align {
  text-align: left;
  color: #232323;
}
.cid-uS2xDiKpyS .mbr-text2 {
  color: #808080;
}
.cid-uS2xDkcAHH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #99f5fe;
}
.cid-uS2xDkcAHH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2xDkcAHH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2xDkcAHH .row {
  justify-content: center;
}
.cid-uS2xDkcAHH .col-title {
  margin-bottom: 2.5rem;
}
.cid-uS2xDkcAHH .mbr-section-title {
  color: #000000;
}
.cid-uS2xDkcAHH .mbr-section-subtitle {
  color: #000000;
  margin-top: 1rem;
}
.cid-uS2xDkcAHH .img-container {
  margin: 0 auto;
}
.cid-uS2xDkcAHH .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  height: 620px;
}
.cid-uS2xDkcAHH .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uS2xDlrZ4H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uS2xDlrZ4H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2xDlrZ4H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2xDlrZ4H .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uS2xDlrZ4H .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uS2xDlrZ4H .container {
    padding: 0 30px;
  }
}
.cid-uS2xDlrZ4H .row {
  position: relative;
}
.cid-uS2xDlrZ4H .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uS2xDlrZ4H .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uS2xDlrZ4H .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #99f5fe;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uS2xDlrZ4H .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uS2xDlrZ4H .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uS2xDlrZ4H .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uS2xDlrZ4H .mbr-text {
  color: #000000;
}
.cid-uS2xDlrZ4H .mbr-link,
.cid-uS2xDlrZ4H .mbr-iconfont {
  color: #212529;
}
.cid-uS2xDlrZ4H .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uS2xDmMFh8 {
  display: flex;
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(to bottom, #99f5fe, #000000);
}
@media (min-width: 768px) {
  .cid-uS2xDmMFh8 {
    align-items: flex-start;
  }
  .cid-uS2xDmMFh8 .row {
    justify-content: center;
  }
}
.cid-uS2xDmMFh8 .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uS2xDmMFh8 .mbr-text,
.cid-uS2xDmMFh8 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uS2xDmMFh8 .mbr-section-title,
.cid-uS2xDmMFh8 .line {
  color: #ffffff;
  text-align: center;
}
.cid-uS2xDmMFh8 h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uS2xDmMFh8 h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uS2xDmMFh8 .mbr-section-subtitle,
.cid-uS2xDmMFh8 .align {
  text-align: left;
  color: #232323;
}
.cid-uS2xDmMFh8 .mbr-text2 {
  color: #808080;
}
.cid-uS2BqyA6Lx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uS2BqyA6Lx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2BqyA6Lx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2BqyA6Lx .title-wrapper {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uS2BqyA6Lx .title-wrapper {
    display: block;
    margin-bottom: 30px;
  }
}
.cid-uS2BqyA6Lx .title-wrapper .label-wrapper {
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uS2BqyA6Lx .title-wrapper .label-wrapper {
    width: 100%;
  }
}
.cid-uS2BqyA6Lx .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #000000;
}
.cid-uS2BqyA6Lx .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uS2BqyA6Lx .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uS2BqyA6Lx .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-top: 1px solid #000000;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uS2BqyA6Lx .panel-group .card {
    padding: 30px 0;
  }
}
.cid-uS2BqyA6Lx .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uS2BqyA6Lx .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uS2BqyA6Lx .panel-group .card .card-header .panel-title .icon-wrap {
  width: 35%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uS2BqyA6Lx .panel-group .card .card-header .panel-title .icon-wrap {
    width: 25%;
  }
}
.cid-uS2BqyA6Lx .panel-group .card .card-header .panel-title .icon-wrap .mbr-iconfont {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 10px;
  transition: all .3s ease;
  font-size: 24px;
  background-color: #000000;
  color: #ffffff;
}
.cid-uS2BqyA6Lx .panel-group .card .card-header .panel-title .icon-wrap .svg1 {
  position: absolute;
  bottom: 0;
  left: 24px;
  transform: rotate(180deg);
  width: 26px;
}
.cid-uS2BqyA6Lx .panel-group .card .card-header .panel-title .icon-wrap .svg1 path {
  transition: all .3s ease;
  fill: #000000;
}
.cid-uS2BqyA6Lx .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 65%;
  padding-right: 30px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uS2BqyA6Lx .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 70%;
  }
}
.cid-uS2BqyA6Lx .panel-group .card .card-header .panel-title .icon-wrapper {
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.cid-uS2BqyA6Lx .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-uS2BqyA6Lx .panel-group .card .card-header .panel-title:hover .icon-wrap .mbr-iconfont {
  background-color: #000000;
  color: #ffffff;
}
.cid-uS2BqyA6Lx .panel-group .card .card-header .panel-title:hover .icon-wrap .svg1 path {
  fill: #000000;
}
.cid-uS2BqyA6Lx .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-uS2BqyA6Lx .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .mbr-iconfont {
  background-color: #000000;
  color: #ffffff;
}
.cid-uS2BqyA6Lx .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .svg1 path {
  fill: #000000;
}
.cid-uS2BqyA6Lx .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
  margin-left: 35%;
}
@media (max-width: 992px) {
  .cid-uS2BqyA6Lx .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
    margin-left: 0;
  }
}
.cid-uS2BqyA6Lx .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uS2BqyA6Lx .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uS2BqyA6Lx .mbr-label {
  color: #000000;
}
.cid-uS2BqyA6Lx .mbr-section-title {
  color: #000000;
}
.cid-uS2BqyA6Lx .panel-title-edit {
  color: #000000;
}
.cid-uS2BqyA6Lx .panel-text {
  color: #000000;
}
.cid-uS2BqyA6Lx .mbr-label,
.cid-uS2BqyA6Lx .label-wrapper {
  text-align: right;
}
.cid-uS2xDo1lPI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uS2xDo1lPI .google-map {
  height: 30rem;
  position: relative;
}
.cid-uS2xDo1lPI .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uS2xDo1lPI .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uS2xDo1lPI .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uS2xDo1lPI .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uS2xDo1lPI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2xDo1lPI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2xDpKaWA {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #99f5fe;
}
.cid-uS2xDpKaWA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2xDpKaWA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2xDpKaWA .content-wrap {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uS2xDpKaWA .content-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uS2xDpKaWA .content-wrapper .social-wrap {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uS2xDpKaWA .content-wrapper .social-wrap {
    margin-bottom: 12px;
  }
}
.cid-uS2xDpKaWA .content-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uS2xDpKaWA .content-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uS2xDpKaWA .content-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uS2xDpKaWA .content-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ffe66d;
}
.cid-uS2xDpKaWA .content-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  color: #050f0f;
  font-size: 32px;
  border-radius: .5rem;
  border: 2px solid #050f0f;
  transition: all 0.3s ease-in-out;
  margin: 0 12px 12px 0;
}
.cid-uS2xDpKaWA .content-wrapper .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
}
@media (max-width: 992px) {
  .cid-uS2xDpKaWA .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uS2xDpKaWA .list-wrapper .list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uS2xDpKaWA .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-uS2xDpKaWA .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uS2xDpKaWA .list-wrapper .list .item-wrap:hover,
.cid-uS2xDpKaWA .list-wrapper .list .item-wrap:focus {
  transform: translateX(3px);
}
.cid-uS2xDpKaWA .title-wrapper .mbr-section-title {
  margin-top: 80px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uS2xDpKaWA .title-wrapper .mbr-section-title {
    margin-top: 8px;
  }
}
.cid-uS2xDpKaWA .list {
  color: #050f0f;
}
.cid-uS2xDpKaWA .mbr-copy {
  color: #050f0f;
}
.cid-uS2xDpKaWA .mbr-section-title {
  color: #87ceeb;
  text-align: center;
}
.cid-uS2CtLFirQ .navbar-dropdown {
  position: relative !important;
}
.cid-uS2CtLFirQ .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uS2CtLFirQ .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uS2CtLFirQ .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-uS2CtLFirQ .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uS2CtLFirQ .dropdown-item {
  border: 1px solid #63635d !important;
  background: #efef51 !important;
}
.cid-uS2CtLFirQ .dropdown-item:hover,
.cid-uS2CtLFirQ .dropdown-item:focus {
  background: #efef51 !important;
}
.cid-uS2CtLFirQ .dropdown-item:hover span {
  color: white;
}
.cid-uS2CtLFirQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uS2CtLFirQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uS2CtLFirQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uS2CtLFirQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uS2CtLFirQ .nav-link {
  position: relative;
}
.cid-uS2CtLFirQ .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uS2CtLFirQ .container {
    flex-wrap: nowrap;
  }
}
.cid-uS2CtLFirQ .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uS2CtLFirQ .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uS2CtLFirQ .dropdown-menu,
.cid-uS2CtLFirQ .navbar.opened {
  background: #efef51 !important;
}
.cid-uS2CtLFirQ .nav-item:focus,
.cid-uS2CtLFirQ .nav-link:focus {
  outline: none;
}
.cid-uS2CtLFirQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uS2CtLFirQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uS2CtLFirQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uS2CtLFirQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uS2CtLFirQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uS2CtLFirQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uS2CtLFirQ .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #efef51;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uS2CtLFirQ .navbar.opened {
  transition: all 0.3s;
}
.cid-uS2CtLFirQ .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uS2CtLFirQ .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uS2CtLFirQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uS2CtLFirQ .navbar.collapsed {
  justify-content: center;
}
.cid-uS2CtLFirQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uS2CtLFirQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uS2CtLFirQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uS2CtLFirQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uS2CtLFirQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uS2CtLFirQ .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-uS2CtLFirQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uS2CtLFirQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uS2CtLFirQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uS2CtLFirQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uS2CtLFirQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uS2CtLFirQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uS2CtLFirQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uS2CtLFirQ .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-uS2CtLFirQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uS2CtLFirQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uS2CtLFirQ .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uS2CtLFirQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uS2CtLFirQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uS2CtLFirQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uS2CtLFirQ .navbar.navbar-short {
  min-height: 96px;
}
.cid-uS2CtLFirQ .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uS2CtLFirQ .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uS2CtLFirQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uS2CtLFirQ .navbar-brand .navbar-caption:hover,
.cid-uS2CtLFirQ .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uS2CtLFirQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uS2CtLFirQ .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uS2CtLFirQ .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uS2CtLFirQ .dropdown-item.active,
.cid-uS2CtLFirQ .dropdown-item:active {
  background-color: transparent;
}
.cid-uS2CtLFirQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uS2CtLFirQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uS2CtLFirQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uS2CtLFirQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efef51;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uS2CtLFirQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uS2CtLFirQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uS2CtLFirQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uS2CtLFirQ ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uS2CtLFirQ ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uS2CtLFirQ .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uS2CtLFirQ .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uS2CtLFirQ .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uS2CtLFirQ .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uS2CtLFirQ button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #efef51 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uS2CtLFirQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uS2CtLFirQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uS2CtLFirQ button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uS2CtLFirQ button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uS2CtLFirQ button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uS2CtLFirQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uS2CtLFirQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uS2CtLFirQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uS2CtLFirQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uS2CtLFirQ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uS2CtLFirQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uS2CtLFirQ .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-uS2CtLFirQ .navbar {
    height: 70px;
  }
  .cid-uS2CtLFirQ .navbar.opened {
    height: auto;
  }
  .cid-uS2CtLFirQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uS2CtLFirQ .navbar-nav {
  margin: 0 auto;
}
.cid-uS2CtLFirQ .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uS2CtLFirQ .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #63635d;
}
.cid-uS2CtLFirQ .nav-item .nav-link::after {
  color: #63635d !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uS2CtLFirQ .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uS2CtLFirQ .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uS2CtLFirQ .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uS2CtLFirQ .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uS2CtLFirQ .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uS2CtLFirQ .navbar {
    justify-content: flex-start !important;
  }
  .cid-uS2CtLFirQ .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uS2CtLFirQ .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uS2CtLFirQ .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uS2CtLFirQ .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uS2CtLFirQ .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uS2CtLFirQ .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uS2CtLFirQ .content-wrap {
  min-height: 110px;
}
.cid-uS2CtPvlxU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/24-1024x576.jpg");
}
.cid-uS2CtPvlxU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2CtPvlxU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2CtPvlxU .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uS2CtPvlxU .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uS2CtPvlxU .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uS2CtPvlxU .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uS2CtPvlxU .container {
    padding: 0 24px;
  }
}
.cid-uS2CtPvlxU .content-wrapper {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .cid-uS2CtPvlxU .content-wrapper {
    padding: 0;
  }
}
.cid-uS2CtPvlxU .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 16px;
  border-radius: 500px;
  z-index: 1;
}
.cid-uS2CtPvlxU .content-wrapper .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #ffffff;
  opacity: .12;
  pointer-events: none;
}
.cid-uS2CtPvlxU .content-wrapper .desc-wrapper .mbr-desc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background-color: #ffffff;
  opacity: .09;
  pointer-events: none;
}
.cid-uS2CtPvlxU .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uS2CtPvlxU .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uS2CtPvlxU .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uS2CtPvlxU .mbr-section-title {
  color: #ffffff;
}
.cid-uS2CtPvlxU .mbr-desc,
.cid-uS2CtPvlxU .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uS2CtPvlxU .mbr-text,
.cid-uS2CtPvlxU .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uS2CtPvlxU .mbr-section-title,
.cid-uS2CtPvlxU .mbr-section-btn {
  text-align: center;
}
.cid-uS2CtRlHUC {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #99f5fe;
}
.cid-uS2CtRlHUC .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uS2CtRlHUC .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uS2CtRlHUC .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-uS2CtRlHUC .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uS2CtRlHUC .mbr-text {
  color: #000000;
}
.cid-uS2CtSWK7L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uS2CtSWK7L blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #99f5fe;
}
.cid-uS2CtSWK7L .mbr-section-title {
  text-align: center;
}
.cid-uS2CtSWK7L .mbr-text {
  color: #000000;
}
.cid-uS2ILHibY0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uS2ILHibY0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2ILHibY0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2ILHibY0 .col-img {
  display: flex;
  flex-direction: column;
}
.cid-uS2ILHibY0 .mbr-description {
  color: #f3f4ef;
}
.cid-uS2ILHibY0 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 700px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cid-uS2ILHibY0 .image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}
.cid-uS2CtUw6cj {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #99f5fe;
}
.cid-uS2CtUw6cj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2CtUw6cj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uS2CtUw6cj .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uS2CtUw6cj .row {
  background: #000000;
  align-items: center;
  padding: 3rem;
  border-radius: 3rem;
  width: fit-content;
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uS2CtUw6cj .row {
    padding: 3rem 1rem;
    padding-bottom: 1rem;
    border-radius: 2rem;
  }
}
.cid-uS2CtUw6cj img {
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-uS2CtUw6cj img {
    border-radius: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uS2CtUw6cj .image-wrapper {
    padding: 1rem;
  }
}
.cid-uS2CtUw6cj .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uS2CtUw6cj .mbr-text,
.cid-uS2CtUw6cj .mbr-section-btn {
  color: #ffffff;
}
.cid-uS2CtWl4AB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uS2CtWl4AB .row {
  align-items: center;
  width: 100%;
}
.cid-uS2CtWl4AB .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uS2CtWl4AB .mbr-section-title {
  color: #f3f4ef;
}
.cid-uS2CtWl4AB .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-uS2CtWl4AB .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uS2CtWl4AB .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uS2CtWl4AB .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uS2CtWl4AB .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #99f5fe;
}
@media (max-width: 991px) {
  .cid-uS2CtWl4AB .text-container {
    padding: 24px;
  }
}
.cid-uS2CtWl4AB .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uS2CtWl4AB .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uS2CtWl4AB .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #ddff55;
}
.cid-uS2CtWl4AB .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-uS2CtWl4AB .mbr-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-uS2CtYnVL8 {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #99f5fe;
}
.cid-uS2CtYnVL8 .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uS2CtYnVL8 .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uS2CtYnVL8 .col-title,
.cid-uS2CtYnVL8 .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uS2CtYnVL8 .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uS2CtYnVL8 .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uS2CtYnVL8 .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uS2CtYnVL8 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uS2CtYnVL8 .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uS2CtYnVL8 .mbr-text {
    text-align: center !important;
  }
}
.cid-uS2Cu0Sz5p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uS2Cu0Sz5p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2Cu0Sz5p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2Cu0Sz5p .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uS2Cu0Sz5p .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uS2Cu0Sz5p .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-uS2Cu0Sz5p .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uS2Cu0Sz5p .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uS2Cu0Sz5p .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uS2Cu0Sz5p .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uS2Cu0Sz5p .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uS2Cu0Sz5p .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uS2Cu0Sz5p .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uS2Cu0Sz5p .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uS2Cu0Sz5p .mbr-section-title {
  color: #19171c;
}
.cid-uS2Cu0Sz5p .panel-title {
  color: #19171c;
}
.cid-uS2Cu0Sz5p .panel-text {
  color: #ffffff;
}
.cid-uS2Cu0Sz5p .panel-title-edit {
  color: #ffffff;
}
.cid-uS2Cu0Sz5p .mbr-section-title,
.cid-uS2Cu0Sz5p .mbr-section-btn {
  color: #ffffff;
}
.cid-uS2Cu4CHdL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uS2Cu4CHdL .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uS2Cu4CHdL .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uS2Cu4CHdL .col-title,
.cid-uS2Cu4CHdL .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uS2Cu4CHdL .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uS2Cu4CHdL .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uS2Cu4CHdL .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uS2Cu4CHdL .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uS2Cu4CHdL .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uS2Cu4CHdL .mbr-text {
    text-align: center !important;
  }
}
.cid-uS2Cu7gs6c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uS2Cu7gs6c .row {
  align-items: center;
  width: 100%;
}
.cid-uS2Cu7gs6c .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uS2Cu7gs6c .mbr-section-title {
  color: #000000;
}
.cid-uS2Cu7gs6c .mbr-section-subtitle {
  color: #000000;
}
.cid-uS2Cu7gs6c .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uS2Cu7gs6c .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uS2Cu7gs6c .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uS2Cu7gs6c .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #99f5fe;
}
@media (max-width: 991px) {
  .cid-uS2Cu7gs6c .text-container {
    padding: 24px;
  }
}
.cid-uS2Cu7gs6c .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uS2Cu7gs6c .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uS2Cu7gs6c .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #000000;
}
.cid-uS2Cu7gs6c .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-uS2Cu7gs6c .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
  text-align: center;
}
.cid-uS2Cu9UeVB {
  display: flex;
  padding-top: 75px;
  padding-bottom: 45px;
  background: linear-gradient(to bottom, #000000, #99f5fe);
}
@media (min-width: 768px) {
  .cid-uS2Cu9UeVB {
    align-items: flex-start;
  }
  .cid-uS2Cu9UeVB .row {
    justify-content: center;
  }
}
.cid-uS2Cu9UeVB .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uS2Cu9UeVB .mbr-text,
.cid-uS2Cu9UeVB .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uS2Cu9UeVB .mbr-section-title,
.cid-uS2Cu9UeVB .line {
  color: #ffffff;
  text-align: center;
}
.cid-uS2Cu9UeVB h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uS2Cu9UeVB h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uS2Cu9UeVB .mbr-section-subtitle,
.cid-uS2Cu9UeVB .align {
  text-align: left;
  color: #232323;
}
.cid-uS2Cu9UeVB .mbr-text2 {
  color: #808080;
}
.cid-uS2CubSl0o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #99f5fe;
}
.cid-uS2CubSl0o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2CubSl0o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2CubSl0o .row {
  justify-content: center;
}
.cid-uS2CubSl0o .col-title {
  margin-bottom: 2.5rem;
}
.cid-uS2CubSl0o .mbr-section-title {
  color: #000000;
}
.cid-uS2CubSl0o .mbr-section-subtitle {
  color: #000000;
  margin-top: 1rem;
}
.cid-uS2CubSl0o .img-container {
  margin: 0 auto;
}
.cid-uS2CubSl0o .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  height: 620px;
}
.cid-uS2CubSl0o .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uS2CudE8JT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uS2CudE8JT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2CudE8JT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2CudE8JT .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uS2CudE8JT .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uS2CudE8JT .container {
    padding: 0 30px;
  }
}
.cid-uS2CudE8JT .row {
  position: relative;
}
.cid-uS2CudE8JT .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uS2CudE8JT .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uS2CudE8JT .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #99f5fe;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uS2CudE8JT .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uS2CudE8JT .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uS2CudE8JT .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uS2CudE8JT .mbr-text {
  color: #000000;
}
.cid-uS2CudE8JT .mbr-link,
.cid-uS2CudE8JT .mbr-iconfont {
  color: #212529;
}
.cid-uS2CudE8JT .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uS2Cufv6l9 {
  display: flex;
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(to bottom, #99f5fe, #000000);
}
@media (min-width: 768px) {
  .cid-uS2Cufv6l9 {
    align-items: flex-start;
  }
  .cid-uS2Cufv6l9 .row {
    justify-content: center;
  }
}
.cid-uS2Cufv6l9 .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uS2Cufv6l9 .mbr-text,
.cid-uS2Cufv6l9 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uS2Cufv6l9 .mbr-section-title,
.cid-uS2Cufv6l9 .line {
  color: #ffffff;
  text-align: center;
}
.cid-uS2Cufv6l9 h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uS2Cufv6l9 h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uS2Cufv6l9 .mbr-section-subtitle,
.cid-uS2Cufv6l9 .align {
  text-align: left;
  color: #232323;
}
.cid-uS2Cufv6l9 .mbr-text2 {
  color: #808080;
}
.cid-uS2Cuj94LM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uS2Cuj94LM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2Cuj94LM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2Cuj94LM .title-wrapper {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uS2Cuj94LM .title-wrapper {
    display: block;
    margin-bottom: 30px;
  }
}
.cid-uS2Cuj94LM .title-wrapper .label-wrapper {
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uS2Cuj94LM .title-wrapper .label-wrapper {
    width: 100%;
  }
}
.cid-uS2Cuj94LM .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #000000;
}
.cid-uS2Cuj94LM .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uS2Cuj94LM .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uS2Cuj94LM .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-top: 1px solid #000000;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uS2Cuj94LM .panel-group .card {
    padding: 30px 0;
  }
}
.cid-uS2Cuj94LM .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uS2Cuj94LM .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uS2Cuj94LM .panel-group .card .card-header .panel-title .icon-wrap {
  width: 35%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uS2Cuj94LM .panel-group .card .card-header .panel-title .icon-wrap {
    width: 25%;
  }
}
.cid-uS2Cuj94LM .panel-group .card .card-header .panel-title .icon-wrap .mbr-iconfont {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 10px;
  transition: all .3s ease;
  font-size: 24px;
  background-color: #000000;
  color: #ffffff;
}
.cid-uS2Cuj94LM .panel-group .card .card-header .panel-title .icon-wrap .svg1 {
  position: absolute;
  bottom: 0;
  left: 24px;
  transform: rotate(180deg);
  width: 26px;
}
.cid-uS2Cuj94LM .panel-group .card .card-header .panel-title .icon-wrap .svg1 path {
  transition: all .3s ease;
  fill: #000000;
}
.cid-uS2Cuj94LM .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 65%;
  padding-right: 30px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uS2Cuj94LM .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 70%;
  }
}
.cid-uS2Cuj94LM .panel-group .card .card-header .panel-title .icon-wrapper {
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.cid-uS2Cuj94LM .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-uS2Cuj94LM .panel-group .card .card-header .panel-title:hover .icon-wrap .mbr-iconfont {
  background-color: #000000;
  color: #ffffff;
}
.cid-uS2Cuj94LM .panel-group .card .card-header .panel-title:hover .icon-wrap .svg1 path {
  fill: #000000;
}
.cid-uS2Cuj94LM .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-uS2Cuj94LM .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .mbr-iconfont {
  background-color: #000000;
  color: #ffffff;
}
.cid-uS2Cuj94LM .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .svg1 path {
  fill: #000000;
}
.cid-uS2Cuj94LM .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
  margin-left: 35%;
}
@media (max-width: 992px) {
  .cid-uS2Cuj94LM .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
    margin-left: 0;
  }
}
.cid-uS2Cuj94LM .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uS2Cuj94LM .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uS2Cuj94LM .mbr-label {
  color: #000000;
}
.cid-uS2Cuj94LM .mbr-section-title {
  color: #000000;
}
.cid-uS2Cuj94LM .panel-title-edit {
  color: #000000;
}
.cid-uS2Cuj94LM .panel-text {
  color: #000000;
}
.cid-uS2Cuj94LM .mbr-label,
.cid-uS2Cuj94LM .label-wrapper {
  text-align: right;
}
.cid-uS2CumLOMW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uS2CumLOMW .google-map {
  height: 30rem;
  position: relative;
}
.cid-uS2CumLOMW .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uS2CumLOMW .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uS2CumLOMW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uS2CumLOMW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uS2CumLOMW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2CumLOMW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2CuqYubh {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #99f5fe;
}
.cid-uS2CuqYubh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2CuqYubh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2CuqYubh .content-wrap {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uS2CuqYubh .content-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uS2CuqYubh .content-wrapper .social-wrap {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uS2CuqYubh .content-wrapper .social-wrap {
    margin-bottom: 12px;
  }
}
.cid-uS2CuqYubh .content-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uS2CuqYubh .content-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uS2CuqYubh .content-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uS2CuqYubh .content-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ffe66d;
}
.cid-uS2CuqYubh .content-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  color: #050f0f;
  font-size: 32px;
  border-radius: .5rem;
  border: 2px solid #050f0f;
  transition: all 0.3s ease-in-out;
  margin: 0 12px 12px 0;
}
.cid-uS2CuqYubh .content-wrapper .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
}
@media (max-width: 992px) {
  .cid-uS2CuqYubh .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uS2CuqYubh .list-wrapper .list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uS2CuqYubh .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-uS2CuqYubh .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uS2CuqYubh .list-wrapper .list .item-wrap:hover,
.cid-uS2CuqYubh .list-wrapper .list .item-wrap:focus {
  transform: translateX(3px);
}
.cid-uS2CuqYubh .title-wrapper .mbr-section-title {
  margin-top: 80px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uS2CuqYubh .title-wrapper .mbr-section-title {
    margin-top: 8px;
  }
}
.cid-uS2CuqYubh .list {
  color: #050f0f;
}
.cid-uS2CuqYubh .mbr-copy {
  color: #050f0f;
}
.cid-uS2CuqYubh .mbr-section-title {
  color: #87ceeb;
  text-align: center;
}
.cid-uS2IZpFIKt .navbar-dropdown {
  position: relative !important;
}
.cid-uS2IZpFIKt .container-fluid {
  padding-left: 64px;
  padding-right: 64px;
}
@media (max-width: 992px) {
  .cid-uS2IZpFIKt .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.cid-uS2IZpFIKt .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-uS2IZpFIKt .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.cid-uS2IZpFIKt .dropdown-item {
  border: 1px solid #63635d !important;
  background: #efef51 !important;
}
.cid-uS2IZpFIKt .dropdown-item:hover,
.cid-uS2IZpFIKt .dropdown-item:focus {
  background: #efef51 !important;
}
.cid-uS2IZpFIKt .dropdown-item:hover span {
  color: white;
}
.cid-uS2IZpFIKt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uS2IZpFIKt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uS2IZpFIKt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uS2IZpFIKt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uS2IZpFIKt .nav-link {
  position: relative;
}
.cid-uS2IZpFIKt .container {
  display: flex;
  margin: 0 auto;
  max-width: 1600px;
}
@media (min-width: 992px) {
  .cid-uS2IZpFIKt .container {
    flex-wrap: nowrap;
  }
}
.cid-uS2IZpFIKt .iconfont-wrapper {
  color: #2c2c26 !important;
  font-size: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.cid-uS2IZpFIKt .iconfont-wrapper:hover {
  color: #ffffff !important;
}
.cid-uS2IZpFIKt .dropdown-menu,
.cid-uS2IZpFIKt .navbar.opened {
  background: #efef51 !important;
}
.cid-uS2IZpFIKt .nav-item:focus,
.cid-uS2IZpFIKt .nav-link:focus {
  outline: none;
}
.cid-uS2IZpFIKt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uS2IZpFIKt .dropdown .dropdown-menu .dropdown-item::after {
  right: 1.6rem;
}
.cid-uS2IZpFIKt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uS2IZpFIKt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uS2IZpFIKt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uS2IZpFIKt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uS2IZpFIKt .navbar {
  min-height: 110px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #efef51;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uS2IZpFIKt .navbar.opened {
  transition: all 0.3s;
}
.cid-uS2IZpFIKt .navbar .dropdown-item {
  padding: 8px 3.2rem 8px 1.8rem;
  line-height: 1.55;
  border-radius: 30px;
  margin-left: 4px;
  margin-top: 4px;
}
.cid-uS2IZpFIKt .navbar .navbar-logo img {
  width: auto;
  border-radius: 6px !important;
}
.cid-uS2IZpFIKt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uS2IZpFIKt .navbar.collapsed {
  justify-content: center;
}
.cid-uS2IZpFIKt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uS2IZpFIKt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uS2IZpFIKt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uS2IZpFIKt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uS2IZpFIKt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uS2IZpFIKt .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-uS2IZpFIKt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uS2IZpFIKt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uS2IZpFIKt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uS2IZpFIKt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uS2IZpFIKt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uS2IZpFIKt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uS2IZpFIKt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uS2IZpFIKt .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-uS2IZpFIKt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uS2IZpFIKt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uS2IZpFIKt .navbar .dropdown-menu .dropdown-item {
    padding: 14px !important;
    text-align: center;
    margin-left: 0;
  }
  .cid-uS2IZpFIKt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0.5rem;
    max-width: 80%;
  }
  .cid-uS2IZpFIKt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uS2IZpFIKt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uS2IZpFIKt .navbar.navbar-short {
  min-height: 96px;
}
.cid-uS2IZpFIKt .navbar.navbar-short .navbar-brand {
  min-height: 96px;
}
.cid-uS2IZpFIKt .navbar-brand {
  min-height: 96px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word !important;
  z-index: 1;
  word-wrap: break-word !important;
  white-space: normal;
}
.cid-uS2IZpFIKt .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uS2IZpFIKt .navbar-brand .navbar-caption:hover,
.cid-uS2IZpFIKt .navbar-brand .navbar-caption:focus {
  color: #2c2c26 !important;
}
.cid-uS2IZpFIKt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uS2IZpFIKt .navbar.opened .navbar-brand .navbar-caption:hover,
.cid-uS2IZpFIKt .navbar.opened .navbar-brand .navbar-caption:focus {
  color: #ffffff !important;
}
.cid-uS2IZpFIKt .dropdown-item.active,
.cid-uS2IZpFIKt .dropdown-item:active {
  background-color: transparent;
}
.cid-uS2IZpFIKt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uS2IZpFIKt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uS2IZpFIKt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uS2IZpFIKt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #efef51;
  top: 3.2rem;
  border-radius: 30px;
}
@media (max-width: 992px) {
  .cid-uS2IZpFIKt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    top: 0;
  }
}
.cid-uS2IZpFIKt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
  top: 0;
  border-left: 1px solid transparent;
}
.cid-uS2IZpFIKt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uS2IZpFIKt ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 991px) {
  .cid-uS2IZpFIKt ul.navbar-nav {
    padding: 0;
    background-color: transparent;
    border: 2px solid transparent;
  }
}
.cid-uS2IZpFIKt .navbar-buttons {
  text-align: center;
  width: auto;
}
.cid-uS2IZpFIKt .navbar-buttons .btn {
  white-space: nowrap;
  margin-right: 0;
  padding: 14px 32px;
  min-height: auto;
  width: auto;
}
.cid-uS2IZpFIKt .navbar-buttons .btn .mbr-iconfont {
  width: 32px;
  height: 32px;
  min-width: 32px;
  font-size: 16px;
  margin-left: 32px;
  margin-right: -20px;
}
@media (max-width: 575px) {
  .cid-uS2IZpFIKt .navbar-buttons .btn {
    width: auto !important;
  }
}
.cid-uS2IZpFIKt button.navbar-toggler {
  outline: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  border-radius: 100%;
  background-color: #efef51 !important;
  border: none !important;
  box-shadow: none !important;
}
.cid-uS2IZpFIKt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  border-right: 5px;
  background-color: #2c2c26;
}
.cid-uS2IZpFIKt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 18px;
  left: 15px;
  transition: all 0.2s;
}
.cid-uS2IZpFIKt button.navbar-toggler .hamburger span:nth-child(2) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uS2IZpFIKt button.navbar-toggler .hamburger span:nth-child(3) {
  left: 15px;
  top: 24px;
  transition: all 0.15s;
}
.cid-uS2IZpFIKt button.navbar-toggler .hamburger span:nth-child(4) {
  left: 15px;
  top: 30px;
  transition: all 0.2s;
}
.cid-uS2IZpFIKt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uS2IZpFIKt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uS2IZpFIKt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uS2IZpFIKt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uS2IZpFIKt .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uS2IZpFIKt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uS2IZpFIKt .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-uS2IZpFIKt .navbar {
    height: 70px;
  }
  .cid-uS2IZpFIKt .navbar.opened {
    height: auto;
  }
  .cid-uS2IZpFIKt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uS2IZpFIKt .navbar-nav {
  margin: 0 auto;
}
.cid-uS2IZpFIKt .nav-item {
  padding: 0;
  margin: 0;
}
.cid-uS2IZpFIKt .nav-item .nav-link {
  padding: 8px 32px !important;
  margin: 0 4px !important;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  border: 1px solid #63635d;
}
.cid-uS2IZpFIKt .nav-item .nav-link::after {
  color: #63635d !important;
  transform: rotate(0);
  transition: .3s;
}
.cid-uS2IZpFIKt .nav-item .nav-link:hover {
  background-color: #2c2c26;
  color: #ffffff !important;
  border: 1px solid #2c2c26;
}
.cid-uS2IZpFIKt .nav-item .nav-link:hover::after {
  color: #ffffff !important;
}
.cid-uS2IZpFIKt .nav-item .nav-link.show::after {
  transform: rotate(180deg);
}
.cid-uS2IZpFIKt .nav-item .dropdown-menu {
  background-color: transparent !important;
}
.cid-uS2IZpFIKt .nav-item .dropdown-menu:hover {
  background-color: transparent !important;
}
@media (max-width: 991px) {
  .cid-uS2IZpFIKt .navbar {
    justify-content: flex-start !important;
  }
  .cid-uS2IZpFIKt .navbar.opened {
    min-height: 100vh !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  .cid-uS2IZpFIKt .navbar-collapse {
    padding: 20px 0 3rem;
  }
  .cid-uS2IZpFIKt .navbar-collapse .navbar-nav {
    width: 100%;
    margin-bottom: 24px;
  }
  .cid-uS2IZpFIKt .navbar-collapse .nav-item {
    width: 100%;
    margin: 0;
  }
  .cid-uS2IZpFIKt .navbar-collapse .nav-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cid-uS2IZpFIKt .navbar-collapse .nav-item .nav-link {
    padding: 14px !important;
    justify-content: center;
    margin: 0 !important;
    margin-bottom: 4px !important;
  }
}
.cid-uS2IZpFIKt .content-wrap {
  min-height: 110px;
}
.cid-uS2IZs5Vnd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/25-2000x1527.jpg");
}
.cid-uS2IZs5Vnd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2IZs5Vnd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2IZs5Vnd .container-fluid {
  padding: 0 64px;
}
@media (max-width: 992px) {
  .cid-uS2IZs5Vnd .container-fluid {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uS2IZs5Vnd .container-fluid {
    padding: 0 24px;
  }
}
@media (max-width: 992px) {
  .cid-uS2IZs5Vnd .container {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .cid-uS2IZs5Vnd .container {
    padding: 0 24px;
  }
}
.cid-uS2IZs5Vnd .content-wrapper {
  padding: 150px 0;
}
@media (max-width: 992px) {
  .cid-uS2IZs5Vnd .content-wrapper {
    padding: 0;
  }
}
.cid-uS2IZs5Vnd .content-wrapper .desc-wrapper .mbr-desc {
  display: inline-flex;
  padding: 2px 10px;
  position: relative;
  margin-bottom: 16px;
  border-radius: 500px;
  z-index: 1;
}
.cid-uS2IZs5Vnd .content-wrapper .desc-wrapper .mbr-desc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  border: 1px solid #ffffff;
  opacity: .12;
  pointer-events: none;
}
.cid-uS2IZs5Vnd .content-wrapper .desc-wrapper .mbr-desc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 500px;
  background-color: #ffffff;
  opacity: .09;
  pointer-events: none;
}
.cid-uS2IZs5Vnd .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uS2IZs5Vnd .content-wrapper .text-wrapper .mbr-text {
  display: inline-flex;
  width: 45%;
  opacity: .5;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .cid-uS2IZs5Vnd .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uS2IZs5Vnd .mbr-section-title {
  color: #ffffff;
}
.cid-uS2IZs5Vnd .mbr-desc,
.cid-uS2IZs5Vnd .desc-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uS2IZs5Vnd .mbr-text,
.cid-uS2IZs5Vnd .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-uS2IZs5Vnd .mbr-section-title,
.cid-uS2IZs5Vnd .mbr-section-btn {
  text-align: center;
}
.cid-uS2IZtggHD {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #99f5fe;
}
.cid-uS2IZtggHD .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uS2IZtggHD .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uS2IZtggHD .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-uS2IZtggHD .mbr-section-title {
  text-align: center;
  color: #252434;
}
.cid-uS2IZtggHD .mbr-text {
  color: #000000;
}
.cid-uS2IZuttYa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uS2IZuttYa blockquote {
  border-color: #000000;
  border-radius: 4px;
  background-color: #99f5fe;
}
.cid-uS2IZuttYa .mbr-section-title {
  text-align: center;
}
.cid-uS2IZuttYa .mbr-text {
  color: #000000;
}
.cid-uS2IZxVePv {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #99f5fe;
}
.cid-uS2IZxVePv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2IZxVePv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uS2IZxVePv .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uS2IZxVePv .row {
  background: #000000;
  align-items: center;
  padding: 3rem;
  border-radius: 3rem;
  width: fit-content;
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 767px) {
  .cid-uS2IZxVePv .row {
    padding: 3rem 1rem;
    padding-bottom: 1rem;
    border-radius: 2rem;
  }
}
.cid-uS2IZxVePv img {
  border-radius: 3rem;
}
@media (max-width: 767px) {
  .cid-uS2IZxVePv img {
    border-radius: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uS2IZxVePv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uS2IZxVePv .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uS2IZxVePv .mbr-text,
.cid-uS2IZxVePv .mbr-section-btn {
  color: #ffffff;
}
.cid-uS2IZzsNCA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uS2IZzsNCA .row {
  align-items: center;
  width: 100%;
}
.cid-uS2IZzsNCA .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uS2IZzsNCA .mbr-section-title {
  color: #f3f4ef;
}
.cid-uS2IZzsNCA .mbr-section-subtitle {
  color: #f3f4ef;
}
.cid-uS2IZzsNCA .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uS2IZzsNCA .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uS2IZzsNCA .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uS2IZzsNCA .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #99f5fe;
}
@media (max-width: 991px) {
  .cid-uS2IZzsNCA .text-container {
    padding: 24px;
  }
}
.cid-uS2IZzsNCA .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uS2IZzsNCA .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uS2IZzsNCA .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #ddff55;
}
.cid-uS2IZzsNCA .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-uS2IZzsNCA .mbr-text {
  color: #f3f4ef;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
}
.cid-uS2IZCgi9n {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #99f5fe;
}
.cid-uS2IZCgi9n .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uS2IZCgi9n .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uS2IZCgi9n .col-title,
.cid-uS2IZCgi9n .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uS2IZCgi9n .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uS2IZCgi9n .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uS2IZCgi9n .mbr-section-subtitle {
  color: #112B6D;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uS2IZCgi9n .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uS2IZCgi9n .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uS2IZCgi9n .mbr-text {
    text-align: center !important;
  }
}
.cid-uS2IZEXykB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uS2IZEXykB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2IZEXykB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2IZEXykB .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uS2IZEXykB .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uS2IZEXykB .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 992px) {
  .cid-uS2IZEXykB .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uS2IZEXykB .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uS2IZEXykB .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uS2IZEXykB .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uS2IZEXykB .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #ffffff;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uS2IZEXykB .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uS2IZEXykB .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uS2IZEXykB .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uS2IZEXykB .mbr-section-title {
  color: #19171c;
}
.cid-uS2IZEXykB .panel-title {
  color: #19171c;
}
.cid-uS2IZEXykB .panel-text {
  color: #ffffff;
}
.cid-uS2IZEXykB .panel-title-edit {
  color: #ffffff;
}
.cid-uS2IZEXykB .mbr-section-title,
.cid-uS2IZEXykB .mbr-section-btn {
  color: #ffffff;
}
.cid-uS2IZGVN7q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uS2IZGVN7q .main-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uS2IZGVN7q .main-container {
    flex-wrap: wrap;
    padding: 0 40px;
  }
}
.cid-uS2IZGVN7q .col-title,
.cid-uS2IZGVN7q .col-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
}
.cid-uS2IZGVN7q .mbr-section-title {
  color: #000000;
  margin-bottom: 0 !important;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-uS2IZGVN7q .mbr-section-title {
    text-align: center !important;
  }
}
.cid-uS2IZGVN7q .mbr-section-subtitle {
  color: #000000;
  margin-bottom: 0 !important;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cid-uS2IZGVN7q .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uS2IZGVN7q .mbr-text {
  color: #000000;
  margin-bottom: 0.9rem !important;
}
@media (max-width: 767px) {
  .cid-uS2IZGVN7q .mbr-text {
    text-align: center !important;
  }
}
.cid-uS2IZIwMtc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-uS2IZIwMtc .row {
  align-items: center;
  width: 100%;
}
.cid-uS2IZIwMtc .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-uS2IZIwMtc .mbr-section-title {
  color: #000000;
}
.cid-uS2IZIwMtc .mbr-section-subtitle {
  color: #000000;
}
.cid-uS2IZIwMtc .content-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0 !important;
}
@media (max-width: 767px) {
  .cid-uS2IZIwMtc .content-container {
    grid-template-columns: 1fr;
  }
}
.cid-uS2IZIwMtc .col-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-uS2IZIwMtc .text-container {
  padding: 32px;
  height: 100%;
  border: 1px solid #99f5fe;
}
@media (max-width: 991px) {
  .cid-uS2IZIwMtc .text-container {
    padding: 24px;
  }
}
.cid-uS2IZIwMtc .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uS2IZIwMtc .iconfont-wrapper {
  margin-bottom: 8px;
}
.cid-uS2IZIwMtc .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 36px;
  color: #000000;
}
.cid-uS2IZIwMtc .card-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 0;
  text-align: center;
}
.cid-uS2IZIwMtc .mbr-text {
  color: #ffffff;
  width: 100%;
  margin-bottom: 0;
  margin-top: 8px;
  opacity: 0.8;
  text-align: center;
}
.cid-uS2IZKkHTN {
  display: flex;
  padding-top: 75px;
  padding-bottom: 45px;
  background: linear-gradient(to bottom, #000000, #99f5fe);
}
@media (min-width: 768px) {
  .cid-uS2IZKkHTN {
    align-items: flex-start;
  }
  .cid-uS2IZKkHTN .row {
    justify-content: center;
  }
}
.cid-uS2IZKkHTN .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uS2IZKkHTN .mbr-text,
.cid-uS2IZKkHTN .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uS2IZKkHTN .mbr-section-title,
.cid-uS2IZKkHTN .line {
  color: #ffffff;
  text-align: center;
}
.cid-uS2IZKkHTN h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uS2IZKkHTN h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uS2IZKkHTN .mbr-section-subtitle,
.cid-uS2IZKkHTN .align {
  text-align: left;
  color: #232323;
}
.cid-uS2IZKkHTN .mbr-text2 {
  color: #808080;
}
.cid-uS2IZLGcbX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #99f5fe;
}
.cid-uS2IZLGcbX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2IZLGcbX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2IZLGcbX .row {
  justify-content: center;
}
.cid-uS2IZLGcbX .col-title {
  margin-bottom: 2.5rem;
}
.cid-uS2IZLGcbX .mbr-section-title {
  color: #000000;
}
.cid-uS2IZLGcbX .mbr-section-subtitle {
  color: #000000;
  margin-top: 1rem;
}
.cid-uS2IZLGcbX .img-container {
  margin: 0 auto;
}
.cid-uS2IZLGcbX .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  height: 620px;
}
.cid-uS2IZLGcbX .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uS2IZMX7mA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #000000;
}
.cid-uS2IZMX7mA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2IZMX7mA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2IZMX7mA .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uS2IZMX7mA .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uS2IZMX7mA .container {
    padding: 0 30px;
  }
}
.cid-uS2IZMX7mA .row {
  position: relative;
}
.cid-uS2IZMX7mA .row img {
  position: absolute;
  top: 6rem;
  right: 0;
  bottom: -5rem;
  width: 40%;
  height: 510px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uS2IZMX7mA .row img {
    top: auto;
    width: 100%;
  }
}
.cid-uS2IZMX7mA .text-wrapper {
  padding: 120px 75px 150px;
  background-color: #99f5fe;
  position: relative;
}
@media (max-width: 768px) {
  .cid-uS2IZMX7mA .text-wrapper {
    padding: 40px 16px;
  }
}
.cid-uS2IZMX7mA .text-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
.cid-uS2IZMX7mA .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uS2IZMX7mA .mbr-text {
  color: #000000;
}
.cid-uS2IZMX7mA .mbr-link,
.cid-uS2IZMX7mA .mbr-iconfont {
  color: #212529;
}
.cid-uS2IZMX7mA .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uS2IZOtZnx {
  display: flex;
  padding-top: 90px;
  padding-bottom: 90px;
  background: linear-gradient(to bottom, #99f5fe, #000000);
}
@media (min-width: 768px) {
  .cid-uS2IZOtZnx {
    align-items: flex-start;
  }
  .cid-uS2IZOtZnx .row {
    justify-content: center;
  }
}
.cid-uS2IZOtZnx .mbr-section-title {
  text-align: left;
  color: #232323;
}
.cid-uS2IZOtZnx .mbr-text,
.cid-uS2IZOtZnx .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uS2IZOtZnx .mbr-section-title,
.cid-uS2IZOtZnx .line {
  color: #ffffff;
  text-align: center;
}
.cid-uS2IZOtZnx h2 {
  position: relative;
  width: fit-content;
  padding-left: 35px;
  display: inline-block;
}
.cid-uS2IZOtZnx h2:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  left: 10px;
  top: calc(50% - 6px);
}
.cid-uS2IZOtZnx .mbr-section-subtitle,
.cid-uS2IZOtZnx .align {
  text-align: left;
  color: #232323;
}
.cid-uS2IZOtZnx .mbr-text2 {
  color: #808080;
}
.cid-uS2IZQ2qgD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #99f5fe;
}
.cid-uS2IZQ2qgD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2IZQ2qgD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2IZQ2qgD .title-wrapper {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uS2IZQ2qgD .title-wrapper {
    display: block;
    margin-bottom: 30px;
  }
}
.cid-uS2IZQ2qgD .title-wrapper .label-wrapper {
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uS2IZQ2qgD .title-wrapper .label-wrapper {
    width: 100%;
  }
}
.cid-uS2IZQ2qgD .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #000000;
}
.cid-uS2IZQ2qgD .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uS2IZQ2qgD .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uS2IZQ2qgD .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-top: 1px solid #000000;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uS2IZQ2qgD .panel-group .card {
    padding: 30px 0;
  }
}
.cid-uS2IZQ2qgD .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uS2IZQ2qgD .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uS2IZQ2qgD .panel-group .card .card-header .panel-title .icon-wrap {
  width: 35%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uS2IZQ2qgD .panel-group .card .card-header .panel-title .icon-wrap {
    width: 25%;
  }
}
.cid-uS2IZQ2qgD .panel-group .card .card-header .panel-title .icon-wrap .mbr-iconfont {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 10px;
  transition: all .3s ease;
  font-size: 24px;
  background-color: #000000;
  color: #ffffff;
}
.cid-uS2IZQ2qgD .panel-group .card .card-header .panel-title .icon-wrap .svg1 {
  position: absolute;
  bottom: 0;
  left: 24px;
  transform: rotate(180deg);
  width: 26px;
}
.cid-uS2IZQ2qgD .panel-group .card .card-header .panel-title .icon-wrap .svg1 path {
  transition: all .3s ease;
  fill: #000000;
}
.cid-uS2IZQ2qgD .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 65%;
  padding-right: 30px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uS2IZQ2qgD .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 70%;
  }
}
.cid-uS2IZQ2qgD .panel-group .card .card-header .panel-title .icon-wrapper {
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.cid-uS2IZQ2qgD .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-uS2IZQ2qgD .panel-group .card .card-header .panel-title:hover .icon-wrap .mbr-iconfont {
  background-color: #000000;
  color: #ffffff;
}
.cid-uS2IZQ2qgD .panel-group .card .card-header .panel-title:hover .icon-wrap .svg1 path {
  fill: #000000;
}
.cid-uS2IZQ2qgD .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-uS2IZQ2qgD .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .mbr-iconfont {
  background-color: #000000;
  color: #ffffff;
}
.cid-uS2IZQ2qgD .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .svg1 path {
  fill: #000000;
}
.cid-uS2IZQ2qgD .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
  margin-left: 35%;
}
@media (max-width: 992px) {
  .cid-uS2IZQ2qgD .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
    margin-left: 0;
  }
}
.cid-uS2IZQ2qgD .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uS2IZQ2qgD .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uS2IZQ2qgD .mbr-label {
  color: #000000;
}
.cid-uS2IZQ2qgD .mbr-section-title {
  color: #000000;
}
.cid-uS2IZQ2qgD .panel-title-edit {
  color: #000000;
}
.cid-uS2IZQ2qgD .panel-text {
  color: #000000;
}
.cid-uS2IZQ2qgD .mbr-label,
.cid-uS2IZQ2qgD .label-wrapper {
  text-align: right;
}
.cid-uS2IZWl7OA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-uS2IZWl7OA .google-map {
  height: 30rem;
  position: relative;
}
.cid-uS2IZWl7OA .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uS2IZWl7OA .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uS2IZWl7OA .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uS2IZWl7OA .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uS2IZWl7OA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2IZWl7OA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2IZZuvKO {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #99f5fe;
}
.cid-uS2IZZuvKO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uS2IZZuvKO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uS2IZZuvKO .content-wrap {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-uS2IZZuvKO .content-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uS2IZZuvKO .content-wrapper .social-wrap {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uS2IZZuvKO .content-wrapper .social-wrap {
    margin-bottom: 12px;
  }
}
.cid-uS2IZZuvKO .content-wrapper .social-wrap .soc-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uS2IZZuvKO .content-wrapper .social-wrap .soc-wrap .soc-item a {
  display: block;
}
.cid-uS2IZZuvKO .content-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont,
.cid-uS2IZZuvKO .content-wrapper .social-wrap .soc-wrap .soc-item a:hover .mbr-iconfont {
  background-color: #ffe66d;
}
.cid-uS2IZZuvKO .content-wrapper .social-wrap .soc-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  color: #050f0f;
  font-size: 32px;
  border-radius: .5rem;
  border: 2px solid #050f0f;
  transition: all 0.3s ease-in-out;
  margin: 0 12px 12px 0;
}
.cid-uS2IZZuvKO .content-wrapper .mbr-copy {
  margin-bottom: 0;
  opacity: .6;
}
@media (max-width: 992px) {
  .cid-uS2IZZuvKO .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uS2IZZuvKO .list-wrapper .list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-uS2IZZuvKO .list-wrapper .list .item-wrap {
  margin-bottom: 16px;
  transition: all 0.3s ease-in-out;
}
.cid-uS2IZZuvKO .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uS2IZZuvKO .list-wrapper .list .item-wrap:hover,
.cid-uS2IZZuvKO .list-wrapper .list .item-wrap:focus {
  transform: translateX(3px);
}
.cid-uS2IZZuvKO .title-wrapper .mbr-section-title {
  margin-top: 80px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uS2IZZuvKO .title-wrapper .mbr-section-title {
    margin-top: 8px;
  }
}
.cid-uS2IZZuvKO .list {
  color: #050f0f;
}
.cid-uS2IZZuvKO .mbr-copy {
  color: #050f0f;
}
.cid-uS2IZZuvKO .mbr-section-title {
  color: #87ceeb;
  text-align: center;
}
