.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Lato', sans-serif;
  font-size: 2.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.25rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-5 {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.7rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2.125rem;
}
/* ---- 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: 2.08rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.82rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 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))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #007953 !important;
}
.bg-info {
  background-color: #ffe145 !important;
}
.bg-warning {
  background-color: #d70081 !important;
}
.bg-danger {
  background-color: #3b9e33 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !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: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #fecf07 !important;
  border-color: #fecf07 !important;
  color: #060500 !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: #ae8d01 !important;
  border-color: #ae8d01 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #060500 !important;
  background-color: #ae8d01 !important;
  border-color: #ae8d01 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffe145 !important;
  border-color: #ffe145 !important;
  color: #453a00 !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: #edc700 !important;
  border-color: #edc700 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #453a00 !important;
  background-color: #edc700 !important;
  border-color: #edc700 !important;
}
.btn-success,
.btn-success:active {
  background-color: #007953 !important;
  border-color: #007953 !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: #002218 !important;
  border-color: #002218 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #002218 !important;
  border-color: #002218 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #d70081 !important;
  border-color: #d70081 !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: #80004d !important;
  border-color: #80004d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #80004d !important;
  border-color: #80004d !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #3b9e33 !important;
  border-color: #3b9e33 !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: #235c1e !important;
  border-color: #235c1e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #235c1e !important;
  border-color: #235c1e !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: #6592e6;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: #2260d2 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #fecf07;
  color: #fecf07;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ae8d01 !important;
  background-color: transparent!important;
  border-color: #ae8d01 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #060500 !important;
  background-color: #fecf07 !important;
  border-color: #fecf07 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #ffe145;
  color: #ffe145;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #edc700 !important;
  background-color: transparent!important;
  border-color: #edc700 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #453a00 !important;
  background-color: #ffe145 !important;
  border-color: #ffe145 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #007953;
  color: #007953;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #002218 !important;
  background-color: transparent!important;
  border-color: #002218 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #007953 !important;
  border-color: #007953 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #d70081;
  color: #d70081;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #80004d !important;
  background-color: transparent!important;
  border-color: #80004d !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d70081 !important;
  border-color: #d70081 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #3b9e33;
  color: #3b9e33;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #235c1e !important;
  background-color: transparent!important;
  border-color: #235c1e !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #3b9e33 !important;
  border-color: #3b9e33 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #6592e6 !important;
}
.text-secondary {
  color: #fecf07 !important;
}
.text-success {
  color: #007953 !important;
}
.text-info {
  color: #ffe145 !important;
}
.text-warning {
  color: #d70081 !important;
}
.text-danger {
  color: #3b9e33 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #9e8001 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #00130d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #deba00 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #710044 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #1e511a !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: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffe145;
}
.alert-warning {
  background-color: #d70081;
}
.alert-danger {
  background-color: #3b9e33;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #00f9aa;
}
.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: #ffa4db;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #82d57c;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.75rem;
}
.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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.75rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !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: #fecf07 !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='%236592e6' %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-uOh2RA8XSV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #00515e;
}
.cid-uOh2RA8XSV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOh2RA8XSV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOh2RA8XSV .mbr-section-title {
  color: #ffffff;
}
.cid-ukbAFtyIOt {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ukbAFtyIOt .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukbAFtyIOt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ukbAFtyIOt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ukbAFtyIOt .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-ukbAFtyIOt .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-ukbAFtyIOt .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-ukbAFtyIOt .mbr-section-title {
  color: #00515e;
  text-align: center;
}
.cid-ukbAFtyIOt .mbr-text,
.cid-ukbAFtyIOt .mbr-section-btn {
  color: #000000;
  text-align: center;
}
.cid-uOmRsTlgLs {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #00515e;
}
.cid-uOmRsTlgLs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOmRsTlgLs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOmRsTlgLs .mbr-section-title {
  color: #ffffff;
}
.cid-uOmRAt16bV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOmRAt16bV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOmRAt16bV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uOmRAt16bV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uOmRAt16bV img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uOmRAt16bV .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOmSVB5mpS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uOmSVB5mpS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOmSVB5mpS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uOmSVB5mpS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uOmSVB5mpS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uOmSVB5mpS .text-wrapper {
    padding: 2rem;
  }
}
.cid-uiqzvBZJLN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #00515e;
}
.cid-uiqzvBZJLN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiqzvBZJLN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiqzvBZJLN .mbr-section-title {
  color: #ffffff;
}
.cid-ukbHcRhm1H {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ukbHcRhm1H img,
.cid-ukbHcRhm1H .item-img {
  width: 100%;
}
.cid-ukbHcRhm1H .item:focus,
.cid-ukbHcRhm1H span:focus {
  outline: none;
}
.cid-ukbHcRhm1H .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ukbHcRhm1H .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ukbHcRhm1H .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ukbHcRhm1H .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ukbHcRhm1H .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ukbHcRhm1H .mbr-section-title {
  color: #232323;
}
.cid-ukbHcRhm1H .mbr-text,
.cid-ukbHcRhm1H .mbr-section-btn {
  text-align: center;
}
.cid-ukbHcRhm1H .item-title {
  text-align: center;
  color: #000000;
}
.cid-ukbHcRhm1H .item-subtitle {
  text-align: center;
}
.cid-ukJMqCUtnY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #00515e;
}
.cid-ukJMqCUtnY .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukJMqCUtnY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukJMqCUtnY .mbr-section-title {
  color: #ffffff;
}
.cid-uPGsDxjSM2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPGsDxjSM2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPGsDxjSM2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPGsDxjSM2 .mbr-section-subtitle {
  text-align: left;
}
.cid-ukWT9ZOFB6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ukWT9ZOFB6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukWT9ZOFB6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-ukWT9ZOFB6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ukWT9ZOFB6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ukWT9ZOFB6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uPGADCnRjn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #00515e;
}
.cid-uPGADCnRjn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPGADCnRjn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPGADCnRjn .mbr-section-title {
  color: #ffffff;
}
.cid-uPGBdINgCq {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPGBdINgCq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPGBdINgCq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPGBdINgCq .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 570px;
  max-width: 570px;
}
@media (max-width: 768px) {
  .cid-uPGBdINgCq .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uPGBdINgCq .embla__button--next,
.cid-uPGBdINgCq .embla__button--prev {
  display: flex;
}
.cid-uPGBdINgCq .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uPGBdINgCq .embla__button {
    display: none;
  }
}
.cid-uPGBdINgCq .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uPGBdINgCq .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uPGBdINgCq .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uPGBdINgCq .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .cid-uPGBdINgCq .embla__button {
    top: auto;
  }
}
.cid-uPGBdINgCq .user_image {
  width: 200px;
  height: 200px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 2rem auto;
}
.cid-uPGBdINgCq .user_image .item-wrapper {
  width: 200px;
  height: 200px;
}
.cid-uPGBdINgCq .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 230px) {
  .cid-uPGBdINgCq .user_image {
    width: 100%;
    height: auto;
  }
}
.cid-uPGBdINgCq .embla {
  position: relative;
  width: 100%;
}
.cid-uPGBdINgCq .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uPGBdINgCq .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uPGBdINgCq .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uPGBdINgCq .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uiAGGngo2s {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #00515e;
}
.cid-uiAGGngo2s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiAGGngo2s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiAGGngo2s .mbr-section-title {
  color: #ffffff;
}
.cid-uOsHc22jTt {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOsHc22jTt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOsHc22jTt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uOsHc22jTt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uOsHc22jTt .row {
  flex-direction: row-reverse;
}
.cid-uOsHc22jTt img {
  width: 100%;
}
.cid-uOsIeRDmIO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOsIeRDmIO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOsIeRDmIO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOsIeRDmIO .mbr-section-title {
  color: #00515e;
}
.cid-uOsIeRDmIO .mbr-section-subtitle {
  color: #00515e;
}
.cid-uOyACFn2Wq {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uiBnxdqi02 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #00515e;
}
.cid-uiBnxdqi02 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiBnxdqi02 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiBnxdqi02 .mbr-section-title {
  color: #ffffff;
}
.cid-uiBnLL4V6V {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uiBnLL4V6V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiBnLL4V6V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiBnLL4V6V .mbr-section-subtitle {
  text-align: left;
}
.cid-ukc4wRHbTT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ukc4wRHbTT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukc4wRHbTT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukc4wRHbTT .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 991px) {
  .cid-ukc4wRHbTT .item {
    margin-bottom: 4rem;
  }
}
.cid-ukc4wRHbTT .item:last-child .icon-box:before {
  display: none;
}
.cid-ukc4wRHbTT .item.last .icon-box:before {
  display: none;
}
.cid-ukc4wRHbTT .icon-box {
  background: #00515e;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-ukc4wRHbTT .icon-box {
    margin-right: 1rem;
  }
}
.cid-ukc4wRHbTT .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 42px;
  left: 50%;
  top: 90%;
  top: 100%;
  color: #00515e;
  transform: translate(-50%, 0);
}
.cid-ukc4wRHbTT span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ukc4wRHbTT .card {
    margin-bottom: 2rem;
  }
  .cid-ukc4wRHbTT .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-ukc4wRHbTT .icon-box::before {
    top: 141%;
    top: 123%;
  }
}
@media (max-width: 768px) {
  .cid-ukc4wRHbTT .icon-box::before {
    top: 114%;
  }
}
.cid-ukc4wRHbTT .icon-title {
  color: #00515e;
}
.cid-ukc5Y3rWxU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #00515e;
}
.cid-ukc5Y3rWxU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukc5Y3rWxU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukc5Y3rWxU .mbr-section-title {
  color: #ffffff;
}
.cid-ukc62Lkkss {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ukc62Lkkss .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukc62Lkkss .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukc62Lkkss .mbr-section-subtitle {
  text-align: left;
}
.cid-ukc6cL3d39 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ukc6cL3d39 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-ukc6cL3d39 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-ukc6cL3d39 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #00515e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uNkrI9sA59 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #00515e;
}
.cid-uNkrI9sA59 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNkrI9sA59 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNkrI9sA59 .mbr-section-title {
  color: #ffffff;
}
.cid-uNkrIYkoKm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uNkrIYkoKm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNkrIYkoKm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNkrIYkoKm .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-uNkrIYkoKm .mbr-section-title,
.cid-uNkrIYkoKm .mbr-section-subtitle {
  text-align: center;
}
.cid-uNkrIYkoKm .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uNkrIYkoKm .item-wrapper {
  border-radius: 4px;
  background-color: #00515e;
}
.cid-uNkrIYkoKm .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uNkrIYkoKm .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uNkrIYkoKm .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uNkrIYkoKm .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uNkrIYkoKm .card-title {
  color: #eefe3c;
}
.cid-uNkrIYkoKm .mbr-text {
  color: #ffffff;
}
.cid-uOumqiTNAy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uOumqiTNAy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOumqiTNAy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOumqiTNAy .mbr-section-title {
  color: #ffffff;
}
.cid-uOumqiTNAy .mbr-section-subtitle {
  color: #fecf07;
}
.cid-uPGEDGGcpx {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uPGEDGGcpx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPGEDGGcpx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uPGEDGGcpx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPGEDGGcpx .row {
  flex-direction: row-reverse;
}
.cid-uPGEDGGcpx img {
  width: 100%;
}
.cid-uOumDjdtNp {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uOumDjdtNp .line {
  background-color: #d12612;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uOulYGwfPH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #00515e;
}
.cid-uOulYGwfPH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOulYGwfPH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOulYGwfPH .mbr-section-title {
  color: #ffffff;
}
.cid-uOum3AbkP5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOum3AbkP5 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uOum3AbkP5 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uOum3AbkP5 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #00515e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-uOsPdgvrbF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uOsPdgvrbF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOsPdgvrbF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uOsPdgvrbF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uOsPdgvrbF .row {
  flex-direction: row-reverse;
}
.cid-uOsPdgvrbF img {
  width: 100%;
}
.cid-uOsPuAWkKj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f1f8fd;
}
.cid-uOsPuAWkKj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOsPuAWkKj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOsPuAWkKj .item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.cid-uOsPuAWkKj .item .icon-wrap {
  text-align: center;
}
.cid-uOsPuAWkKj .item span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
.cid-uOsPuAWkKj .item::before {
  content: "\e96b";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: -15px;
  top: 12%;
  color: #4a2e91;
}
.cid-uOsPuAWkKj .item.first:before {
  display: none;
}
.cid-uOsPuAWkKj .item.five:before {
  display: none;
}
.cid-uOsPuAWkKj .icon-box {
  background: #4a2e91;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
}
.cid-uOsPuAWkKj .text-box {
  margin-top: 1rem;
  text-align: center;
}
.cid-uOsPuAWkKj .mbr-iconfont {
  color: #6592e6 !important;
  position: absolute;
  top: 50%;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uOsPuAWkKj .item:before {
    display: none;
  }
  .cid-uOsPuAWkKj .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-ukL4p07z9M {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #00515e;
}
.cid-ukL4p07z9M .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukL4p07z9M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukL4p07z9M .mbr-section-title {
  color: #ffffff;
}
.cid-ukL4xRcpBg {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ukL4xRcpBg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukL4xRcpBg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ukL4xRcpBg .mbr-section-subtitle {
  text-align: left;
}
.cid-uOyrJ9QYvz {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #00515e;
}
.cid-uOyrJ9QYvz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOyrJ9QYvz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOyrJ9QYvz .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-uOyrJ9QYvz .mbr-section-title,
.cid-uOyrJ9QYvz .mbr-section-subtitle {
  text-align: center;
}
.cid-uOyrJ9QYvz .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-uOyrJ9QYvz .item-wrapper {
  border-radius: 4px;
  background-color: #fafafa;
}
.cid-uOyrJ9QYvz .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uOyrJ9QYvz .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-uOyrJ9QYvz .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uOyrJ9QYvz .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-uOyrJ9QYvz .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-uOyrJ9QYvz .card-title {
  text-align: center;
  color: #000000;
}
.cid-ukhJ7xpISL {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ukhJ7xpISL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ukhJ7xpISL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOytAQA3i5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uOytAQA3i5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOytAQA3i5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOytAQA3i5 .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uOytAQA3i5 .currentcost {
  color: #232323;
}
.cid-uOytAQA3i5 .card-wrapper {
  border-radius: 4px;
  background: #e6f1e2;
}
@media (min-width: 992px) {
  .cid-uOytAQA3i5 .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uOytAQA3i5 .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uOytAQA3i5 .text-box {
    padding: 1rem;
  }
}
.cid-uOytAQA3i5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uOytAQA3i5 .mbr-text,
.cid-uOytAQA3i5 .cost,
.cid-uOytAQA3i5 .mbr-section-btn {
  text-align: center;
  color: #00515e;
}
.cid-uOytAQA3i5 H5 {
  text-align: center;
  color: #000000;
}
.cid-uiBzjjalD0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #f7f6f4;
}
.cid-uiBzjjalD0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiBzjjalD0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiBzjjalD0 .mbr-section-title {
  color: #000000;
}
.cid-uiBzoX4Giw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #f7f6f4;
}
.cid-uiBzoX4Giw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiBzoX4Giw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiBzoX4Giw .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #6592e6;
  margin-left: 1rem;
}
.cid-uiBzoX4Giw .panel-group {
  border: none;
}
.cid-uiBzoX4Giw .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uiBzoX4Giw .panel-body,
.cid-uiBzoX4Giw .card-header {
  padding: 1rem 0;
}
.cid-uiBzoX4Giw .panel-title-edit {
  color: #00515e;
}
.cid-uiBzoX4Giw .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uOyxc6ajaS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #3b9e33;
}
.cid-uOyxc6ajaS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOyxc6ajaS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOyxc6ajaS .mbr-section-title {
  color: #ffffff;
}
.cid-uoCMQ2fpR4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uoCMQ2fpR4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoCMQ2fpR4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uobeTXsgiX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uobeTXsgiX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uobeTXsgiX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uobeTXsgiX .mbr-section-subtitle {
  text-align: left;
}
.cid-uOyyKev2lH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #00515e;
}
.cid-uOyyKev2lH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOyyKev2lH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOyyKev2lH .mbr-section-title {
  color: #ffffff;
}
.cid-uOyyKev2lH .mbr-section-subtitle {
  color: #fecf07;
}
.cid-uOyyVzsDG7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOyyVzsDG7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOyyVzsDG7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOyyVzsDG7 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uOyyVzsDG7 .mbr-section-subtitle {
  text-align: left;
}
.cid-uiCfubZIKU {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #00515e;
}
.cid-uiCfubZIKU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiCfubZIKU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiCfubZIKU .mbr-section-title {
  color: #ffffff;
}
.cid-uOyzHneZGQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #00515e;
}
.cid-uOyzHneZGQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOyzHneZGQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOyzHneZGQ .mbr-section-title {
  color: #ffffff;
}
.cid-uOyzHneZGQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uOyzAMUFKd {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #00515e;
}
.cid-uOyzAMUFKd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOyzAMUFKd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uOyzAMUFKd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uOyzAMUFKd .row {
  flex-direction: row-reverse;
}
.cid-uOyzAMUFKd img {
  width: 100%;
}
.cid-uiCgu7US60 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #00515e;
}
.cid-uPGzncvR1a {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #002a31;
}
.cid-uPGzncvR1a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPGzncvR1a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPGzncvR1a ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-uPGzncvR1a li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-uPGzncvR1a ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-uOAhgpouUR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOAhgpouUR .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uOAhgpouUR .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uOAhgpouUR .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uOAhgpouUR .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uOAhgpouUR .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uOAhgpouUR .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uOAhgpouUR .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uOAhgpouUR .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uOAhgpouUR .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOAhgpouUR .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uOAhgpouUR .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOAhgpouUR .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOAhgpouUR .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uOAhgpouUR .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uOAhgpouUR .media-container-row .mbr-text {
  color: #000000;
}
.cid-uiFlnhJyQz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uiFlnhJyQz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiFlnhJyQz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiFlnhJyQz .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uiFnQfUk8H {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uiFnQfUk8H .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiFnQfUk8H .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiFnQfUk8H .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uiFnQfUk8H .mbr-section-subtitle {
  text-align: left;
}
.cid-uiFndXUINH {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uiFndXUINH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uiFndXUINH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uiFndXUINH .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-uiFndXUINH .mbr-section-subtitle {
  text-align: left;
}
