body {
  background-color: #f5fdfd;
}
body {
  font-family: Manrope;
}
.display-1 {
  font-family: 'Manrope', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2.5rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.3;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- 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: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 0;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 0;
}
.bg-primary {
  background-color: #07beb8 !important;
}
.bg-success {
  background-color: #20ac6b !important;
}
.bg-info {
  background-color: #0aa3c2 !important;
}
.bg-warning {
  background-color: #cc9900 !important;
}
.bg-danger {
  background-color: #ae1e2c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #07beb8 !important;
  border-color: #07beb8 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #046a67 !important;
  border-color: #046a67 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #046a67 !important;
  border-color: #046a67 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3dccc7 !important;
  border-color: #3dccc7 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #258d8a !important;
  border-color: #258d8a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #258d8a !important;
  border-color: #258d8a !important;
}
.btn-info,
.btn-info:active {
  background-color: #0aa3c2 !important;
  border-color: #0aa3c2 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #065e70 !important;
  border-color: #065e70 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #065e70 !important;
  border-color: #065e70 !important;
}
.btn-success,
.btn-success:active {
  background-color: #20ac6b !important;
  border-color: #20ac6b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #12633e !important;
  border-color: #12633e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #12633e !important;
  border-color: #12633e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #cc9900 !important;
  border-color: #cc9900 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #755800 !important;
  border-color: #755800 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #755800 !important;
  border-color: #755800 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ae1e2c !important;
  border-color: #ae1e2c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #641119 !important;
  border-color: #641119 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #641119 !important;
  border-color: #641119 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #07beb8;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #046a67 !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: #07beb8 !important;
  border-color: #07beb8 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3dccc7;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #258d8a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3dccc7 !important;
  border-color: #3dccc7 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0aa3c2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #065e70 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #0aa3c2 !important;
  border-color: #0aa3c2 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #20ac6b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #12633e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #20ac6b !important;
  border-color: #20ac6b !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #cc9900;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #755800 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #cc9900 !important;
  border-color: #cc9900 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ae1e2c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #641119 !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: #ae1e2c !important;
  border-color: #ae1e2c !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #07beb8 !important;
}
.text-secondary {
  color: #3dccc7 !important;
}
.text-success {
  color: #20ac6b !important;
}
.text-info {
  color: #0aa3c2 !important;
}
.text-warning {
  color: #cc9900 !important;
}
.text-danger {
  color: #ae1e2c !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #035c59 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #22817e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #105636 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #055161 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #664d00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #570f16 !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: #07beb8;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0aa3c2;
}
.alert-warning {
  background-color: #cc9900;
}
.alert-danger {
  background-color: #ae1e2c;
}
.mbr-gallery-filter li.active .btn {
  background-color: #07beb8;
  border-color: #07beb8;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #07beb8;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4cf8f3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #68e3aa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #55dbf6;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffe599;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e56773;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #07beb8 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #07beb8;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #07beb8;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #07beb8;
}
.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: #07beb8;
  border-bottom-color: #07beb8;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #07beb8 !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: #3dccc7 !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='%2307beb8' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  max-height: 57px;
  padding: 12px 36px 12px;
  transition: all .3s ease;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline {
  border: 1px solid #07beb8;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover {
  box-shadow: inset 0 -100px 0 0 #07beb8 !important;
  color: #0aa3c2 !important;
}
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline {
  border: 1px solid #3dccc7;
}
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover {
  box-shadow: inset 0 -100px 0 0 #3dccc7 !important;
  color: #07beb8 !important;
}
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline {
  border: 1px solid #20ac6b;
}
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover {
  box-shadow: inset 0 -100px 0 0 #20ac6b !important;
  color: #07beb8 !important;
}
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline {
  border: 1px solid #0aa3c2;
}
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover {
  box-shadow: inset 0 -100px 0 0 #0aa3c2 !important;
  color: #07beb8 !important;
}
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline {
  border: 1px solid #cc9900;
}
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover {
  box-shadow: inset 0 -100px 0 0 #cc9900 !important;
  color: #0aa3c2 !important;
}
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline {
  border: 1px solid #ae1e2c;
}
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover {
  box-shadow: inset 0 -100px 0 0 #ae1e2c !important;
  color: #07beb8 !important;
}
.cid-uJ5Z7WSTdg .navbar-dropdown {
  background-color: #f5fdfd !important;
  padding: 0;
}
.cid-uJ5Z7WSTdg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #f5fdfd !important;
  background: #f5fdfd;
}
.cid-uJ5Z7WSTdg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uJ5Z7WSTdg .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uJ5Z7WSTdg .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uJ5Z7WSTdg .menu_box .navbar.opened,
  .cid-uJ5Z7WSTdg .menu_box .navbar-collapse {
    background-color: #f5fdfd !important;
    transition: all 0s ease 0s;
  }
}
.cid-uJ5Z7WSTdg .navbar-dropdown {
  position: relative !important;
}
.cid-uJ5Z7WSTdg .btn {
  min-height: auto;
}
@media (min-width: 992px) {
  .cid-uJ5Z7WSTdg ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uJ5Z7WSTdg .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uJ5Z7WSTdg .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 0.5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uJ5Z7WSTdg .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uJ5Z7WSTdg li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uJ5Z7WSTdg .lg_brand {
    margin: 0 1rem;
  }
  .cid-uJ5Z7WSTdg .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uJ5Z7WSTdg .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uJ5Z7WSTdg .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uJ5Z7WSTdg .nav-item {
    margin: 0 !important;
  }
}
.cid-uJ5Z7WSTdg .nav-item .nav-link {
  position: relative;
}
.cid-uJ5Z7WSTdg .nav-item .nav-link:hover::before,
.cid-uJ5Z7WSTdg .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uJ5Z7WSTdg .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 5px;
  transition: all 0.3s ease-in-out;
  background-color: #000000;
}
.cid-uJ5Z7WSTdg .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uJ5Z7WSTdg .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uJ5Z7WSTdg .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uJ5Z7WSTdg .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uJ5Z7WSTdg .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 0.5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uJ5Z7WSTdg .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uJ5Z7WSTdg .offcanvas_box {
    display: none;
  }
}
.cid-uJ5Z7WSTdg .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uJ5Z7WSTdg .nav-dropdown .link {
  font-weight: 700 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uJ5Z7WSTdg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: -0.5rem;
}
.cid-uJ5Z7WSTdg .container {
  display: flex;
  margin: auto;
}
.cid-uJ5Z7WSTdg .iconfont-wrapper {
  color: #f4efe8;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uJ5Z7WSTdg .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uJ5Z7WSTdg .iconfont-wrapper:hover {
  opacity: 0.5;
}
.cid-uJ5Z7WSTdg .navbar-caption {
  color: #000000;
}
.cid-uJ5Z7WSTdg .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uJ5Z7WSTdg .navbar-nav {
    margin: 0;
  }
}
.cid-uJ5Z7WSTdg .dropdown-menu,
.cid-uJ5Z7WSTdg .navbar.opened {
  background-color: false !important;
}
.cid-uJ5Z7WSTdg .nav-item:focus,
.cid-uJ5Z7WSTdg .nav-link:focus {
  outline: none;
}
.cid-uJ5Z7WSTdg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uJ5Z7WSTdg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJ5Z7WSTdg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uJ5Z7WSTdg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uJ5Z7WSTdg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uJ5Z7WSTdg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uJ5Z7WSTdg .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uJ5Z7WSTdg .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uJ5Z7WSTdg .navbar.opened {
  transition: all 0.3s;
}
.cid-uJ5Z7WSTdg .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uJ5Z7WSTdg .navbar .navbar-logo img {
  max-width: 70px;
  min-height: 70px;
  object-fit: contain;
}
.cid-uJ5Z7WSTdg .navbar .navbar-collapse {
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.cid-uJ5Z7WSTdg .navbar.collapsed {
  justify-content: center;
}
.cid-uJ5Z7WSTdg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uJ5Z7WSTdg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uJ5Z7WSTdg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uJ5Z7WSTdg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uJ5Z7WSTdg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uJ5Z7WSTdg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uJ5Z7WSTdg .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uJ5Z7WSTdg .navbar .nav-item {
    padding: 0.5rem 0;
  }
  .cid-uJ5Z7WSTdg .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uJ5Z7WSTdg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uJ5Z7WSTdg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uJ5Z7WSTdg .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uJ5Z7WSTdg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uJ5Z7WSTdg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uJ5Z7WSTdg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uJ5Z7WSTdg .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uJ5Z7WSTdg .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uJ5Z7WSTdg .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uJ5Z7WSTdg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uJ5Z7WSTdg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uJ5Z7WSTdg .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uJ5Z7WSTdg .navbar.navbar-short {
  min-height: 60px;
}
.cid-uJ5Z7WSTdg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uJ5Z7WSTdg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uJ5Z7WSTdg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uJ5Z7WSTdg .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uJ5Z7WSTdg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uJ5Z7WSTdg .dropdown-item.active,
.cid-uJ5Z7WSTdg .dropdown-item:active {
  background-color: transparent;
}
.cid-uJ5Z7WSTdg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uJ5Z7WSTdg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uJ5Z7WSTdg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uJ5Z7WSTdg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uJ5Z7WSTdg ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uJ5Z7WSTdg .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uJ5Z7WSTdg button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #f5fdfd;
  background: #f5fdfd;
}
.cid-uJ5Z7WSTdg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uJ5Z7WSTdg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uJ5Z7WSTdg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ5Z7WSTdg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uJ5Z7WSTdg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uJ5Z7WSTdg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ5Z7WSTdg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uJ5Z7WSTdg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uJ5Z7WSTdg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uJ5Z7WSTdg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uJ5Z7WSTdg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uJ5Z7WSTdg .navbar {
    height: 70px;
  }
  .cid-uJ5Z7WSTdg .navbar.opened {
    height: auto;
  }
  .cid-uJ5Z7WSTdg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uJ5Z7WSTdg .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uJ5Z7WSTdg .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
  }
}
.cid-uJ5Z7WSTdg .mbr-section-btn-main .btn {
  width: fit-content;
  white-space: nowrap;
}
.cid-uJ5Z7WSTdg .icons-menu-main {
  display: flex;
}
.cid-uJ5Z7WSTdg .navbar-caption:hover {
  color: #000000;
}
@media (min-width: 992px) {
  .cid-uJ5Z7WSTdg .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uJ5Z7WSTdg .mbr-section-subtitle {
  color: #f4efe8;
}
.cid-uJ5Z7WSTdg .mbr-text {
  color: #f4efe8;
  text-align: left;
}
.cid-uJ5Z7WSTdg .text_widget {
  color: #f4efe8;
}
.cid-uJ5Z7WSTdg .mbr-section-subtitle,
.cid-uJ5Z7WSTdg .text_widget {
  text-align: left;
}
.cid-uJ5Z7WSTdg a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uJ5Z7WSTdg .nav-link,
.cid-uJ5Z7WSTdg .dropdown-item {
  color: #000000;
}
.cid-uJ5Z7WU0Is {
  overflow: hidden;
  background-color: transparent;
}
.cid-uJ5Z7WU0Is .row {
  position: relative;
}
.cid-uJ5Z7WU0Is .row .blur-circle {
  position: absolute;
  top: 30%;
  left: 28%;
  width: 700px;
  height: 700px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #cfffff 50%, #60f1ea);
  filter: blur(64px) blur(64px);
  z-index: 0;
}
@media (max-width: 768px) {
  .cid-uJ5Z7WU0Is .row .blur-circle {
    display: none;
  }
}
.cid-uJ5Z7WU0Is .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ5Z7WU0Is .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ5Z7WU0Is .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7WU0Is .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uJ5Z7WU0Is .row {
    padding: 0 24px;
  }
}
.cid-uJ5Z7WU0Is .title-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uJ5Z7WU0Is .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uJ5Z7WU0Is .text-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 80px;
}
.cid-uJ5Z7WU0Is .text-wrapper .mbr-text {
  letter-spacing: 0.5em;
  margin-bottom: 0;
  display: inline-flex;
  transform: rotate(90deg);
}
.cid-uJ5Z7WU0Is .text-wrapper .mbr-text span {
  margin-left: 21px;
  line-height: 0.7;
}
.cid-uJ5Z7WU0Is .mbr-section-title {
  color: #111111;
}
.cid-uJ5Z7WU0Is .mbr-text,
.cid-uJ5Z7WU0Is .mbr-iconfont {
  color: #111111;
}
.cid-uJ5Z7WU0Is .mbr-section-title,
.cid-uJ5Z7WU0Is .mbr-section-btn {
  color: #000000;
}
.cid-uJ5Z7WUpFe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #003f47;
}
.cid-uJ5Z7WUpFe .row {
  position: relative;
}
.cid-uJ5Z7WUpFe .row .blur-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 75%;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #cfffff 50%, #60f1ea);
  filter: blur(64px) blur(64px);
}
@media (max-width: 768px) {
  .cid-uJ5Z7WUpFe .row .blur-circle {
    display: none;
  }
}
.cid-uJ5Z7WUpFe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ5Z7WUpFe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ5Z7WUpFe .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7WUpFe .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uJ5Z7WUpFe .row {
    padding: 0 24px;
  }
}
.cid-uJ5Z7WUpFe .title {
  display: flex;
  align-items: center;
}
.cid-uJ5Z7WUpFe .title-wrapper {
  position: relative;
  z-index: 1;
  padding-right: 60px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7WUpFe .title-wrapper {
    margin-bottom: 65px;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .cid-uJ5Z7WUpFe .title-wrapper {
    margin-bottom: 45px;
  }
}
.cid-uJ5Z7WUpFe .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7WUpFe .title-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .cid-uJ5Z7WUpFe .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uJ5Z7WUpFe .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ5Z7WUpFe .cards-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uJ5Z7WUpFe .cards-wrapper {
    display: block;
  }
}
.cid-uJ5Z7WUpFe .row.cards {
  padding: 0 16px;
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: 220px;
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uJ5Z7WUpFe .row.cards {
    margin: 0 auto;
  }
}
.cid-uJ5Z7WUpFe .row.cards .card {
  padding: 0;
  margin-bottom: 32px;
  min-height: 200px;
  position: relative;
  width: 100%;
}
.cid-uJ5Z7WUpFe .row.cards .card::before {
  content: '';
  position: absolute;
  top: 0.2rem;
  left: -1rem;
  width: 100%;
  height: 102%;
  border-radius: 8px;
  border: 4px solid #000000;
  background-color: transparent;
  pointer-events: none;
}
.cid-uJ5Z7WUpFe .row.cards .card .card-wrapper {
  background-color: #f5fdfd;
  padding: 48px 32px 32px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .cid-uJ5Z7WUpFe .row.cards .card .card-wrapper {
    padding: 36px 28px;
  }
}
.cid-uJ5Z7WUpFe .row.cards .card .card-wrapper .icon-wrapper {
  position: relative;
}
.cid-uJ5Z7WUpFe .row.cards .card .card-wrapper .icon-wrapper::before {
  content: '';
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background-color: #60f1ea;
}
.cid-uJ5Z7WUpFe .row.cards .card .card-wrapper .icon-wrapper .mbr-iconfont {
  display: block;
  position: relative;
  font-size: 48px;
  margin: -3rem 0 24px -10px;
}
.cid-uJ5Z7WUpFe .row.cards .card .card-wrapper .mbr-card-title {
  margin-bottom: 0;
}
.cid-uJ5Z7WUpFe .mbr-section-title {
  color: #FFFFFF;
}
.cid-uJ5Z7WUpFe .mbr-text {
  color: #FFFFFF;
}
.cid-uJ5Z7WUpFe .mbr-card-title,
.cid-uJ5Z7WUpFe .mbr-iconfont {
  color: #111111;
}
.cid-uJ5Z7WUpFe .mbr-card-title,
.cid-uJ5Z7WUpFe .mbr-iconfont,
.cid-uJ5Z7WUpFe .icon-wrapper {
  color: #000000;
}
.cid-uJ5Z7XcCQf {
  background-color: transparent;
}
.cid-uJ5Z7XcCQf .row {
  position: relative;
}
.cid-uJ5Z7XcCQf .row .blur-circle {
  position: absolute;
  top: 0;
  left: 28%;
  width: 600px;
  height: 600px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #cfffff 50%, #60f1ea);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-uJ5Z7XcCQf .row .blur-circle {
    display: none;
  }
}
.cid-uJ5Z7XcCQf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ5Z7XcCQf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ5Z7XcCQf .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XcCQf .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uJ5Z7XcCQf .row {
    padding: 0 24px;
  }
}
.cid-uJ5Z7XcCQf .text-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uJ5Z7XcCQf .text-wrapper .mbr-section-title {
  margin: 40px 0;
  transform: rotate(-5deg);
}
.cid-uJ5Z7XcCQf .text-wrapper .mbr-date {
  margin: 0 auto;
  width: 80%;
}
.cid-uJ5Z7XcCQf .text-wrapper .mbr-loc {
  margin: 0 auto 32px;
  width: 80%;
}
.cid-uJ5Z7XcCQf .text-wrapper .mbr-text {
  margin-bottom: 32px;
}
.cid-uJ5Z7XcCQf .text-wrapper .mbr-section-btn {
  margin-bottom: 32px;
}
.cid-uJ5Z7XcCQf .text-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-uJ5Z7XcCQf .mbr-section-title {
  color: #111111;
}
.cid-uJ5Z7XcCQf .mbr-text,
.cid-uJ5Z7XcCQf .mbr-iconfont {
  color: #111111;
  text-align: center;
}
.cid-uJ5Z7XcCQf .mbr-date {
  color: #000000;
}
.cid-uJ5Z7XcCQf .mbr-loc {
  color: #111111;
  text-align: right;
}
.cid-uJ5Z7XcCQf .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-uJ5Z7XcCQf .mbr-section-title,
.cid-uJ5Z7XcCQf .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uJ5Z7XcCQf .mbr-text {
  color: #000000;
}
.cid-uJ5Z7XglJP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #003f47;
}
.cid-uJ5Z7XglJP .row {
  position: relative;
}
.cid-uJ5Z7XglJP .row .blur-circle {
  position: absolute;
  top: 0;
  right: 30%;
  width: 55%;
  height: 100%;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #cfffff 50%, #60f1ea);
  filter: blur(64px) blur(64px);
}
@media (max-width: 768px) {
  .cid-uJ5Z7XglJP .row .blur-circle {
    display: none;
  }
}
.cid-uJ5Z7XglJP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ5Z7XglJP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ5Z7XglJP .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XglJP .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uJ5Z7XglJP .row {
    padding: 0 24px;
  }
}
.cid-uJ5Z7XglJP .row {
  justify-content: center;
}
.cid-uJ5Z7XglJP .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 42px;
}
.cid-uJ5Z7XglJP .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ5Z7XglJP .item-wrapper {
  height: 100%;
  padding: 48px 24px;
  position: relative;
  z-index: 10;
  border-radius: 8px;
  background-color: #f5fdfd;
  overflow: visible;
}
.cid-uJ5Z7XglJP .item-wrapper::before {
  content: '';
  position: absolute;
  top: 0.2rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border: 4px solid #000000;
  background-color: transparent;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XglJP .item-wrapper {
    margin-bottom: 12px;
  }
}
.cid-uJ5Z7XglJP .item-wrapper .price-wrapper .mbr-iconfont {
  display: block;
  font-size: 50px;
  margin-bottom: 2rem;
}
.cid-uJ5Z7XglJP .item-wrapper .price-wrapper .mbr-price {
  margin-bottom: 0;
}
.cid-uJ5Z7XglJP .item-wrapper .mbr-price-title {
  margin-bottom: 0;
}
.cid-uJ5Z7XglJP .item-wrapper .mbr-desc {
  margin-bottom: 32px;
}
.cid-uJ5Z7XglJP .mbr-section-title {
  color: #FFFFFF;
}
.cid-uJ5Z7XglJP .mbr-price,
.cid-uJ5Z7XglJP .mbr-iconfont {
  color: #000000;
  text-align: center;
}
.cid-uJ5Z7XglJP .mbr-price-title {
  color: #111111;
}
.cid-uJ5Z7XglJP .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-uJ5Z7XglJP .mbr-price-title,
.cid-uJ5Z7XglJP .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uJ5Z7XglJP .item {
  margin-bottom: 12px;
}
.cid-uJ5Z7Xh312 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: transparent;
}
.cid-uJ5Z7Xh312 .row {
  position: relative;
}
.cid-uJ5Z7Xh312 .row .blur-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #cfffff 50%, #60f1ea);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-uJ5Z7Xh312 .row .blur-circle {
    display: none;
  }
}
.cid-uJ5Z7Xh312 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ5Z7Xh312 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ5Z7Xh312 .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7Xh312 .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uJ5Z7Xh312 .row {
    padding: 0 24px;
  }
}
.cid-uJ5Z7Xh312 .title-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}
.cid-uJ5Z7Xh312 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ5Z7Xh312 .tab-content {
  position: relative;
  z-index: 2;
}
.cid-uJ5Z7Xh312 .tab-content .card {
  border: none;
  padding: 38px 0 26px;
  border-bottom: 2px solid #111111;
  border-radius: 0;
}
.cid-uJ5Z7Xh312 .tab-content .card .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}
.cid-uJ5Z7Xh312 .tab-content .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-uJ5Z7Xh312 .tab-content .card .card-header .panel-title:focus .mbr-iconfont {
  opacity: 0.7;
}
.cid-uJ5Z7Xh312 .tab-content .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 10px;
}
.cid-uJ5Z7Xh312 .tab-content .card .card-header .panel-title .mbr-iconfont {
  transition: all 0.3s ease;
}
.cid-uJ5Z7Xh312 .tab-content .card .panel-collapse .panel-body .panel-text {
  margin: 0;
}
.cid-uJ5Z7Xh312 .mbr-section-title {
  color: #000000;
}
.cid-uJ5Z7Xh312 .mbr-text {
  color: #111111;
  text-align: right;
}
.cid-uJ5Z7Xh312 .panel-title-edit,
.cid-uJ5Z7Xh312 .mbr-iconfont {
  color: #000000;
}
.cid-uJ5Z7Xh312 .panel-text {
  color: #000000;
}
.cid-uJ5Z7XiR8H {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: transparent;
}
.cid-uJ5Z7XiR8H .blur-wrapper {
  position: relative;
}
.cid-uJ5Z7XiR8H .blur-wrapper .blur-circle {
  position: absolute;
  top: 0;
  left: 32%;
  width: 450px;
  height: 450px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #cfffff 50%, #60f1ea);
  filter: blur(30px) blur(30px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-uJ5Z7XiR8H .blur-wrapper .blur-circle {
    display: none;
  }
}
.cid-uJ5Z7XiR8H .blur-wrapper .blur-text {
  position: relative;
  padding: 150px 0;
  z-index: 1;
}
.cid-uJ5Z7XiR8H .blur-wrapper .blur-text .mbr-blur-title {
  margin-bottom: 0;
}
.cid-uJ5Z7XiR8H .blur-wrapper .blur-text .mbr-blur-text {
  margin: 0;
}
.cid-uJ5Z7XiR8H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ5Z7XiR8H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ5Z7XiR8H .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XiR8H .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uJ5Z7XiR8H .row {
    padding: 0 24px;
  }
}
.cid-uJ5Z7XiR8H .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.cid-uJ5Z7XiR8H .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ5Z7XiR8H .text-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uJ5Z7XiR8H .text-wrapper .mbr-text {
  display: inline-flex;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XiR8H .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uJ5Z7XiR8H .mbr-section-title {
  color: #000000;
}
.cid-uJ5Z7XiR8H .mbr-blur-title {
  color: #000000;
  text-align: center;
}
.cid-uJ5Z7XiR8H .mbr-blur-text {
  color: #000000;
  text-align: center;
}
.cid-uJ5Z7XiR8H .mbr-text,
.cid-uJ5Z7XiR8H .text-wrapper {
  color: #000000;
  text-align: right;
}
.cid-uJ5Z7XjCJG {
  background-color: transparent;
}
.cid-uJ5Z7XjCJG .blur-wrapper {
  position: relative;
}
.cid-uJ5Z7XjCJG .blur-wrapper .blur-circle {
  position: absolute;
  top: 0;
  left: 32%;
  width: 450px;
  height: 450px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #cfffff 50%, #60f1ea);
  filter: blur(30px) blur(30px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-uJ5Z7XjCJG .blur-wrapper .blur-circle {
    display: none;
  }
}
.cid-uJ5Z7XjCJG .blur-wrapper .blur-text {
  position: relative;
  padding: 150px 0;
  z-index: 1;
}
.cid-uJ5Z7XjCJG .blur-wrapper .blur-text .mbr-blur-title {
  margin-bottom: 20px;
}
.cid-uJ5Z7XjCJG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ5Z7XjCJG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ5Z7XjCJG .container-fluid {
  padding: 0;
}
.cid-uJ5Z7XjCJG .row {
  padding: 0;
}
.cid-uJ5Z7XjCJG .mbr-blur-title {
  color: #111111;
  text-align: center;
}
.cid-uJ5Z7XjCJG .mbr-blur-title,
.cid-uJ5Z7XjCJG .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-uJ5Z7Xj5R3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #003f47;
}
.cid-uJ5Z7Xj5R3 .row {
  position: relative;
}
.cid-uJ5Z7Xj5R3 .row .blur-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 420px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #cfffff 50%, #60f1ea);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-uJ5Z7Xj5R3 .row .blur-circle {
    display: none;
  }
}
.cid-uJ5Z7Xj5R3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ5Z7Xj5R3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ5Z7Xj5R3 .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7Xj5R3 .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uJ5Z7Xj5R3 .row {
    padding: 0 24px;
  }
}
.cid-uJ5Z7Xj5R3 .title {
  display: flex;
  align-items: center;
}
.cid-uJ5Z7Xj5R3 .title-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 64px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uJ5Z7Xj5R3 .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uJ5Z7Xj5R3 .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uJ5Z7Xj5R3 .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7Xj5R3 .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uJ5Z7Xj5R3 .card {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-bottom: 2rem;
  padding: 16px;
  border-radius: 8px;
  background-color: #f5fdfd;
  z-index: 2;
}
.cid-uJ5Z7Xj5R3 .card .card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  background-color: #07beb8;
  border-radius: 100%;
  margin-right: 16px;
}
.cid-uJ5Z7Xj5R3 .card .card-number .mbr-number {
  margin-bottom: 0;
}
.cid-uJ5Z7Xj5R3 .card .mbr-card-title {
  margin-bottom: 0;
  width: 80%;
}
.cid-uJ5Z7Xj5R3 .mbr-section-title {
  color: #f4efe8;
}
.cid-uJ5Z7Xj5R3 .mbr-text,
.cid-uJ5Z7Xj5R3 .text-wrapper {
  color: #FFFFFF;
  text-align: right;
}
.cid-uJ5Z7Xj5R3 .mbr-number {
  color: #FFFFFF;
}
.cid-uJ5Z7Xj5R3 .mbr-card-title {
  color: #000000;
}
.cid-uJ5Z7Xj5R3 .mbr-section-title,
.cid-uJ5Z7Xj5R3 .mbr-section-btn {
  text-align: right;
  color: #FFFFFF;
}
.cid-uJ5Z7XvEGh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #003f47;
}
.cid-uJ5Z7XvEGh .row {
  position: relative;
}
.cid-uJ5Z7XvEGh .row .blur-circle {
  position: absolute;
  top: 0;
  left: 3rem;
  width: 430px;
  height: 410px;
  border-radius: 100%;
  background-image: linear-gradient(110deg, #cfffff 30%, #60f1ea);
  filter: blur(64px) blur(64px);
  left: auto;
  right: 3rem;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XvEGh .row .blur-circle {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .cid-uJ5Z7XvEGh .row .blur-circle {
    display: none;
  }
}
.cid-uJ5Z7XvEGh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ5Z7XvEGh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ5Z7XvEGh .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XvEGh .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uJ5Z7XvEGh .row {
    padding: 0 24px;
  }
}
.cid-uJ5Z7XvEGh .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-uJ5Z7XvEGh .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XvEGh .title-wrapper .mbr-section-title {
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .cid-uJ5Z7XvEGh .title-wrapper .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-uJ5Z7XvEGh .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XvEGh .title-wrapper .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-uJ5Z7XvEGh .title-wrapper .mbr-section-btn .btn {
  width: 90%;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XvEGh .title-wrapper .mbr-section-btn .btn {
    width: auto;
  }
}
.cid-uJ5Z7XvEGh .icon-wrapper {
  position: relative;
  z-index: 1;
  margin-right: 64px;
  margin-right: 0;
  margin-left: 64px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XvEGh .icon-wrapper {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  .cid-uJ5Z7XvEGh .icon-wrapper {
    margin-right: 0;
    margin-bottom: 96px;
    text-align: center;
  }
}
.cid-uJ5Z7XvEGh .icon-wrapper .mbr-iconfont {
  display: block;
  color: #ffffff;
  font-size: 350px;
  transform: rotate(-10deg);
}
@media (max-width: 992px) {
  .cid-uJ5Z7XvEGh .icon-wrapper .mbr-iconfont {
    font-size: 250px;
  }
}
@media (max-width: 768px) {
  .cid-uJ5Z7XvEGh .icon-wrapper .mbr-iconfont {
    font-size: 150px;
  }
}
.cid-uJ5Z7XvEGh .mbr-section-title {
  color: #f4efe8;
}
.cid-uJ5Z7XvEGh .mbr-text {
  color: #FFFFFF;
}
.cid-uJ5Z7XvEGh .mbr-section-title,
.cid-uJ5Z7XvEGh .mbr-section-btn {
  color: #FFFFFF;
}
.cid-uJ5Z7XwOq1 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  overflow: hidden;
  background-color: #001819;
  position: relative;
}
.cid-uJ5Z7XwOq1 .blur-circle {
  position: absolute;
  top: 0;
  right: 25%;
  width: 600px;
  height: 600px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #cfffff 50%, #60f1ea);
  filter: blur(64px) blur(64px);
}
@media (max-width: 768px) {
  .cid-uJ5Z7XwOq1 .blur-circle {
    display: none;
  }
}
.cid-uJ5Z7XwOq1 .item:focus,
.cid-uJ5Z7XwOq1 span:focus {
  outline: none;
}
.cid-uJ5Z7XwOq1 .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-uJ5Z7XwOq1 .content-head {
  max-width: 800px;
}
.cid-uJ5Z7XwOq1 .loop-wrap {
  padding: 8px 0;
  min-height: 66px !important;
  position: relative;
  z-index: 1;
}
.cid-uJ5Z7XwOq1 .item {
  color: #ffffff;
  min-height: 66px;
}
@media (max-width: 768px) {
  .cid-uJ5Z7XwOq1 .item {
    min-height: 33px;
  }
}
.cid-uJ5Z7XxSqR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: transparent;
}
.cid-uJ5Z7XxSqR .row {
  position: relative;
}
.cid-uJ5Z7XxSqR .row .blur-circle {
  position: absolute;
  top: 25%;
  left: 34%;
  width: 420px;
  height: 420px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #cfffff 50%, #60f1ea);
  filter: blur(64px) blur(64px);
}
@media (max-width: 768px) {
  .cid-uJ5Z7XxSqR .row .blur-circle {
    display: none;
  }
}
.cid-uJ5Z7XxSqR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ5Z7XxSqR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ5Z7XxSqR .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XxSqR .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uJ5Z7XxSqR .row {
    padding: 0 24px;
  }
}
.cid-uJ5Z7XxSqR .row {
  justify-content: center;
}
.cid-uJ5Z7XxSqR .title-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XxSqR .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uJ5Z7XxSqR .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uJ5Z7XxSqR .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uJ5Z7XxSqR .card {
  position: relative;
  z-index: 1;
  padding: 64px;
  border-radius: 0;
}
.cid-uJ5Z7XxSqR .card .mbr-card-title {
  margin-bottom: 30px;
}
.cid-uJ5Z7XxSqR .card .mbr-card-text {
  margin-bottom: 10px;
}
@media (max-width: 568px) {
  .cid-uJ5Z7XxSqR .card {
    padding: 32px;
  }
}
.cid-uJ5Z7XxSqR .card.first {
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  border-bottom-right-radius: 16px;
}
.cid-uJ5Z7XxSqR .card.last {
  border-left: 2px solid #000000;
  border-top: 2px solid #000000;
  border-top-left-radius: 16px;
}
.cid-uJ5Z7XxSqR .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uJ5Z7XxSqR .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uJ5Z7XxSqR .mbr-card-title {
  color: #111111;
}
.cid-uJ5Z7XxSqR .mbr-card-text {
  color: #000000;
}
.cid-uJ5Z7XxSqR .mbr-card-title,
.cid-uJ5Z7XxSqR .mbr-section-btn {
  color: #000000;
}
.cid-uJ5Z7Xy0WU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: transparent;
}
.cid-uJ5Z7Xy0WU .row {
  position: relative;
}
.cid-uJ5Z7Xy0WU .row .blur-circle {
  position: absolute;
  top: 0;
  left: -10%;
  width: 450px;
  height: 450px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #cfffff 50%, #60f1ea);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-uJ5Z7Xy0WU .row .blur-circle {
    display: none;
  }
}
.cid-uJ5Z7Xy0WU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ5Z7Xy0WU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ5Z7Xy0WU .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7Xy0WU .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uJ5Z7Xy0WU .row {
    padding: 0 24px;
  }
}
.cid-uJ5Z7Xy0WU .title-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-uJ5Z7Xy0WU .title-wrapper {
    margin-bottom: 42px;
  }
}
.cid-uJ5Z7Xy0WU .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ5Z7Xy0WU .text-wrapper {
  position: relative;
  z-index: 2;
}
.cid-uJ5Z7Xy0WU .text-wrapper .mbr-text {
  margin-bottom: 0;
  line-height: 1.8;
}
@media (max-width: 992px) {
  .cid-uJ5Z7Xy0WU .text-wrapper .mbr-text {
    text-align: left;
  }
}
.cid-uJ5Z7Xy0WU .mbr-section-title {
  color: #000000;
}
.cid-uJ5Z7Xy0WU .mbr-text {
  color: #000000;
  text-align: right;
}
.cid-uJ5Z7Xylqo {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #003f47;
}
.cid-uJ5Z7Xylqo .row {
  position: relative;
}
.cid-uJ5Z7Xylqo .row .blur-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 450px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #cfffff 50%, #60f1ea);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-uJ5Z7Xylqo .row .blur-circle {
    display: none;
  }
}
.cid-uJ5Z7Xylqo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ5Z7Xylqo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ5Z7Xylqo .row {
  justify-content: center;
}
.cid-uJ5Z7Xylqo .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7Xylqo .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uJ5Z7Xylqo .row {
    padding: 0 24px;
  }
}
.cid-uJ5Z7Xylqo .image-card {
  padding-right: 40px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7Xylqo .image-card {
    padding: 0 12px;
    margin-bottom: 3rem;
  }
}
.cid-uJ5Z7Xylqo .text-card {
  padding-left: 40px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7Xylqo .text-card {
    padding: 0 12px;
  }
}
.cid-uJ5Z7Xylqo .row.row-wrapper {
  padding: 64px;
  background-color: #f5fdfd;
  position: relative;
  z-index: 2;
  border-radius: 16px;
}
.cid-uJ5Z7Xylqo .row.row-wrapper::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: -2rem;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: 4px solid #f5fdfd;
  background-color: transparent;
  pointer-events: none;
}
@media (max-width: 768px) {
  .cid-uJ5Z7Xylqo .row.row-wrapper {
    padding: 32px;
  }
}
.cid-uJ5Z7Xylqo .row.row-wrapper .image-wrapper img {
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}
.cid-uJ5Z7Xylqo .row.row-wrapper .text-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .cid-uJ5Z7Xylqo .row.row-wrapper .text-wrapper {
    margin-bottom: 42px;
  }
}
.cid-uJ5Z7Xylqo .row.row-wrapper .text-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJ5Z7Xylqo .row.row-wrapper .text-wrapper .link-wrapper {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.cid-uJ5Z7Xylqo .row.row-wrapper .text-wrapper .link-wrapper:hover {
  opacity: 0.5;
}
.cid-uJ5Z7Xylqo .row.row-wrapper .text-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  text-decoration: underline;
}
.cid-uJ5Z7Xylqo .row.row-wrapper .text-wrapper .mbr-text {
  margin: 30px 0 20px 0;
}
.cid-uJ5Z7Xylqo .mbr-section-title {
  color: #000000;
}
.cid-uJ5Z7Xylqo .mbr-link {
  color: #000000;
}
.cid-uJ5Z7Xylqo .mbr-text {
  color: #000000;
}
.cid-uJ5Z7XzSdK {
  background-image: url("../images/photo-1598256989800-fe5f95da9-h_m9sfgm8i.jpg");
}
.cid-uJ5Z7XzSdK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ5Z7XzSdK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ5Z7XSGMY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #003f47;
}
.cid-uJ5Z7XSGMY .row {
  position: relative;
}
.cid-uJ5Z7XSGMY .row .blur-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 420px;
  border-radius: 100%;
  background-image: linear-gradient(90deg, #cfffff 50%, #60f1ea);
  filter: blur(64px) blur(64px);
  z-index: 1;
}
@media (max-width: 768px) {
  .cid-uJ5Z7XSGMY .row .blur-circle {
    display: none;
  }
}
.cid-uJ5Z7XSGMY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJ5Z7XSGMY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJ5Z7XSGMY .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XSGMY .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uJ5Z7XSGMY .row {
    padding: 0 24px;
  }
}
.cid-uJ5Z7XSGMY .title {
  display: flex;
  align-items: center;
}
.cid-uJ5Z7XSGMY .title-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 64px;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XSGMY .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uJ5Z7XSGMY .title-wrapper .mbr-section-title {
  margin-bottom: 10px;
}
.cid-uJ5Z7XSGMY .title-wrapper .mbr-text {
  margin-bottom: 20px;
}
.cid-uJ5Z7XSGMY .card {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-bottom: 2rem;
  padding: 16px;
  border-radius: 8px;
  background-color: #f5fdfd;
  z-index: 2;
}
.cid-uJ5Z7XSGMY .card .card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  background-color: #07beb8;
  border-radius: 100%;
  margin-right: 16px;
}
.cid-uJ5Z7XSGMY .card .card-number .mbr-number {
  margin-bottom: 0;
}
.cid-uJ5Z7XSGMY .card .mbr-card-title {
  margin-bottom: 0;
  width: 80%;
}
.cid-uJ5Z7XSGMY .mbr-section-title {
  color: #f4efe8;
}
.cid-uJ5Z7XSGMY .mbr-text {
  color: #f4efe8;
  text-align: right;
}
.cid-uJ5Z7XSGMY .mbr-number {
  color: #FFFFFF;
}
.cid-uJ5Z7XSGMY .mbr-card-title {
  color: #000000;
}
.cid-uJ5Z7XSGMY .mbr-section-title,
.cid-uJ5Z7XSGMY .mbr-section-btn {
  color: #FFFFFF;
}
.cid-uJ5Z7XTDu7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #003f47;
}
.cid-uJ5Z7XTDu7 .row {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XTDu7 .row {
    padding: 0 35px;
  }
}
@media (max-width: 425px) {
  .cid-uJ5Z7XTDu7 .row {
    padding: 0 24px;
  }
}
.cid-uJ5Z7XTDu7 .title-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XTDu7 .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uJ5Z7XTDu7 .title-wrapper img {
  display: inline-block;
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-bottom: 16px;
  border-radius: 6px;
}
.cid-uJ5Z7XTDu7 .title-wrapper .mbr-section-title {
  margin-bottom: 35px;
}
@media (max-width: 992px) {
  .cid-uJ5Z7XTDu7 .title-wrapper .mbr-section-title {
    margin-bottom: 26px;
  }
}
@media (max-width: 425px) {
  .cid-uJ5Z7XTDu7 .title-wrapper .mbr-section-title {
    color: #0aa3c2;
  }
}
.cid-uJ5Z7XTDu7 .title-wrapper .mbr-text {
  margin-bottom: 0;
}
@media (max-width: 425px) {
  .cid-uJ5Z7XTDu7 .title-wrapper .mbr-text {
    color: #0aa3c2;
  }
}
.cid-uJ5Z7XTDu7 .list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  color: #f4efe8;
}
@media (max-width: 425px) {
  .cid-uJ5Z7XTDu7 .list {
    justify-content: flex-start;
  }
}
.cid-uJ5Z7XTDu7 .list .mbr-list {
  margin: 5px 0 5px 30px;
}
@media (max-width: 425px) {
  .cid-uJ5Z7XTDu7 .list .mbr-list {
    margin: 5px 30px 5px 0;
  }
}
.cid-uJ5Z7XTDu7 .footer1 {
  overflow: hidden;
}
.cid-uJ5Z7XTDu7 .mbr-section-title {
  color: #111111;
}
.cid-uJ5Z7XTDu7 .mbr-text {
  color: #FFFFFF;
  text-align: left;
}
