@import url(https://fonts.googleapis.com/css?family=Jost:100,200,300,400,500,600,700,800,900,100i,200i,300i,400i,500i,600i,700i,800i,900i&display=swap);





body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', 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.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.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: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #4479d9 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ffa072 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !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: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #2150a5 !important;
  border-color: #2150a5 !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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: #0a0800 !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: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffa072 !important;
  border-color: #ffa072 !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: #ff661b !important;
  border-color: #ff661b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff661b !important;
  border-color: #ff661b !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #4479d9;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #2150a5 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #4479d9 !important;
  border-color: #4479d9 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!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-color: transparent;
  color: #ffa072;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff661b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffa072 !important;
  border-color: #ffa072 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #4479d9 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ffa072 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1f4a98 !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: #ff5b0c !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: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #4479d9;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ffa072;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #eef2fb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  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: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  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: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.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: #000000;
  border-bottom-color: #000000;
}
.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: #000000 !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: #ff6666 !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='%23000000' %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-uNqr6f9UqX {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-uNqr6f9UqX .mbr-text,
.cid-uNqr6f9UqX .mbr-section-btn {
  color: #ffffff;
}
.cid-uLIWp1eEEn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uLIWp1eEEn .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uLIWp1eEEn .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLIWp1eEEn .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uLIWp1eEEn .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-sCLZrSLAnw {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #98dee8;
}
@media (max-width: 991px) {
  .cid-sCLZrSLAnw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sCLZrSLAnw .row {
  flex-direction: row-reverse;
}
.cid-sCLZrSLAnw img {
  width: 100%;
}
.cid-uLIYEjdX2M {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uLIYEjdX2M .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uLIYEjdX2M .container {
    max-width: 1400px;
  }
}
.cid-uLIYEjdX2M .card {
  margin: auto;
}
.cid-uLIYEjdX2M .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uLIYEjdX2M .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uLIYEjdX2M .row {
  justify-content: center;
}
.cid-uLIYEjdX2M H3 {
  color: #ffffff;
}
.cid-uNqrjWwKsV {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-uNqrjWwKsV .mbr-text,
.cid-uNqrjWwKsV .mbr-section-btn {
  color: #ffffff;
}
.cid-uLIWi5R6Jb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uLIWi5R6Jb .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uLIWi5R6Jb .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLIWi5R6Jb .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uLIWi5R6Jb .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-tgsYkjswQS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #9ae16e;
}
.cid-tgsYkjswQS .row {
  flex-direction: row-reverse;
}
.cid-tgsYkjswQS .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tgsYkjswQS .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tgsYkjswQS .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tgsYmfTKLi {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffec61;
}
.cid-tgsYmfTKLi .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tgsYmfTKLi .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tgsYmfTKLi .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tm8g3g2lSo {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffa072;
}
.cid-tm8g3g2lSo .row {
  flex-direction: row-reverse;
}
.cid-tm8g3g2lSo .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tm8g3g2lSo .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tm8g3g2lSo .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tgsZn4YCau {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f8fdff;
}
.cid-tgsZn4YCau .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tgsZn4YCau .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tgsZn4YCau .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uLIYAuswYX {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uLIYAuswYX .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uLIYAuswYX .container {
    max-width: 1400px;
  }
}
.cid-uLIYAuswYX .card {
  margin: auto;
}
.cid-uLIYAuswYX .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uLIYAuswYX .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uLIYAuswYX .row {
  justify-content: center;
}
.cid-uLIYAuswYX H3 {
  color: #ffffff;
}
.cid-uNqqFlMdME {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-uNqqFlMdME .mbr-text,
.cid-uNqqFlMdME .mbr-section-btn {
  color: #ffffff;
}
.cid-uLIVxsAZmN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uLIVxsAZmN .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uLIVxsAZmN .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLIVxsAZmN .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uLIVxsAZmN .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uAjQUqCo6D {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bdff6f;
}
.cid-uAjQUqCo6D .row {
  flex-direction: row-reverse;
}
.cid-uAjQUqCo6D .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uAjQUqCo6D .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uAjQUqCo6D .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tV62qErEDt {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffe161;
}
.cid-tV62qErEDt .row {
  flex-direction: row-reverse;
}
.cid-tV62qErEDt .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tV62qErEDt .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tV62qErEDt .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uzou58J2EZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ff6666;
}
.cid-uzou58J2EZ .row {
  flex-direction: row-reverse;
}
.cid-uzou58J2EZ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uzou58J2EZ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uzou58J2EZ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uzotAyXaja {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6ec7f2;
}
.cid-uzotAyXaja .row {
  flex-direction: row-reverse;
}
.cid-uzotAyXaja .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uzotAyXaja .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uzotAyXaja .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uzotBgCCT0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-uzotBgCCT0 .row {
  flex-direction: row-reverse;
}
.cid-uzotBgCCT0 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uzotBgCCT0 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uzotBgCCT0 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uzocz7EEQX {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #9ae16e;
}
.cid-uzocz7EEQX .row {
  flex-direction: row-reverse;
}
.cid-uzocz7EEQX .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uzocz7EEQX .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uzocz7EEQX .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uzoczhAHdf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffa072;
}
.cid-uzoczhAHdf .row {
  flex-direction: row-reverse;
}
.cid-uzoczhAHdf .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uzoczhAHdf .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uzoczhAHdf .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uzoczr5p4t {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #878787;
}
.cid-uzoczr5p4t .row {
  flex-direction: row-reverse;
}
.cid-uzoczr5p4t .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uzoczr5p4t .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uzoczr5p4t .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uLIYvi3qBs {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uLIYvi3qBs .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uLIYvi3qBs .container {
    max-width: 1400px;
  }
}
.cid-uLIYvi3qBs .card {
  margin: auto;
}
.cid-uLIYvi3qBs .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uLIYvi3qBs .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uLIYvi3qBs .row {
  justify-content: center;
}
.cid-uLIYvi3qBs H3 {
  color: #ffffff;
}
.cid-uNqqWsovFn {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-uNqqWsovFn .mbr-text,
.cid-uNqqWsovFn .mbr-section-btn {
  color: #ffffff;
}
.cid-uLIW3eSUH2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uLIW3eSUH2 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uLIW3eSUH2 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLIW3eSUH2 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uLIW3eSUH2 .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-tvanIX7MOq {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ff9966;
}
.cid-tvanIX7MOq .row {
  flex-direction: row-reverse;
}
.cid-tvanIX7MOq .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tvanIX7MOq .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tvanIX7MOq .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tvanJg3nJA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffe885;
}
.cid-tvanJg3nJA .row {
  flex-direction: row-reverse;
}
.cid-tvanJg3nJA .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tvanJg3nJA .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tvanJg3nJA .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tvanJx6x8w {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #9ae16e;
}
.cid-tvanJx6x8w .row {
  flex-direction: row-reverse;
}
.cid-tvanJx6x8w .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tvanJx6x8w .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tvanJx6x8w .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uzo9X4bE0f {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bbbbbb;
}
.cid-uzo9X4bE0f .row {
  flex-direction: row-reverse;
}
.cid-uzo9X4bE0f .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uzo9X4bE0f .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uzo9X4bE0f .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uzoryj2cqA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffa4ef;
}
.cid-uzoryj2cqA .row {
  flex-direction: row-reverse;
}
.cid-uzoryj2cqA .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uzoryj2cqA .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uzoryj2cqA .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uzo9WUAIU1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #9fdbf8;
}
.cid-uzo9WUAIU1 .row {
  flex-direction: row-reverse;
}
.cid-uzo9WUAIU1 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uzo9WUAIU1 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uzo9WUAIU1 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uzo9Wnc0fR {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ff8a8a;
}
.cid-uzo9Wnc0fR .row {
  flex-direction: row-reverse;
}
.cid-uzo9Wnc0fR .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uzo9Wnc0fR .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uzo9Wnc0fR .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uzo9XbWrvd {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #22a5e5;
}
.cid-uzo9XbWrvd .row {
  flex-direction: row-reverse;
}
.cid-uzo9XbWrvd .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uzo9XbWrvd .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uzo9XbWrvd .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uzo9Xlgp3n {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffe885;
}
.cid-uzo9Xlgp3n .row {
  flex-direction: row-reverse;
}
.cid-uzo9Xlgp3n .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uzo9Xlgp3n .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uzo9Xlgp3n .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uzoe6kA8of {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bdff6f;
}
.cid-uzoe6kA8of .row {
  flex-direction: row-reverse;
}
.cid-uzoe6kA8of .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uzoe6kA8of .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uzoe6kA8of .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uLIYxCV2cD {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uLIYxCV2cD .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uLIYxCV2cD .container {
    max-width: 1400px;
  }
}
.cid-uLIYxCV2cD .card {
  margin: auto;
}
.cid-uLIYxCV2cD .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uLIYxCV2cD .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uLIYxCV2cD .row {
  justify-content: center;
}
.cid-uLIYxCV2cD H3 {
  color: #ffffff;
}
.cid-uNqqt4Z9Cl {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #545454;
}
.cid-uNqqt4Z9Cl .mbr-text,
.cid-uNqqt4Z9Cl .mbr-section-btn {
  color: #ffffff;
}
.cid-uLIV9fO5dr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #545454;
}
.cid-uLIV9fO5dr .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uLIV9fO5dr .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLIV9fO5dr .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uLIV9fO5dr .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-ugGvhuBTxh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugGvhuBTxh img,
.cid-ugGvhuBTxh .item-img {
  width: 100%;
}
.cid-ugGvhuBTxh .item:focus,
.cid-ugGvhuBTxh span:focus {
  outline: none;
}
.cid-ugGvhuBTxh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ugGvhuBTxh .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ugGvhuBTxh .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ugGvhuBTxh .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ugGvhuBTxh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugGvhuBTxh .mbr-section-title {
  color: #232323;
}
.cid-ugGvhuBTxh .mbr-text,
.cid-ugGvhuBTxh .mbr-section-btn {
  text-align: left;
}
.cid-ugGvhuBTxh .item-title {
  text-align: left;
}
.cid-ugGvhuBTxh .item-subtitle {
  text-align: left;
}
.cid-uzo6trC2dR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uzo6trC2dR img,
.cid-uzo6trC2dR .item-img {
  width: 100%;
}
.cid-uzo6trC2dR .item:focus,
.cid-uzo6trC2dR span:focus {
  outline: none;
}
.cid-uzo6trC2dR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uzo6trC2dR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uzo6trC2dR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uzo6trC2dR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uzo6trC2dR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uzo6trC2dR .mbr-section-title {
  color: #232323;
}
.cid-uzo6trC2dR .mbr-text,
.cid-uzo6trC2dR .mbr-section-btn {
  text-align: left;
}
.cid-uzo6trC2dR .item-title {
  text-align: left;
}
.cid-uzo6trC2dR .item-subtitle {
  text-align: left;
}
.cid-ugGvhvnjmh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugGvhvnjmh img,
.cid-ugGvhvnjmh .item-img {
  width: 100%;
}
.cid-ugGvhvnjmh .item:focus,
.cid-ugGvhvnjmh span:focus {
  outline: none;
}
.cid-ugGvhvnjmh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ugGvhvnjmh .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ugGvhvnjmh .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ugGvhvnjmh .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ugGvhvnjmh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugGvhvnjmh .mbr-section-title {
  color: #232323;
}
.cid-ugGvhvnjmh .mbr-text,
.cid-ugGvhvnjmh .mbr-section-btn {
  text-align: left;
}
.cid-ugGvhvnjmh .item-title {
  text-align: left;
}
.cid-ugGvhvnjmh .item-subtitle {
  text-align: left;
}
.cid-ugGvhvQ3LR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugGvhvQ3LR img,
.cid-ugGvhvQ3LR .item-img {
  width: 100%;
}
.cid-ugGvhvQ3LR .item:focus,
.cid-ugGvhvQ3LR span:focus {
  outline: none;
}
.cid-ugGvhvQ3LR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ugGvhvQ3LR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ugGvhvQ3LR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ugGvhvQ3LR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ugGvhvQ3LR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugGvhvQ3LR .mbr-section-title {
  color: #232323;
}
.cid-ugGvhvQ3LR .mbr-text,
.cid-ugGvhvQ3LR .mbr-section-btn {
  text-align: left;
}
.cid-ugGvhvQ3LR .item-title {
  text-align: left;
}
.cid-ugGvhvQ3LR .item-subtitle {
  text-align: left;
}
.cid-uzoKSGfbUi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e43f3f;
}
.cid-uzoKSGfbUi .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uzoKSGfbUi .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uzoKSGfbUi .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uzoKSGfbUi .card-title {
  text-align: center;
}
.cid-uzoLBv6MDy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uzoLBv6MDy .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uzoLBv6MDy .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uzoLBv6MDy .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uzoLBv6MDy .card-title {
  text-align: center;
}
.cid-uzoKRJMruR {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #353535;
}
.cid-uzoKRJMruR .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uzoKRJMruR .container {
    max-width: 1400px;
  }
}
.cid-uzoKRJMruR .card {
  margin: auto;
}
.cid-uzoKRJMruR .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bbbbbb;
  margin-bottom: 2rem;
}
.cid-uzoKRJMruR .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uzoKRJMruR .row {
  justify-content: center;
}
.cid-uzoKRJMruR H3 {
  color: #ffffff;
}
.cid-uNqqhJOS3k {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-uNqqhJOS3k .mbr-text,
.cid-uNqqhJOS3k .mbr-section-btn {
  color: #ffffff;
}
.cid-uLIUwl0ZMq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uLIUwl0ZMq .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uLIUwl0ZMq .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLIUwl0ZMq .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uLIUwl0ZMq .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-stE7nroUOU {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffb5b5;
}
.cid-stE7nroUOU .row {
  flex-direction: row-reverse;
}
.cid-stE7nroUOU .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-stE7nroUOU .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-stE7nroUOU .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-stE7nroUOU .mbr-text,
.cid-stE7nroUOU .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-stE7nroUOU .mbr-section-title {
  color: #000000;
}
.cid-suXhSUMSEw {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #9ae16e;
}
.cid-suXhSUMSEw .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-suXhSUMSEw .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-suXhSUMSEw .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-suXhSUMSEw .mbr-text,
.cid-suXhSUMSEw .mbr-section-btn {
  color: #000000;
}
.cid-suXhSUMSEw .mbr-section-title {
  color: #000000;
}
.cid-sNO88RC5U0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-sNO88RC5U0 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sNO88RC5U0 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sNO88RC5U0 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sNO88RC5U0 .mbr-text,
.cid-sNO88RC5U0 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-sNO88RC5U0 .mbr-section-title {
  color: #000000;
}
.cid-uLIYjFgkEp {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uLIYjFgkEp .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uLIYjFgkEp .container {
    max-width: 1400px;
  }
}
.cid-uLIYjFgkEp .card {
  margin: auto;
}
.cid-uLIYjFgkEp .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uLIYjFgkEp .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uLIYjFgkEp .row {
  justify-content: center;
}
.cid-uLIYjFgkEp H3 {
  color: #ffffff;
}
.cid-uNqqoDedDN {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-uNqqoDedDN .mbr-text,
.cid-uNqqoDedDN .mbr-section-btn {
  color: #ffffff;
}
.cid-uLIURX8vik {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uLIURX8vik .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uLIURX8vik .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLIURX8vik .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uLIURX8vik .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-sW7Ba1ccRF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9ae16e;
}
.cid-sW7Ba1ccRF .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sW7Ba1ccRF .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sW7Ba1ccRF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sW7Ba1ccRF .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sW7Ba1ccRF .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sW7Ba1ccRF .mbr-section-title {
  text-align: center;
}
.cid-sW7Ba1ccRF .mbr-text,
.cid-sW7Ba1ccRF .mbr-section-btn {
  text-align: center;
}
.cid-sKZHHxy4q5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fff0b0;
}
@media (max-width: 991px) {
  .cid-sKZHHxy4q5 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sKZHHxy4q5 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sKZHHxy4q5 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sKZHHxy4q5 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sKZHHxy4q5 .mbr-section-title {
  text-align: center;
}
.cid-sKZHHxy4q5 .mbr-text,
.cid-sKZHHxy4q5 .mbr-section-btn {
  text-align: center;
}
.cid-tmky1Gu0qx {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #6ec7f2;
}
.cid-tmky1Gu0qx .row {
  flex-direction: row-reverse;
}
.cid-tmky1Gu0qx .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tmky1Gu0qx .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tmky1Gu0qx .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sPpJCHBrVk {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ff6666;
}
.cid-sPpJCHBrVk .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sPpJCHBrVk .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sPpJCHBrVk .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-sI3Nkp5JXT {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-sI3Nkp5JXT .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sI3Nkp5JXT .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sI3Nkp5JXT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sI3Nkp5JXT .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sI3Nkp5JXT .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sI3Nkp5JXT .mbr-section-title {
  text-align: center;
}
.cid-sI3Nkp5JXT .mbr-text,
.cid-sI3Nkp5JXT .mbr-section-btn {
  text-align: center;
}
.cid-upQHaPxe8p {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #d38e51;
}
.cid-upQHaPxe8p .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-upQHaPxe8p .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-upQHaPxe8p .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-upQHbpUxR2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #e6e5e5;
}
.cid-upQHbpUxR2 .row {
  flex-direction: row-reverse;
}
.cid-upQHbpUxR2 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-upQHbpUxR2 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-upQHbpUxR2 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uOAvfEdAFy {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #9393b0;
}
.cid-uOAvfEdAFy .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uOAvfEdAFy .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uOAvfEdAFy .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uOAvfEdAFy .mbr-text,
.cid-uOAvfEdAFy .mbr-section-btn {
  color: #16162b;
}
.cid-uOAvfEdAFy .mbr-section-title {
  color: #16162b;
}
.cid-upQHcb7uJs {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #aff860;
}
.cid-upQHcb7uJs .row {
  flex-direction: row-reverse;
}
.cid-upQHcb7uJs .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-upQHcb7uJs .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-upQHcb7uJs .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uuNa5LCVYC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #e43f3f;
}
.cid-uuNa5LCVYC .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uuNa5LCVYC .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uuNa5LCVYC .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uuNa5LCVYC .card-title {
  text-align: center;
}
.cid-uLIYmWr2fU {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uLIYmWr2fU .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uLIYmWr2fU .container {
    max-width: 1400px;
  }
}
.cid-uLIYmWr2fU .card {
  margin: auto;
}
.cid-uLIYmWr2fU .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uLIYmWr2fU .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uLIYmWr2fU .row {
  justify-content: center;
}
.cid-uLIYmWr2fU H3 {
  color: #ffffff;
}
.cid-uKqYGMHjCp {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-uKqYGMHjCp .mbr-text,
.cid-uKqYGMHjCp .mbr-section-btn {
  color: #ffffff;
}
.cid-uKqTnpkowH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uKqTnpkowH .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uKqTnpkowH .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uKqTnpkowH .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uKqTnpkowH .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uKsb9vP2mB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ff8a8a;
}
.cid-uKsb9vP2mB img,
.cid-uKsb9vP2mB .item-img {
  width: 100%;
}
.cid-uKsb9vP2mB .item:focus,
.cid-uKsb9vP2mB span:focus {
  outline: none;
}
.cid-uKsb9vP2mB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uKsb9vP2mB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ff8a8a;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uKsb9vP2mB .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uKsb9vP2mB .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uKsb9vP2mB .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uKsb9vP2mB .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uKsb9vP2mB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uKsb9vP2mB .mbr-section-title {
  color: #353535;
}
.cid-uKsb9vP2mB .mbr-text,
.cid-uKsb9vP2mB .mbr-section-btn {
  text-align: center;
}
.cid-uKsb9vP2mB .item-title {
  text-align: center;
}
.cid-uKsb9vP2mB .item-subtitle {
  text-align: left;
}
.cid-uKscomqEhW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #e6c63b;
}
.cid-uKscomqEhW img,
.cid-uKscomqEhW .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uKscomqEhW .item:focus,
.cid-uKscomqEhW span:focus {
  outline: none;
}
.cid-uKscomqEhW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uKscomqEhW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #e6c63b;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uKscomqEhW .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uKscomqEhW .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uKscomqEhW .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uKscomqEhW .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uKscomqEhW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uKscomqEhW .mbr-section-title {
  color: #353535;
}
.cid-uKscomqEhW .mbr-text,
.cid-uKscomqEhW .mbr-section-btn {
  text-align: center;
}
.cid-uKscomqEhW .item-title {
  text-align: center;
}
.cid-uKscomqEhW .item-subtitle {
  text-align: left;
}
.cid-uLhhlO56tS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #8fe727;
}
.cid-uLhhlO56tS img,
.cid-uLhhlO56tS .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uLhhlO56tS .item:focus,
.cid-uLhhlO56tS span:focus {
  outline: none;
}
.cid-uLhhlO56tS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLhhlO56tS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #8fe727;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLhhlO56tS .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uLhhlO56tS .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLhhlO56tS .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uLhhlO56tS .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uLhhlO56tS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLhhlO56tS .mbr-section-title {
  color: #353535;
}
.cid-uLhhlO56tS .mbr-text,
.cid-uLhhlO56tS .mbr-section-btn {
  text-align: center;
}
.cid-uLhhlO56tS .item-title {
  text-align: center;
}
.cid-uLhhlO56tS .item-subtitle {
  text-align: left;
}
.cid-uN1XYNjZyx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #6effeb;
}
.cid-uN1XYNjZyx img,
.cid-uN1XYNjZyx .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-uN1XYNjZyx .item:focus,
.cid-uN1XYNjZyx span:focus {
  outline: none;
}
.cid-uN1XYNjZyx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uN1XYNjZyx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #6effeb;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uN1XYNjZyx .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uN1XYNjZyx .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uN1XYNjZyx .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uN1XYNjZyx .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uN1XYNjZyx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uN1XYNjZyx .mbr-section-title {
  color: #353535;
}
.cid-uN1XYNjZyx .mbr-text,
.cid-uN1XYNjZyx .mbr-section-btn {
  text-align: center;
}
.cid-uN1XYNjZyx .item-title {
  text-align: center;
}
.cid-uN1XYNjZyx .item-subtitle {
  text-align: left;
}
.cid-uLIXNlJWP6 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uLIXNlJWP6 .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uLIXNlJWP6 .container {
    max-width: 1400px;
  }
}
.cid-uLIXNlJWP6 .card {
  margin: auto;
}
.cid-uLIXNlJWP6 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uLIXNlJWP6 .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uLIXNlJWP6 .row {
  justify-content: center;
}
.cid-uLIXNlJWP6 H3 {
  color: #ffffff;
}
.cid-uNqqILn9zn {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-uNqqILn9zn .mbr-text,
.cid-uNqqILn9zn .mbr-section-btn {
  color: #ffffff;
}
.cid-uN2a5tRk71 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uN2a5tRk71 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uN2a5tRk71 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uN2a5tRk71 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uN2a5tRk71 .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uN2djpumvN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uN2djpumvN img,
.cid-uN2djpumvN .item-img {
  width: 100%;
}
.cid-uN2djpumvN .item:focus,
.cid-uN2djpumvN span:focus {
  outline: none;
}
.cid-uN2djpumvN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uN2djpumvN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uN2djpumvN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uN2djpumvN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uN2djpumvN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uN2djpumvN .mbr-section-title {
  color: #232323;
}
.cid-uN2djpumvN .mbr-text,
.cid-uN2djpumvN .mbr-section-btn {
  text-align: left;
}
.cid-uN2djpumvN .item-title {
  text-align: left;
}
.cid-uN2djpumvN .item-subtitle {
  text-align: center;
}
.cid-uN2dkoMGhY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uN2dkoMGhY img,
.cid-uN2dkoMGhY .item-img {
  width: 100%;
}
.cid-uN2dkoMGhY .item:focus,
.cid-uN2dkoMGhY span:focus {
  outline: none;
}
.cid-uN2dkoMGhY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uN2dkoMGhY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uN2dkoMGhY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uN2dkoMGhY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uN2dkoMGhY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uN2dkoMGhY .mbr-section-title {
  color: #232323;
}
.cid-uN2dkoMGhY .mbr-text,
.cid-uN2dkoMGhY .mbr-section-btn {
  text-align: left;
}
.cid-uN2dkoMGhY .item-title {
  text-align: left;
}
.cid-uN2dkoMGhY .item-subtitle {
  text-align: center;
}
.cid-uN2a5vdGei {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uN2a5vdGei .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uN2a5vdGei .container {
    max-width: 1400px;
  }
}
.cid-uN2a5vdGei .card {
  margin: auto;
}
.cid-uN2a5vdGei .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uN2a5vdGei .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uN2a5vdGei .row {
  justify-content: center;
}
.cid-uN2a5vdGei H3 {
  color: #ffffff;
}
.cid-uNqqMYjljy {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-uNqqMYjljy .mbr-text,
.cid-uNqqMYjljy .mbr-section-btn {
  color: #ffffff;
}
.cid-uN2axAVzL2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uN2axAVzL2 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uN2axAVzL2 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uN2axAVzL2 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uN2axAVzL2 .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uN3hlfuRaL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uN3hlfuRaL img,
.cid-uN3hlfuRaL .item-img {
  width: 100%;
}
.cid-uN3hlfuRaL .item:focus,
.cid-uN3hlfuRaL span:focus {
  outline: none;
}
.cid-uN3hlfuRaL .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uN3hlfuRaL .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uN3hlfuRaL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uN3hlfuRaL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uN3hlfuRaL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uN3hlfuRaL .mbr-section-title {
  color: #232323;
}
.cid-uN3hlfuRaL .mbr-text,
.cid-uN3hlfuRaL .mbr-section-btn {
  text-align: left;
}
.cid-uN3hlfuRaL .item-title {
  text-align: left;
}
.cid-uN3hlfuRaL .item-subtitle {
  text-align: center;
}
.cid-uN3hniLmyW {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uN3hniLmyW img,
.cid-uN3hniLmyW .item-img {
  width: 100%;
}
.cid-uN3hniLmyW .item:focus,
.cid-uN3hniLmyW span:focus {
  outline: none;
}
.cid-uN3hniLmyW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uN3hniLmyW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uN3hniLmyW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uN3hniLmyW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uN3hniLmyW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uN3hniLmyW .mbr-section-title {
  color: #232323;
}
.cid-uN3hniLmyW .mbr-text,
.cid-uN3hniLmyW .mbr-section-btn {
  text-align: left;
}
.cid-uN3hniLmyW .item-title {
  text-align: left;
}
.cid-uN3hniLmyW .item-subtitle {
  text-align: center;
}
.cid-uN2axB8PKg {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uN2axB8PKg .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uN2axB8PKg .container {
    max-width: 1400px;
  }
}
.cid-uN2axB8PKg .card {
  margin: auto;
}
.cid-uN2axB8PKg .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uN2axB8PKg .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uN2axB8PKg .row {
  justify-content: center;
}
.cid-uN2axB8PKg H3 {
  color: #ffffff;
}
.cid-uNqqRydpGd {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #4479d9;
}
.cid-uNqqRydpGd .mbr-text,
.cid-uNqqRydpGd .mbr-section-btn {
  color: #ffffff;
}
.cid-uN2aPJfph6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uN2aPJfph6 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-uN2aPJfph6 .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uN2aPJfph6 .mbr-iconfont {
  font-size: 2rem;
  color: #6592e6;
  padding-right: 1.5rem;
}
.cid-uN2aPJfph6 .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-uN2eHbDquG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #66f860;
}
.cid-uN2eHbDquG .row {
  flex-direction: row-reverse;
}
.cid-uN2eHbDquG .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uN2eHbDquG .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uN2eHbDquG .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uN2eIkb6DZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f9f9f9;
}
.cid-uN2eIkb6DZ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uN2eIkb6DZ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uN2eIkb6DZ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uN2eIZt5KN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffe885;
}
.cid-uN2eIZt5KN .row {
  flex-direction: row-reverse;
}
.cid-uN2eIZt5KN .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uN2eIZt5KN .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uN2eIZt5KN .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uN2eJB7SRa {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffb18a;
}
.cid-uN2eJB7SRa .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uN2eJB7SRa .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uN2eJB7SRa .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uN2eKc1bYh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #37e430;
}
.cid-uN2eKc1bYh .row {
  flex-direction: row-reverse;
}
.cid-uN2eKc1bYh .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uN2eKc1bYh .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uN2eKc1bYh .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uN2eL9I9Lf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ff4545;
}
.cid-uN2eL9I9Lf .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uN2eL9I9Lf .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uN2eL9I9Lf .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uN2eLGtaAj {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #aff860;
}
.cid-uN2eLGtaAj .row {
  flex-direction: row-reverse;
}
.cid-uN2eLGtaAj .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uN2eLGtaAj .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uN2eLGtaAj .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uN2eMkZVSO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffec61;
}
.cid-uN2eMkZVSO .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uN2eMkZVSO .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uN2eMkZVSO .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uN2aPJt1oD {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uN2aPJt1oD .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-uN2aPJt1oD .container {
    max-width: 1400px;
  }
}
.cid-uN2aPJt1oD .card {
  margin: auto;
}
.cid-uN2aPJt1oD .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #bed3f9;
  margin-bottom: 2rem;
}
.cid-uN2aPJt1oD .card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uN2aPJt1oD .row {
  justify-content: center;
}
.cid-uN2aPJt1oD H3 {
  color: #ffffff;
}
