.btn {
  border-width: 2px;
}
body {
  font-family: IBM Plex Mono;
}
.display-1 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.75rem;
}
.display-4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.7rem;
  line-height: 1.2;
}
.display-5 > .mbr-iconfont {
  font-size: 2.125rem;
}
.display-7 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 1.8rem;
  border-radius: 5px;
}
.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: #13e5c0 !important;
}
.bg-success {
  background-color: #c6ffe0 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ffb18a !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #13e5c0 !important;
  border-color: #13e5c0 !important;
  color: #19303d !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0c957d !important;
  border-color: #0c957d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #19303d !important;
  background-color: #0c957d !important;
  border-color: #0c957d !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  background-color: #19303d !important;
  border-color: #19303d !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #19303d !important;
  border-color: #19303d !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.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-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  background-color: #19303d !important;
  border-color: #19303d !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  background-color: #19303d !important;
  border-color: #19303d !important;
}
.btn-success,
.btn-success:active {
  background-color: #c6ffe0 !important;
  border-color: #c6ffe0 !important;
  color: #19303d !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #6fffb1 !important;
  border-color: #6fffb1 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #19303d !important;
  background-color: #6fffb1 !important;
  border-color: #6fffb1 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  background-color: #19303d !important;
  border-color: #19303d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #19303d !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #19303d !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  background-color: #19303d !important;
  border-color: #19303d !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffb18a !important;
  border-color: #ffb18a !important;
  color: #19303d !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff7733 !important;
  border-color: #ff7733 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #19303d !important;
  background-color: #ff7733 !important;
  border-color: #ff7733 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  background-color: #19303d !important;
  border-color: #19303d !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #19303d !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !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: #19303d !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  background-color: #19303d !important;
  border-color: #19303d !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
}
.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-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  background-color: #19303d !important;
  border-color: #19303d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border: 2px dashed #13e5c0;
  color: #13e5c0;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background-color: #13e5c0 !important;
  border-color: #13e5c0 !important;
  box-shadow: none !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #13e5c0 !important;
  border-color: #13e5c0 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border: 2px dashed #19303d;
  color: #19303d;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff !important;
  background-color: #19303d !important;
  border-color: #19303d !important;
  box-shadow: none !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #19303d !important;
  border-color: #19303d !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border: 2px dashed #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  box-shadow: none !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border: 2px dashed #c6ffe0;
  color: #c6ffe0;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #00c65a !important;
  background-color: #c6ffe0 !important;
  border-color: #c6ffe0 !important;
  box-shadow: none !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #00c65a !important;
  background-color: #c6ffe0 !important;
  border-color: #c6ffe0 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border: 2px dashed #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  box-shadow: none !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border: 2px dashed #ffb18a;
  color: #ffb18a;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff !important;
  background-color: #ffb18a !important;
  border-color: #ffb18a !important;
  box-shadow: none !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffb18a !important;
  border-color: #ffb18a !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border: 2px dashed #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !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: 2px dashed #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !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: #13e5c0 !important;
}
.text-secondary {
  color: #19303d !important;
}
.text-success {
  color: #c6ffe0 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ffb18a !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0b8771 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #60ffa9 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff6d24 !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;
}
.nav-tabs .nav-link.active {
  color: #13e5c0;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ffb18a;
}
.mbr-gallery-filter li.active .btn {
  background-color: #13e5c0;
  border-color: #13e5c0;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #13e5c0;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c9fbf2;
}
.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*/
.form-control {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #13e5c0 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #13e5c0;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #13e5c0;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #13e5c0;
}
.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: #13e5c0;
  border-bottom-color: #13e5c0;
}
.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: #13e5c0 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #19303d !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='%2313e5c0' %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;
}
.cid-tlVfQZIvOf {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tlVfQZIvOf nav.navbar {
  position: fixed;
}
.cid-tlVfQZIvOf .nav-link {
  font-weight: 600;
  position: relative;
}
.cid-tlVfQZIvOf .nav-link:hover {
  color: #13e5c0 !important;
}
.cid-tlVfQZIvOf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  padding-right: 2rem !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tlVfQZIvOf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tlVfQZIvOf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tlVfQZIvOf .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-tlVfQZIvOf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tlVfQZIvOf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tlVfQZIvOf .dropdown-item:hover,
.cid-tlVfQZIvOf .dropdown-item:focus {
  background: #13e5c0 !important;
  color: white !important;
}
.cid-tlVfQZIvOf .dropdown-item:hover span {
  color: white;
}
.cid-tlVfQZIvOf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tlVfQZIvOf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tlVfQZIvOf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tlVfQZIvOf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tlVfQZIvOf .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tlVfQZIvOf .container {
    flex-wrap: nowrap;
  }
}
.cid-tlVfQZIvOf .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tlVfQZIvOf .dropdown-menu,
.cid-tlVfQZIvOf .navbar.opened {
  background: #273c48 !important;
}
.cid-tlVfQZIvOf .nav-item:focus,
.cid-tlVfQZIvOf .nav-link:focus {
  outline: none;
}
.cid-tlVfQZIvOf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tlVfQZIvOf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlVfQZIvOf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tlVfQZIvOf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tlVfQZIvOf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tlVfQZIvOf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tlVfQZIvOf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #273c48;
}
.cid-tlVfQZIvOf .navbar.opened {
  transition: all 0.3s;
}
.cid-tlVfQZIvOf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tlVfQZIvOf .navbar .navbar-logo img {
  width: auto;
}
.cid-tlVfQZIvOf .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tlVfQZIvOf .navbar.collapsed {
  justify-content: center;
}
.cid-tlVfQZIvOf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tlVfQZIvOf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tlVfQZIvOf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tlVfQZIvOf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tlVfQZIvOf .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-tlVfQZIvOf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tlVfQZIvOf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tlVfQZIvOf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tlVfQZIvOf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tlVfQZIvOf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tlVfQZIvOf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tlVfQZIvOf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tlVfQZIvOf .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-tlVfQZIvOf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tlVfQZIvOf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tlVfQZIvOf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tlVfQZIvOf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tlVfQZIvOf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tlVfQZIvOf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tlVfQZIvOf .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tlVfQZIvOf .navbar.navbar-short {
  min-height: 60px;
}
.cid-tlVfQZIvOf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tlVfQZIvOf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tlVfQZIvOf .dropdown-item.active,
.cid-tlVfQZIvOf .dropdown-item:active {
  background-color: transparent;
}
.cid-tlVfQZIvOf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tlVfQZIvOf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tlVfQZIvOf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tlVfQZIvOf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #273c48;
}
.cid-tlVfQZIvOf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tlVfQZIvOf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlVfQZIvOf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tlVfQZIvOf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tlVfQZIvOf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tlVfQZIvOf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tlVfQZIvOf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tlVfQZIvOf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlVfQZIvOf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tlVfQZIvOf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tlVfQZIvOf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlVfQZIvOf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tlVfQZIvOf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tlVfQZIvOf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tlVfQZIvOf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tlVfQZIvOf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tlVfQZIvOf .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-tlVfQZIvOf .navbar {
    height: 70px;
  }
  .cid-tlVfQZIvOf .navbar.opened {
    height: auto;
  }
  .cid-tlVfQZIvOf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tlVfQKJxvW {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-color: #3c505b;
}
.cid-tlVfQKJxvW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tlVfQKJxvW .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-tlVfQKJxvW .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 12px;
  background: #13e5c0;
  z-index: -1;
}
.cid-tlVfQKJxvW img {
  border-radius: 1rem;
}
.cid-tlVfQKJxvW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tlVfQKJxvW .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tlVfQKJxvW .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tlVfQKJxvW .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tlVfQKJxvW .mbr-section-title {
  color: #ffffff;
}
.cid-tlVfQKJxvW .mbr-section-subtitle,
.cid-tlVfQKJxvW .subtitle-wrap {
  color: #ffffff;
}
.cid-tlVfQKJxvW .mbr-text,
.cid-tlVfQKJxvW .mbr-section-btn {
  color: #ffffff;
}
.cid-uktwsGf7Dp {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uktwsGf7Dp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uktwsGf7Dp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uktwsGf7Dp .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #13e5c0;
  margin-bottom: 2rem;
}
.cid-uktwsGf7Dp .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 5px;
  padding: 1rem 2rem;
  background: #f4fcf9;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  border: 2px dashed currentColor;
}
@media (max-width: 767px) {
  .cid-uktwsGf7Dp .card-wrapper {
    padding: 1rem;
  }
}
.cid-uktwsGf7Dp .card-title,
.cid-uktwsGf7Dp .card-wrapper {
  color: #19303d;
}
.cid-tlW2z4qp42 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f7f9fc;
}
.cid-tlW2z4qp42 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tlW2z4qp42 h1 a {
  width: fit-content;
  position: relative;
  font-weight: 600;
  display: inline-block;
  z-index: 2;
}
.cid-tlW2z4qp42 h1 a:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 22px;
  background: #13e5c0;
  z-index: -1;
}
.cid-tlW2z4qp42 h1 a:hover {
  color: inherit !important;
}
.cid-tlW2z4qp42 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tlW2z4qp42 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tlW2z4qp42 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tlW2z4qp42 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tlW2z4qp42 .mbr-section-title {
  color: #19303d;
  text-align: center;
}
.cid-tlW2z4qp42 .mbr-section-subtitle,
.cid-tlW2z4qp42 .subtitle-wrap {
  color: #19303d;
}
.cid-tlW2z4qp42 .mbr-text,
.cid-tlW2z4qp42 .mbr-section-btn {
  color: #19303d;
  text-align: center;
}
.cid-tlW2wdrWId {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tlW2wdrWId .mbr-fallback-image.disabled {
  display: none;
}
.cid-tlW2wdrWId .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tlW2wdrWId .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #13e5c0;
  margin-bottom: 2rem;
}
.cid-tlW2wdrWId .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 10px;
  padding: 2rem;
  background: #132835;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tlW2wdrWId .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-tlW2wdrWId .card-title,
.cid-tlW2wdrWId .card-box {
  color: #ffffff;
}
.cid-tlW2wdrWId .card-text {
  color: #ffffff;
}
.cid-ukpDXLaAzo {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-ukpDXLaAzo .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukpDXLaAzo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukpDXLaAzo .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #13e5c0;
  margin-bottom: 2rem;
}
.cid-ukpDXLaAzo .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 10px;
  padding: 2rem;
  background: #132835;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-ukpDXLaAzo .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-ukpDXLaAzo .card-title,
.cid-ukpDXLaAzo .card-box {
  color: #ffffff;
}
.cid-ukpDXLaAzo .card-text {
  color: #ffffff;
}
.cid-uktZSk6HTn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f7f9fc;
}
.cid-uktZSk6HTn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uktZSk6HTn h1 a {
  width: fit-content;
  position: relative;
  font-weight: 600;
  display: inline-block;
  z-index: 2;
}
.cid-uktZSk6HTn h1 a:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 22px;
  background: #13e5c0;
  z-index: -1;
}
.cid-uktZSk6HTn h1 a:hover {
  color: inherit !important;
}
.cid-uktZSk6HTn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uktZSk6HTn .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uktZSk6HTn .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uktZSk6HTn .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uktZSk6HTn .mbr-section-title {
  color: #19303d;
  text-align: center;
}
.cid-uktZSk6HTn .mbr-section-subtitle,
.cid-uktZSk6HTn .subtitle-wrap {
  color: #19303d;
}
.cid-uktZSk6HTn .mbr-text,
.cid-uktZSk6HTn .mbr-section-btn {
  color: #19303d;
  text-align: center;
}
.cid-uktZud5iUy {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-uktZud5iUy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uktZud5iUy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uktZud5iUy .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #13e5c0;
  margin-bottom: 2rem;
}
.cid-uktZud5iUy .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 10px;
  padding: 2rem;
  background: #15a289;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-uktZud5iUy .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-uktZud5iUy .card-title,
.cid-uktZud5iUy .card-box {
  color: #ffffff;
}
.cid-uktZud5iUy .card-text {
  color: #ffffff;
}
.cid-tlW2Bt4rqP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #19303d;
}
.cid-tlW2Bt4rqP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tlW2Bt4rqP .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-tlW2Bt4rqP .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 9px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-tlW2Bt4rqP .btn:hover,
.cid-tlW2Bt4rqP .btn:focus {
  background: white !important;
  color: #19303d !important;
  border-color: white !important;
}
.cid-tlW2Bt4rqP img {
  border-radius: 1rem;
}
.cid-tlW2Bt4rqP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tlW2Bt4rqP .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tlW2Bt4rqP .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tlW2Bt4rqP .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tlW2Bt4rqP .mbr-section-title {
  color: #ffffff;
}
.cid-tlW2Bt4rqP .mbr-section-subtitle,
.cid-tlW2Bt4rqP .subtitle-wrap {
  color: #19303d;
}
.cid-tlW2Bt4rqP .mbr-text,
.cid-tlW2Bt4rqP .mbr-section-btn {
  color: #ffffff;
}
.cid-ukqaqiTCle {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("");
}
.cid-ukqaqiTCle .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukqaqiTCle .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-ukqaqiTCle .container {
    padding: 0 15px;
  }
}
.cid-ukqaqiTCle .row {
  justify-content: center;
}
.cid-ukqaqiTCle .content-wrapper {
  padding: 100px 60px;
  border: 1px solid #373d52;
  position: relative;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-ukqaqiTCle .content-wrapper {
    padding: 80px 40px;
    display: block;
  }
}
@media (max-width: 768px) {
  .cid-ukqaqiTCle .content-wrapper {
    padding: 80px 20px;
  }
}
.cid-ukqaqiTCle .content-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ukqaqiTCle .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background-color: #232b45;
  opacity: .5;
  z-index: 1;
  pointer-events: none;
}
.cid-ukqaqiTCle .content-wrapper .title-wrapper {
  max-width: 300px;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-ukqaqiTCle .content-wrapper .title-wrapper {
    max-width: 100%;
  }
}
.cid-ukqaqiTCle .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ukqaqiTCle .content-wrapper .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ukqaqiTCle .content-wrapper .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ukqaqiTCle .content-wrapper .title-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-ukqaqiTCle .content-wrapper .lists-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 60%;
}
@media (max-width: 992px) {
  .cid-ukqaqiTCle .content-wrapper .lists-wrapper {
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .cid-ukqaqiTCle .content-wrapper .lists-wrapper {
    display: block;
  }
}
@media (max-width: 768px) {
  .cid-ukqaqiTCle .content-wrapper .lists-wrapper .list-wrap {
    margin-bottom: 20px;
  }
}
.cid-ukqaqiTCle .content-wrapper .lists-wrapper .list-wrap .list {
  margin-bottom: 0;
  list-style-type: none;
  padding-left: 0;
  padding-left: 36px;
}
.cid-ukqaqiTCle .content-wrapper .lists-wrapper .list-wrap .list .item-wrap {
  margin-bottom: 20px;
  position: relative;
}
.cid-ukqaqiTCle .content-wrapper .lists-wrapper .list-wrap .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-ukqaqiTCle .content-wrapper .lists-wrapper .list-wrap .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  margin-left: -36px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f2ac2b;
  color: #171827;
  font-size: 16px;
}
.cid-ukqaqiTCle .mbr-section-title {
  color: #ffffff;
}
.cid-ukqaqiTCle .mbr-text {
  color: #ffffff;
}
.cid-ukqaqiTCle .list {
  color: #ffffff;
}
.cid-ukBr9wZsqm {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #d4ceff;
}
.cid-ukBr9wZsqm .decor-wrap {
  position: absolute;
  pointer-events: none;
  right: 0;
  width: 85%;
  height: 140%;
  border-radius: 100% 0 0 100%;
  background-color: #273c48;
}
@media (max-width: 1500px) {
  .cid-ukBr9wZsqm .decor-wrap {
    width: 90%;
  }
}
@media (max-width: 992px) {
  .cid-ukBr9wZsqm .decor-wrap {
    width: 100%;
    border-radius: 0;
  }
}
.cid-ukBr9wZsqm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukBr9wZsqm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukBr9wZsqm .title-wrapper {
  position: relative;
  z-index: 1;
}
.cid-ukBr9wZsqm .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-ukBr9wZsqm .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-ukBr9wZsqm .items-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 64px;
}
@media (max-width: 992px) {
  .cid-ukBr9wZsqm .items-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-ukBr9wZsqm .item {
    margin-bottom: 46px;
  }
}
.cid-ukBr9wZsqm .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 22px;
}
.cid-ukBr9wZsqm .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 64px;
}
.cid-ukBr9wZsqm .item .item-wrapper .card-box .item-title {
  margin-bottom: 16px;
}
.cid-ukBr9wZsqm .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-ukBr9wZsqm .item .card_1 .card-box .icon-wrapper .mbr-iconfont {
  color: #ffa7f1;
}
.cid-ukBr9wZsqm .item .card_2 .card-box .icon-wrapper .mbr-iconfont {
  color: #5cd070;
}
.cid-ukBr9wZsqm .item .card_3 .card-box .icon-wrapper .mbr-iconfont {
  color: #a3c2ff;
}
.cid-ukBr9wZsqm .mbr-section-title {
  color: #c6ffe0;
}
.cid-ukBr9wZsqm .item-title {
  color: #212529;
}
.cid-ukBr9wZsqm .item-text {
  color: #51565c;
}
.cid-ukBr9wZsqm .item-text,
.cid-ukBr9wZsqm .icon-wrapper {
  color: #f4fcf9;
}
.cid-tlW348T5ho {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tlW348T5ho .title__wrap {
  margin-bottom: 30px;
}
.cid-tlW348T5ho .title__block {
  margin-bottom: 10px;
}
.cid-tlW348T5ho .mbr-section-title {
  margin-bottom: 0;
  color: #132835;
}
.cid-tlW348T5ho .mbr-section-subtitle {
  opacity: 0.8;
  margin-bottom: 15px;
  color: #132835;
}
.cid-tlW348T5ho .icons {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  background: #13e5c0;
  color: #19303d;
  border-radius: 50%;
  font-size: 1rem;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.cid-tlW348T5ho .image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 320px;
  margin-bottom: 30px;
}
.cid-tlW348T5ho .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px dashed #19303d;
}
.cid-tlW348T5ho .text__block {
  position: absolute;
  padding: 20px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-image: linear-gradient(to top, rgba(23, 22, 26, 0.6), transparent);
}
.cid-tlW348T5ho .text__title,
.cid-tlW348T5ho .text__descr {
  margin-bottom: 0;
}
.cid-tlW2txJ5ir {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #19303d;
}
.cid-tlW2txJ5ir .mbr-fallback-image.disabled {
  display: none;
}
.cid-tlW2txJ5ir .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tlW2txJ5ir .card-box {
  max-width: 700px;
}
.cid-tlW2txJ5ir .mbr-iconfont {
  display: block;
  font-size: 10rem;
  color: #13e5c0;
  padding: 0rem 8rem;
  margin-right: 2rem;
}
@media (max-width: 992px) {
  .cid-tlW2txJ5ir .mbr-iconfont {
    padding: 2rem 2rem;
    font-size: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-tlW2txJ5ir .mbr-iconfont {
    margin-right: 0rem;
  }
}
.cid-tlW2txJ5ir .card-wrapper {
  min-height: 230px;
  transition: all 0.3s;
  border-radius: 5px;
  padding: 1rem 2rem;
  background: #ffffff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 2rem;
  border: 2px dashed currentColor;
}
@media (max-width: 767px) {
  .cid-tlW2txJ5ir .card-wrapper {
    flex-direction: column;
    padding: 1rem 1rem;
    padding-bottom: 2rem;
  }
}
.cid-tlW2txJ5ir .row {
  justify-content: center;
}
.cid-tlW2txJ5ir .mbr-section-title {
  color: #ffffff;
}
.cid-tlW2txJ5ir .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-tlW2txJ5ir .card-title,
.cid-tlW2txJ5ir .iconfont-wrapper {
  color: #e43f3f;
}
.cid-tlW2txJ5ir .card-title,
.cid-tlW2txJ5ir .iconfont-wrapper,
.cid-tlW2txJ5ir .card-wrapper {
  color: #19303d;
}
.cid-tlW2txJ5ir .card-text {
  color: #353535;
}
.cid-uktaumF61C {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #273c48;
}
.cid-uktaumF61C .mbr-fallback-image.disabled {
  display: none;
}
.cid-uktaumF61C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uktaumF61C .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uktaumF61C .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uktaumF61C .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uktaumF61C .mbr-section-title {
  color: #f7f9fc;
}
.cid-uktaumF61C .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uktaumF61C .cards-row {
  margin-top: 5px;
  row-gap: 30px;
}
.cid-uktaumF61C .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uktaumF61C .card-wrapper {
  display: flex;
  width: calc(100% - 24px);
  padding: 52px 30px 52px 40px;
  margin: 0 auto;
  border: 2px solid #132835;
  box-shadow: 4px 4px 0 #132835;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uktaumF61C .card-wrapper {
    padding: 40px 30px 40px 40px;
  }
}
@media (max-width: 991px) {
  .cid-uktaumF61C .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .cid-uktaumF61C .card-wrapper {
    width: calc(100% - 14px);
    flex-direction: column;
    padding: 30px 25px 25px;
  }
}
@media (min-width: 992px) {
  .cid-uktaumF61C .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uktaumF61C .iconfont-wrapper {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .cid-uktaumF61C .iconfont-wrapper {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.cid-uktaumF61C .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 100px;
  color: #13e5c0;
}
.cid-uktaumF61C .content-wrap {
  margin-top: 10px;
}
@media (max-width: 1199px) {
  .cid-uktaumF61C .content-wrap {
    margin-top: 0;
  }
}
.cid-uktaumF61C .card-title {
  color: #131313;
}
.cid-uktaumF61C .card-text {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uktaumF61C .card-text {
    margin-top: 15px;
  }
}
.cid-uktaumF61C .card-link {
  margin-top: 24px;
  color: #131313;
}
@media (max-width: 1199px) {
  .cid-uktaumF61C .card-link {
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uktaumF61C .card-link {
    margin-top: 15px;
  }
}
.cid-uktaumF61C .card-link a.text-primary:hover {
  color: #131313 !important;
}
.cid-ukA8ow0R5I {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-ukA8ow0R5I .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukA8ow0R5I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukA8ow0R5I .title-wrapper {
  margin-bottom: 54px;
}
@media (max-width: 992px) {
  .cid-ukA8ow0R5I .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-ukA8ow0R5I .title-wrapper .desc-wrapper .mbr-desc {
  display: inline-block;
  background-color: #f8e7d2;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.cid-ukA8ow0R5I .title-wrapper .title-wrap .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .cid-ukA8ow0R5I .title-wrapper .title-wrap .mbr-section-title {
    width: 100%;
  }
}
.cid-ukA8ow0R5I .title-wrapper .title-wrap .mbr-section-title span {
  color: #ed463f;
}
.cid-ukA8ow0R5I .cont-wrap {
  margin: 0 -10px;
}
.cid-ukA8ow0R5I .cont-wrap .card {
  padding: 0 10px;
}
.cid-ukA8ow0R5I .content-wrap {
  padding: 10px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-ukA8ow0R5I .content-wrap {
    padding: 30px 20px;
    display: block;
    margin-bottom: 20px;
  }
}
.cid-ukA8ow0R5I .content-wrap .image-wrapper {
  width: 50%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-ukA8ow0R5I .content-wrap .image-wrapper {
    width: 100%;
    height: auto;
  }
}
.cid-ukA8ow0R5I .content-wrap .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-ukA8ow0R5I .content-wrap .image-wrapper img {
    height: 350px;
  }
}
.cid-ukA8ow0R5I .content-wrap .text-wrapper {
  width: 50%;
  padding-left: 30px;
  padding-top: 20px;
}
@media (max-width: 992px) {
  .cid-ukA8ow0R5I .content-wrap .text-wrapper {
    width: 100%;
    padding-left: 0;
  }
}
.cid-ukA8ow0R5I .content-wrap .text-wrapper .mbr-text {
  margin-bottom: 0;
  padding-right: 20px;
}
@media (max-width: 992px) {
  .cid-ukA8ow0R5I .content-wrap .text-wrapper .mbr-text {
    padding-right: 0;
  }
}
.cid-ukA8ow0R5I .content-wrap .text-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-ukA8ow0R5I .content-wrap .text-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-ukA8ow0R5I .items-wrapper .item .item-wrapper {
  margin-bottom: 20px;
  background-color: #c6ffe0;
  padding: 30px;
}
@media (max-width: 992px) {
  .cid-ukA8ow0R5I .items-wrapper .item .item-wrapper {
    padding: 20px;
  }
}
.cid-ukA8ow0R5I .items-wrapper .item .item-wrapper .card-box .item-title {
  margin-bottom: 8px;
}
.cid-ukA8ow0R5I .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-ukA8ow0R5I .mbr-section-title {
  color: #404349;
}
.cid-ukA8ow0R5I .mbr-desc {
  color: #b19a7c;
}
.cid-ukA8ow0R5I .mbr-text {
  color: #404349;
}
.cid-ukA8ow0R5I .item-title {
  color: #3c505b;
}
.cid-ukA8ow0R5I .item-text {
  color: #404349;
}
.cid-ukA8ow0R5I .mbr-section-title,
.cid-ukA8ow0R5I .title-wrap {
  color: #132835;
  text-align: left;
}
.cid-ukA8ow0R5I .mbr-desc,
.cid-ukA8ow0R5I .desc-wrapper {
  color: #e43f3f;
}
.cid-ukEI0slgVu {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #19303d;
}
.cid-ukEI0slgVu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEI0slgVu h1 a {
  width: fit-content;
  position: relative;
  font-weight: 600;
  display: inline-block;
  z-index: 2;
}
.cid-ukEI0slgVu h1 a:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 22px;
  background: #13e5c0;
  z-index: -1;
}
.cid-ukEI0slgVu h1 a:hover {
  color: inherit !important;
}
.cid-ukEI0slgVu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukEI0slgVu .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ukEI0slgVu .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ukEI0slgVu .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ukEI0slgVu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-ukEI0slgVu .mbr-section-subtitle,
.cid-ukEI0slgVu .subtitle-wrap {
  color: #19303d;
}
.cid-ukEI0slgVu .mbr-text,
.cid-ukEI0slgVu .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-ukEH4lgYK9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #11bd9f;
}
.cid-ukEH4lgYK9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEH4lgYK9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukEH4lgYK9 .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ukEH4lgYK9 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ukEH4lgYK9 .container {
    padding: 0 30px;
  }
}
.cid-ukEH4lgYK9 .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #dbf5d1;
}
@media (max-width: 992px) {
  .cid-ukEH4lgYK9 .items-wrapper {
    display: block;
  }
}
.cid-ukEH4lgYK9 .items-wrapper .item .item-wrapper {
  padding: 0 60px 0 40px;
  border-left: 1px solid #dbf5d1;
  margin-bottom: 60px;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ukEH4lgYK9 .items-wrapper .item .item-wrapper {
    padding: 0 20px;
    margin-bottom: 40px;
  }
}
.cid-ukEH4lgYK9 .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ukEH4lgYK9 .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  position: relative;
}
.cid-ukEH4lgYK9 .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap .circle-wrap {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #22654e;
}
.cid-ukEH4lgYK9 .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #c7fcb5;
  opacity: .6;
  border-radius: 100%;
  z-index: 1;
}
.cid-ukEH4lgYK9 .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  backdrop-filter: blur(5px);
  border-radius: 100%;
}
.cid-ukEH4lgYK9 .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 30px;
  color: #144031;
}
.cid-ukEH4lgYK9 .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-ukEH4lgYK9 .item-text {
  color: #144031;
}
.cid-ukEH4lgYK9 .item-text,
.cid-ukEH4lgYK9 .icon-wrapper {
  color: #132835;
}
.cid-ukEJCtK6VR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #11bd9f;
}
.cid-ukEJCtK6VR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEJCtK6VR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukEJCtK6VR .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ukEJCtK6VR .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ukEJCtK6VR .container {
    padding: 0 30px;
  }
}
.cid-ukEJCtK6VR .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #dbf5d1;
}
@media (max-width: 992px) {
  .cid-ukEJCtK6VR .items-wrapper {
    display: block;
  }
}
.cid-ukEJCtK6VR .items-wrapper .item .item-wrapper {
  padding: 0 60px 0 40px;
  border-left: 1px solid #dbf5d1;
  margin-bottom: 60px;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ukEJCtK6VR .items-wrapper .item .item-wrapper {
    padding: 0 20px;
    margin-bottom: 40px;
  }
}
.cid-ukEJCtK6VR .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ukEJCtK6VR .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  position: relative;
}
.cid-ukEJCtK6VR .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap .circle-wrap {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #22654e;
}
.cid-ukEJCtK6VR .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #c7fcb5;
  opacity: .6;
  border-radius: 100%;
  z-index: 1;
}
.cid-ukEJCtK6VR .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  backdrop-filter: blur(5px);
  border-radius: 100%;
}
.cid-ukEJCtK6VR .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 30px;
  color: #144031;
}
.cid-ukEJCtK6VR .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-ukEJCtK6VR .item-text {
  color: #144031;
}
.cid-ukEJCtK6VR .item-text,
.cid-ukEJCtK6VR .icon-wrapper {
  color: #132835;
}
.cid-ukEJDo5drx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #11bd9f;
}
.cid-ukEJDo5drx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEJDo5drx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukEJDo5drx .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ukEJDo5drx .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ukEJDo5drx .container {
    padding: 0 30px;
  }
}
.cid-ukEJDo5drx .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #dbf5d1;
}
@media (max-width: 992px) {
  .cid-ukEJDo5drx .items-wrapper {
    display: block;
  }
}
.cid-ukEJDo5drx .items-wrapper .item .item-wrapper {
  padding: 0 60px 0 40px;
  border-left: 1px solid #dbf5d1;
  margin-bottom: 60px;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ukEJDo5drx .items-wrapper .item .item-wrapper {
    padding: 0 20px;
    margin-bottom: 40px;
  }
}
.cid-ukEJDo5drx .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ukEJDo5drx .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  position: relative;
}
.cid-ukEJDo5drx .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap .circle-wrap {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #22654e;
}
.cid-ukEJDo5drx .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #c7fcb5;
  opacity: .6;
  border-radius: 100%;
  z-index: 1;
}
.cid-ukEJDo5drx .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  backdrop-filter: blur(5px);
  border-radius: 100%;
}
.cid-ukEJDo5drx .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 30px;
  color: #144031;
}
.cid-ukEJDo5drx .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-ukEJDo5drx .item-text {
  color: #144031;
}
.cid-ukEJDo5drx .item-text,
.cid-ukEJDo5drx .icon-wrapper {
  color: #132835;
}
.cid-ukEJEfih0I {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #11bd9f;
}
.cid-ukEJEfih0I .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukEJEfih0I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukEJEfih0I .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ukEJEfih0I .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ukEJEfih0I .container {
    padding: 0 30px;
  }
}
.cid-ukEJEfih0I .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #dbf5d1;
}
@media (max-width: 992px) {
  .cid-ukEJEfih0I .items-wrapper {
    display: block;
  }
}
.cid-ukEJEfih0I .items-wrapper .item .item-wrapper {
  padding: 0 60px 0 40px;
  border-left: 1px solid #dbf5d1;
  margin-bottom: 60px;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ukEJEfih0I .items-wrapper .item .item-wrapper {
    padding: 0 20px;
    margin-bottom: 40px;
  }
}
.cid-ukEJEfih0I .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ukEJEfih0I .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  position: relative;
}
.cid-ukEJEfih0I .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap .circle-wrap {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #22654e;
}
.cid-ukEJEfih0I .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #c7fcb5;
  opacity: .6;
  border-radius: 100%;
  z-index: 1;
}
.cid-ukEJEfih0I .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  backdrop-filter: blur(5px);
  border-radius: 100%;
}
.cid-ukEJEfih0I .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 30px;
  color: #144031;
}
.cid-ukEJEfih0I .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-ukEJEfih0I .item-text {
  color: #144031;
}
.cid-ukEJEfih0I .item-text,
.cid-ukEJEfih0I .icon-wrapper {
  color: #132835;
}
.cid-ukETfKqkug {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #11bd9f;
}
.cid-ukETfKqkug .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukETfKqkug .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukETfKqkug .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-ukETfKqkug .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-ukETfKqkug .container {
    padding: 0 30px;
  }
}
.cid-ukETfKqkug .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #dbf5d1;
}
@media (max-width: 992px) {
  .cid-ukETfKqkug .items-wrapper {
    display: block;
  }
}
.cid-ukETfKqkug .items-wrapper .item .item-wrapper {
  padding: 0 60px 0 40px;
  border-left: 1px solid #dbf5d1;
  margin-bottom: 60px;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-ukETfKqkug .items-wrapper .item .item-wrapper {
    padding: 0 20px;
    margin-bottom: 40px;
  }
}
.cid-ukETfKqkug .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 30px;
}
.cid-ukETfKqkug .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  position: relative;
}
.cid-ukETfKqkug .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap .circle-wrap {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #22654e;
}
.cid-ukETfKqkug .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: #c7fcb5;
  opacity: .6;
  border-radius: 100%;
  z-index: 1;
}
.cid-ukETfKqkug .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  backdrop-filter: blur(5px);
  border-radius: 100%;
}
.cid-ukETfKqkug .items-wrapper .item .item-wrapper .card-box .icon-wrapper .icon-wrap .mbr-iconfont {
  position: relative;
  z-index: 1;
  font-size: 30px;
  color: #144031;
}
.cid-ukETfKqkug .items-wrapper .item .item-wrapper .card-box .item-text {
  margin-bottom: 0;
}
.cid-ukETfKqkug .item-text {
  color: #144031;
}
.cid-ukETfKqkug .item-text,
.cid-ukETfKqkug .icon-wrapper {
  color: #132835;
}
.cid-tlW2IV5WYv {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #273c48;
}
.cid-tlW2IV5WYv .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tlW2IV5WYv .img-item,
.cid-tlW2IV5WYv img {
  height: 100%;
  object-fit: cover;
}
.cid-tlW2IV5WYv .img-col {
  padding: 0;
}
.cid-tlW2IV5WYv .col-auto {
  width: 100%;
}
.cid-tlW2IV5WYv .row {
  margin: 0;
}
.cid-tlW2IV5WYv .wrapper {
  background: #19303d;
  padding: 5rem 10rem;
  border-radius: 10px;
  margin: 0 1rem;
}
@media (max-width: 992px) {
  .cid-tlW2IV5WYv .wrapper {
    padding: 5rem 6rem;
  }
}
@media (max-width: 767px) {
  .cid-tlW2IV5WYv .wrapper {
    padding: 3rem 1rem;
    margin: 0 1rem;
  }
}
.cid-tlW2IV5WYv .btn {
  margin-top: 2rem;
}
.cid-tlW2IV5WYv .btn:hover,
.cid-tlW2IV5WYv .btn:focus {
  background: white !important;
  color: #19303d !important;
  border-color: white !important;
}
.cid-tlW2IV5WYv .content {
  max-width: 500px;
  margin: 5rem auto;
}
.cid-tlW2IV5WYv .form-control,
.cid-tlW2IV5WYv .field-input {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  background-color: #273c48;
  border-color: #3c505b !important;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tlW2IV5WYv .form-control::-webkit-input-placeholder,
.cid-tlW2IV5WYv .field-input::-webkit-input-placeholder,
.cid-tlW2IV5WYv .form-control::-webkit-input-placeholder,
.cid-tlW2IV5WYv .field-input::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-tlW2IV5WYv .form-control:-moz-placeholder,
.cid-tlW2IV5WYv .field-input:-moz-placeholder,
.cid-tlW2IV5WYv .form-control:-moz-placeholder,
.cid-tlW2IV5WYv .field-input:-moz-placeholder {
  color: #bbbbbb;
}
.cid-tlW2IV5WYv .form-control:hover,
.cid-tlW2IV5WYv .field-input:hover,
.cid-tlW2IV5WYv .form-control:focus,
.cid-tlW2IV5WYv .field-input:focus {
  background-color: #273c48;
  border-color: #3c505b !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tlW2IV5WYv .form-control:hover::-webkit-input-placeholder,
.cid-tlW2IV5WYv .field-input:hover::-webkit-input-placeholder,
.cid-tlW2IV5WYv .form-control:focus::-webkit-input-placeholder,
.cid-tlW2IV5WYv .field-input:focus::-webkit-input-placeholder,
.cid-tlW2IV5WYv .form-control:hover::-webkit-input-placeholder,
.cid-tlW2IV5WYv .field-input:hover::-webkit-input-placeholder,
.cid-tlW2IV5WYv .form-control:focus::-webkit-input-placeholder,
.cid-tlW2IV5WYv .field-input:focus::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-tlW2IV5WYv .form-control:hover:-moz-placeholder,
.cid-tlW2IV5WYv .field-input:hover:-moz-placeholder,
.cid-tlW2IV5WYv .form-control:focus:-moz-placeholder,
.cid-tlW2IV5WYv .field-input:focus:-moz-placeholder,
.cid-tlW2IV5WYv .form-control:hover:-moz-placeholder,
.cid-tlW2IV5WYv .field-input:hover:-moz-placeholder,
.cid-tlW2IV5WYv .form-control:focus:-moz-placeholder,
.cid-tlW2IV5WYv .field-input:focus:-moz-placeholder {
  color: #bbbbbb;
}
.cid-tlW2IV5WYv .jq-number__spin:hover,
.cid-tlW2IV5WYv .jq-number__spin:focus {
  background-color: #273c48;
  border-color: #3c505b;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tlW2IV5WYv .jq-number__spin {
  background-color: #273c48;
  border-color: #3c505b;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tlW2IV5WYv .jq-selectbox li,
.cid-tlW2IV5WYv .jq-selectbox li {
  background-color: #273c48;
  color: #ffffff;
}
.cid-tlW2IV5WYv .jq-selectbox li:hover,
.cid-tlW2IV5WYv .jq-selectbox li.selected {
  background-color: #273c48;
  color: #ffffff;
}
.cid-tlW2IV5WYv .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tlW2IV5WYv .jq-number__spin.minus:hover:after,
.cid-tlW2IV5WYv .jq-number__spin.plus:hover:after {
  border-top-color: #273c48;
  border-bottom-color: #273c48;
}
.cid-tlW2IV5WYv .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tlW2IV5WYv .jq-number__spin.minus:after,
.cid-tlW2IV5WYv .jq-number__spin.plus:after {
  border-top-color: #273c48;
  border-bottom-color: #273c48;
}
.cid-tlW2IV5WYv input::-webkit-clear-button {
  display: none;
}
.cid-tlW2IV5WYv input::-webkit-inner-spin-button {
  display: none;
}
.cid-tlW2IV5WYv input::-webkit-outer-spin-button {
  display: none;
}
.cid-tlW2IV5WYv input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tlW2IV5WYv H4 {
  color: #ffffff;
  text-align: center;
}
.cid-tlW2IV5WYv H3 {
  text-align: center;
  color: #ffffff;
}
.cid-tlW2GCffuf {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tlW2GCffuf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tlW2GCffuf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tlW2GCffuf .loc-iconfont {
  position: absolute;
  top: 1rem;
  right: 2rem;
  background: #13e5c0;
  color: white;
  height: 70px;
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 2rem;
}
.cid-tlW2GCffuf .btn {
  width: -webkit-fill-available;
}
.cid-tlW2GCffuf .mbr-section-btn {
  padding: 0 0.3rem;
}
.cid-tlW2GCffuf .row-h {
  height: 100% !important;
  padding-bottom: 2rem;
}
.cid-tlW2GCffuf .card-big {
  height: 100%;
  border-radius: 6px;
  padding: 0rem;
  margin: 0;
}
.cid-tlW2GCffuf .card-wrapper {
  transition: all 0.3s;
  border-radius: 6px;
  padding: 1rem 1rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 2rem;
  border: 2px dashed currentColor;
}
@media (max-width: 767px) {
  .cid-tlW2GCffuf .card-wrapper {
    flex-direction: column;
    padding: 1rem 1rem;
    padding-bottom: 2rem;
  }
}
.cid-tlW2GCffuf .card-wrapper:hover .mbr-iconfont {
  background: #13e5c0;
  transform: translateX(10px);
}
.cid-tlW2GCffuf .row {
  justify-content: center;
}
.cid-tlW2GCffuf .cardbig-link,
.cid-tlW2GCffuf .mbr-linkiconfont {
  color: #ffffff;
}
.cid-tlW2GCffuf .cardbig-text,
.cid-tlW2GCffuf .link-wrapper {
  color: #ffffff;
}
.cid-tlW2GCffuf .card-title,
.cid-tlW2GCffuf .iconfont-wrapper,
.cid-tlW2GCffuf .card-wrapper {
  color: #132835;
}
.cid-tlW2GCffuf .card-text,
.cid-tlW2GCffuf .mbr-section-btn {
  color: #353535;
}
.cid-tlW2GCffuf .cardbig-title {
  color: #ffffff;
}
.cid-tlW2KahLv7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #19303d;
}
.cid-tlW2KahLv7 .foot-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tlW2KahLv7 .foot-menu {
    justify-content: center;
  }
}
.cid-tlW2KahLv7 .foot-menu li {
  padding: 0 1rem 1rem 1rem;
  transition: all 0.3s;
}
.cid-tlW2KahLv7 .foot-menu li:hover {
  color: #13e5c0;
  cursor: pointer;
}
.cid-tlW2KahLv7 .foot-menu li p {
  margin: 0;
}
.cid-tlW2KahLv7 .mbr-text {
  text-align: left;
}
@media (max-width: 992px) {
  .cid-tlW2KahLv7 .mbr-text {
    text-align: center;
  }
}
.cid-tlW2KahLv7 .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tlW2KahLv7 .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlW2KahLv7 .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlW2KahLv7 .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tlW2KahLv7 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlW2KahLv7 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlW2KahLv7 .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlW2KahLv7 .row-copirayt p {
  width: 100%;
}
