.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.4rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4.25rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 2.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.72rem;
    font-size: calc( 1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((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.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((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: #05386b !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #05386b !important;
  border-color: #05386b !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: #010d18 !important;
  border-color: #010d18 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #010d18 !important;
  border-color: #010d18 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #5cdb95 !important;
  border-color: #5cdb95 !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: #29b869 !important;
  border-color: #29b869 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #29b869 !important;
  border-color: #29b869 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-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: #ff9966 !important;
  border-color: #ff9966 !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: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !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: #05386b;
  color: #05386b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #010d18 !important;
  background-color: transparent!important;
  border-color: #010d18 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #05386b !important;
  border-color: #05386b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #5cdb95;
  color: #5cdb95;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #29b869 !important;
  background-color: transparent!important;
  border-color: #29b869 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #5cdb95 !important;
  border-color: #5cdb95 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  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: #2a747e !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: #ffe161;
  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: #ffd10a !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: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #05386b !important;
}
.text-secondary {
  color: #5cdb95 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #00050a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #26ab62 !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: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !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: #05386b;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #05386b;
  border-color: #05386b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #05386b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #0b78e5;
}
.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: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.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: #05386b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', 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: #05386b;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #05386b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #05386b;
}
.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: #05386b;
  border-bottom-color: #05386b;
}
.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: #05386b !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: #5cdb95 !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='%2305386b' %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-tX9sWmiFL8 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/background4.jpg?v=1Rb6uu");
}
.cid-tX9sWmiFL8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tX9sWmiFL8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tX9sWmiFL8 .mbr-text,
.cid-tX9sWmiFL8 .mbr-section-btn {
  color: #232323;
}
.cid-tX9sWmiFL8 .card-title,
.cid-tX9sWmiFL8 .card-box {
  color: #05386b;
}
.cid-tX9sWmiFL8 .mbr-text,
.cid-tX9sWmiFL8 .link-wrap {
  color: #ffffff;
}
.cid-tXI5794yIL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/06-863x441.jpeg?v=1Rb6uu");
}
.cid-tXI5794yIL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXI5794yIL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXI5794yIL .mbr-text,
.cid-tXI5794yIL .mbr-section-btn {
  color: #232323;
}
.cid-tXI5794yIL .card-title,
.cid-tXI5794yIL .card-box {
  color: #09294a;
}
.cid-tXI5794yIL .mbr-text,
.cid-tXI5794yIL .link-wrap {
  color: #ffffff;
}
.cid-tXI5794yIL .card-box .mbr-text,
.cid-tXI5794yIL .mbr-section-btn {
  color: #4c1313;
}
.cid-sFADQxFnEn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #edf5e1;
}
.cid-sFADQxFnEn .mbr-section-title {
  color: #05386b;
}
.cid-sFADQxFnEn .mbr-section-subtitle {
  color: #05386b;
  text-align: left;
}
.cid-sFADQxFnEn .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tX8V0XZ3Au {
  padding-top: 4rem;
  padding-bottom: 7rem;
  background-color: #edf5e1;
}
.cid-tX8V0XZ3Au img,
.cid-tX8V0XZ3Au .item-img {
  width: 100%;
}
.cid-tX8V0XZ3Au .item:focus,
.cid-tX8V0XZ3Au span:focus {
  outline: none;
}
.cid-tX8V0XZ3Au .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tX8V0XZ3Au .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tX8V0XZ3Au .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tX8V0XZ3Au .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tX8V0XZ3Au .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tX8V0XZ3Au .mbr-section-title {
  color: #05386b;
}
.cid-tX8V0XZ3Au .mbr-text,
.cid-tX8V0XZ3Au .mbr-section-btn {
  text-align: center;
}
.cid-tX8V0XZ3Au .item-title {
  text-align: center;
}
.cid-tX8V0XZ3Au .item-subtitle {
  text-align: left;
}
.cid-tX995PhGxy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tX995PhGxy img,
.cid-tX995PhGxy .item-img {
  width: 100%;
}
.cid-tX995PhGxy .item:focus,
.cid-tX995PhGxy span:focus {
  outline: none;
}
.cid-tX995PhGxy .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tX995PhGxy .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tX995PhGxy .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tX995PhGxy .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tX995PhGxy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tX995PhGxy .mbr-section-title {
  color: #ffffff;
}
.cid-tX995PhGxy .mbr-text,
.cid-tX995PhGxy .mbr-section-btn {
  text-align: center;
}
.cid-tX995PhGxy .item-title {
  text-align: center;
}
.cid-tX995PhGxy .item-subtitle {
  text-align: left;
}
.cid-tXsnlwobsy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXsnlwobsy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXsnlwobsy .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-tXsnlwobsy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXsnlwobsy .row {
  flex-direction: row-reverse;
}
.cid-tXsnlwobsy img {
  width: 100%;
}
.cid-tXsqAWWXqI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXsqAWWXqI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXsqAWWXqI .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-tXsqAWWXqI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXsqAWWXqI .row {
  flex-direction: row-reverse;
}
.cid-tXsqAWWXqI img {
  width: 100%;
}
.cid-tXs9woUfS6 {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #edf5e1;
}
.cid-tXs9woUfS6 img,
.cid-tXs9woUfS6 .item-img {
  width: 100%;
}
.cid-tXs9woUfS6 .item:focus,
.cid-tXs9woUfS6 span:focus {
  outline: none;
}
.cid-tXs9woUfS6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tXs9woUfS6 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tXs9woUfS6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXs9woUfS6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tXs9woUfS6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tXs9woUfS6 .mbr-section-title {
  color: #ffffff;
}
.cid-tXs9woUfS6 .mbr-text,
.cid-tXs9woUfS6 .mbr-section-btn {
  text-align: center;
}
.cid-tXs9woUfS6 .item-title {
  text-align: center;
}
.cid-tXs9woUfS6 .item-subtitle {
  text-align: left;
}
.cid-tXsol2vWHk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXsol2vWHk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXsol2vWHk .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-tXsol2vWHk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXsol2vWHk .row {
  flex-direction: row-reverse;
}
.cid-tXsol2vWHk img {
  width: 100%;
}
.cid-tXstY6KouF {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXstY6KouF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXstY6KouF .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-tXstY6KouF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXstY6KouF .row {
  flex-direction: row-reverse;
}
.cid-tXstY6KouF img {
  width: 100%;
}
.cid-tXssxbl2q0 {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #edf5e1;
}
.cid-tXssxbl2q0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXssxbl2q0 .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-tXssxbl2q0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXssxbl2q0 .row {
  flex-direction: row-reverse;
}
.cid-tXssxbl2q0 img {
  width: 100%;
}
.cid-tX9ddad9WE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tX9ddad9WE img,
.cid-tX9ddad9WE .item-img {
  width: 100%;
}
.cid-tX9ddad9WE .item:focus,
.cid-tX9ddad9WE span:focus {
  outline: none;
}
.cid-tX9ddad9WE .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tX9ddad9WE .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tX9ddad9WE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tX9ddad9WE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tX9ddad9WE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tX9ddad9WE .mbr-section-title {
  color: #05386b;
}
.cid-tX9ddad9WE .mbr-text,
.cid-tX9ddad9WE .mbr-section-btn {
  text-align: center;
}
.cid-tX9ddad9WE .item-title {
  text-align: center;
}
.cid-tX9ddad9WE .item-subtitle {
  text-align: left;
}
.cid-tXrUcVqJXp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXrUcVqJXp img,
.cid-tXrUcVqJXp .item-img {
  width: 100%;
}
.cid-tXrUcVqJXp .item:focus,
.cid-tXrUcVqJXp span:focus {
  outline: none;
}
.cid-tXrUcVqJXp .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tXrUcVqJXp .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tXrUcVqJXp .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXrUcVqJXp .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tXrUcVqJXp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tXrUcVqJXp .mbr-section-title {
  color: #ffffff;
}
.cid-tXrUcVqJXp .mbr-text,
.cid-tXrUcVqJXp .mbr-section-btn {
  text-align: center;
}
.cid-tXrUcVqJXp .item-title {
  text-align: center;
}
.cid-tXrUcVqJXp .item-subtitle {
  text-align: left;
}
.cid-tXswxM6peH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXswxM6peH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXswxM6peH .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-tXswxM6peH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXswxM6peH .row {
  flex-direction: row-reverse;
}
.cid-tXswxM6peH img {
  width: 100%;
}
.cid-tXsyokkLSL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXsyokkLSL img,
.cid-tXsyokkLSL .item-img {
  width: 100%;
}
.cid-tXsyokkLSL .item:focus,
.cid-tXsyokkLSL span:focus {
  outline: none;
}
.cid-tXsyokkLSL .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tXsyokkLSL .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tXsyokkLSL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXsyokkLSL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tXsyokkLSL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tXsyokkLSL .mbr-section-title {
  color: #ffffff;
}
.cid-tXsyokkLSL .mbr-text,
.cid-tXsyokkLSL .mbr-section-btn {
  text-align: center;
}
.cid-tXsyokkLSL .item-title {
  text-align: center;
}
.cid-tXsyokkLSL .item-subtitle {
  text-align: left;
}
.cid-tXxUjWJRov {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #edf5e1;
}
.cid-tXxUjWJRov .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXxUjWJRov .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXxUjWJRov .mbr-section-title {
  color: #05386b;
}
.cid-tXxQ2tLneR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXxQ2tLneR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXxQ2tLneR .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-tXxQ2tLneR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXxQ2tLneR .row {
  flex-direction: row-reverse;
}
.cid-tXxQ2tLneR img {
  width: 100%;
}
.cid-tXxQmtZIWI {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXxQmtZIWI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXxQmtZIWI .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-tXxQmtZIWI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXxQmtZIWI .row {
  flex-direction: row-reverse;
}
.cid-tXxQmtZIWI img {
  width: 100%;
}
.cid-tXxQEUYx10 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXxQEUYx10 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXxQEUYx10 .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-tXxQEUYx10 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXxQEUYx10 .row {
  flex-direction: row-reverse;
}
.cid-tXxQEUYx10 img {
  width: 100%;
}
.cid-tXxP3Ww6aj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXxP3Ww6aj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXxP3Ww6aj .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-tXxP3Ww6aj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXxP3Ww6aj .row {
  flex-direction: row-reverse;
}
.cid-tXxP3Ww6aj img {
  width: 100%;
}
.cid-tXsvz1Ku4W {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXsvz1Ku4W .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXsvz1Ku4W .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-tXsvz1Ku4W .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXsvz1Ku4W .row {
  flex-direction: row-reverse;
}
.cid-tXsvz1Ku4W img {
  width: 100%;
}
.cid-tX9uyXyVQQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tX9uyXyVQQ img,
.cid-tX9uyXyVQQ .item-img {
  width: 100%;
}
.cid-tX9uyXyVQQ .item:focus,
.cid-tX9uyXyVQQ span:focus {
  outline: none;
}
.cid-tX9uyXyVQQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tX9uyXyVQQ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tX9uyXyVQQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tX9uyXyVQQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tX9uyXyVQQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tX9uyXyVQQ .mbr-section-title {
  color: #05386b;
}
.cid-tX9uyXyVQQ .mbr-text,
.cid-tX9uyXyVQQ .mbr-section-btn {
  text-align: center;
}
.cid-tX9uyXyVQQ .item-title {
  text-align: center;
}
.cid-tX9uyXyVQQ .item-subtitle {
  text-align: left;
}
.cid-tX9uyXyVQQ .mbr-section-subtitle {
  color: #05386b;
}
.cid-tXa9uGmqCC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXa9uGmqCC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXa9uGmqCC .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-tXa9uGmqCC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXa9uGmqCC .row {
  flex-direction: row-reverse;
}
.cid-tXa9uGmqCC img {
  width: 100%;
}
.cid-tXabpC7zdT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXabpC7zdT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXabpC7zdT .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-tXabpC7zdT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXabpC7zdT .row {
  flex-direction: row-reverse;
}
.cid-tXabpC7zdT img {
  width: 100%;
}
.cid-tX9ATcYDeE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tX9ATcYDeE img,
.cid-tX9ATcYDeE .item-img {
  width: 100%;
}
.cid-tX9ATcYDeE .item:focus,
.cid-tX9ATcYDeE span:focus {
  outline: none;
}
.cid-tX9ATcYDeE .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tX9ATcYDeE .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tX9ATcYDeE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tX9ATcYDeE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tX9ATcYDeE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tX9ATcYDeE .mbr-section-title {
  color: #ffffff;
}
.cid-tX9ATcYDeE .mbr-text,
.cid-tX9ATcYDeE .mbr-section-btn {
  text-align: center;
}
.cid-tX9ATcYDeE .item-title {
  text-align: center;
}
.cid-tX9ATcYDeE .item-subtitle {
  text-align: left;
}
.cid-tX9ATcYDeE .mbr-section-subtitle {
  color: #05386b;
}
.cid-tX9BqGJJr8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tX9BqGJJr8 img,
.cid-tX9BqGJJr8 .item-img {
  width: 100%;
}
.cid-tX9BqGJJr8 .item:focus,
.cid-tX9BqGJJr8 span:focus {
  outline: none;
}
.cid-tX9BqGJJr8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tX9BqGJJr8 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tX9BqGJJr8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tX9BqGJJr8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tX9BqGJJr8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tX9BqGJJr8 .mbr-section-title {
  color: #ffffff;
}
.cid-tX9BqGJJr8 .mbr-text,
.cid-tX9BqGJJr8 .mbr-section-btn {
  text-align: center;
}
.cid-tX9BqGJJr8 .item-title {
  text-align: center;
}
.cid-tX9BqGJJr8 .item-subtitle {
  text-align: left;
}
.cid-tXxZbn1AyA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXxZbn1AyA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXxZbn1AyA .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-tXxZbn1AyA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXxZbn1AyA .row {
  flex-direction: row-reverse;
}
.cid-tXxZbn1AyA img {
  width: 100%;
}
.cid-tXxZbn1AyA .mbr-description {
  text-align: left;
}
.cid-tXaplbWDRV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXaplbWDRV img,
.cid-tXaplbWDRV .item-img {
  width: 100%;
}
.cid-tXaplbWDRV .item:focus,
.cid-tXaplbWDRV span:focus {
  outline: none;
}
.cid-tXaplbWDRV .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tXaplbWDRV .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tXaplbWDRV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXaplbWDRV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tXaplbWDRV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tXaplbWDRV .mbr-section-title {
  color: #05386b;
}
.cid-tXaplbWDRV .mbr-text,
.cid-tXaplbWDRV .mbr-section-btn {
  text-align: center;
}
.cid-tXaplbWDRV .item-title {
  text-align: center;
}
.cid-tXaplbWDRV .item-subtitle {
  text-align: left;
}
.cid-tXaso5ShVn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXaso5ShVn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXaso5ShVn .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-tXaso5ShVn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXaso5ShVn .row {
  flex-direction: row-reverse;
}
.cid-tXaso5ShVn img {
  width: 100%;
}
.cid-tXathQQrXR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXathQQrXR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXathQQrXR .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-tXathQQrXR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXathQQrXR .row {
  flex-direction: row-reverse;
}
.cid-tXathQQrXR img {
  width: 100%;
}
.cid-tXsyp7sKSr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXsyp7sKSr img,
.cid-tXsyp7sKSr .item-img {
  width: 100%;
}
.cid-tXsyp7sKSr .item:focus,
.cid-tXsyp7sKSr span:focus {
  outline: none;
}
.cid-tXsyp7sKSr .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tXsyp7sKSr .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tXsyp7sKSr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tXsyp7sKSr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tXsyp7sKSr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tXsyp7sKSr .mbr-section-title {
  color: #ffffff;
}
.cid-tXsyp7sKSr .mbr-text,
.cid-tXsyp7sKSr .mbr-section-btn {
  text-align: center;
}
.cid-tXsyp7sKSr .item-title {
  text-align: center;
}
.cid-tXsyp7sKSr .item-subtitle {
  text-align: left;
}
.cid-tXwG8B13Vd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXwG8B13Vd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXwG8B13Vd .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-tXwG8B13Vd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXwG8B13Vd .row {
  flex-direction: row-reverse;
}
.cid-tXwG8B13Vd img {
  width: 100%;
}
.cid-tXwHhheSIq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #edf5e1;
}
.cid-tXwHhheSIq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXwHhheSIq .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-tXwHhheSIq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tXwHhheSIq .row {
  flex-direction: row-reverse;
}
.cid-tXwHhheSIq img {
  width: 100%;
}
.cid-tXI1Lgm9RV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/23-3-1927x1084.jpeg?v=1Rb6uu");
}
.cid-tXI1Lgm9RV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXI1Lgm9RV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXI1Lgm9RV .mbr-text,
.cid-tXI1Lgm9RV .mbr-section-btn {
  color: #232323;
}
.cid-tXI1Lgm9RV .card-title,
.cid-tXI1Lgm9RV .card-box {
  color: #ffffff;
}
.cid-tXI1Lgm9RV .mbr-text,
.cid-tXI1Lgm9RV .link-wrap {
  color: #ffffff;
}
.cid-tXI1Lgm9RV .card-box .mbr-text,
.cid-tXI1Lgm9RV .mbr-section-btn {
  color: #05386b;
}
.cid-tv4ewpK6xv {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #edf5e1;
}
.cid-tv4ewpK6xv .mbr-text {
  color: #05386b;
}
.cid-tv4ewpK6xv .mbr-section-subtitle {
  color: #05386b;
}
.cid-ttfDVnzRdO {
  background-image: url("../../../assets/images/-1734x1239.jpeg?v=1Rb6uu");
}
.cid-ttfDVnzRdO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttfDVnzRdO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttfDXQCsuW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ttfDXQCsuW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttfDXQCsuW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttfDXQCsuW .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-ttfDXQCsuW .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ttfDXQCsuW .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ttfDXQCsuW .card-wrapper {
    padding: 4rem;
  }
}
.cid-ttfDXQCsuW .mbr-text,
.cid-ttfDXQCsuW .mbr-section-btn {
  color: #ffffff;
}
.cid-ttfDXQCsuW .card-title,
.cid-ttfDXQCsuW .card-box {
  text-align: left;
}
.cid-ttfE3m864L {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ttfE3m864L .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttfE3m864L .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-ttfE3m864L .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ttfE3m864L img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ttfE3m864L .text-wrapper {
    padding: 2rem;
  }
}
