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: #6592e6 !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: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #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: #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: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: 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: #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: transparent!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: 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: #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: transparent!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: 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: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !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: #205ac5 !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: #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: #6592e6;
}
.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: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #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: '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: #6592e6 !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: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #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='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tD6KiGqW51 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tD6KiGqW51 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD6KiGqW51 .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-tD6KiGqW51 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tD6KiGqW51 .row {
  flex-direction: row-reverse;
}
.cid-tD6KiGqW51 img {
  width: 100%;
}
.cid-tD6KvIjGTD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tD6KvIjGTD .line {
  background-color: #3491e3;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tD6KC0UaNK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tD6KC0UaNK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD6KC0UaNK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD6KC0UaNK ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tD6KC0UaNK li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tD6KC0UaNK ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tD6NOUgARo {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tD6Lj08GVB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3491e3;
}
.cid-tD6Lj08GVB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tD6Lj08GVB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tD6Lj08GVB .media-container-row {
  justify-content: space-between;
}
.cid-tD6Lj08GVB .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tD6Lj08GVB .text-content {
    max-width: none;
  }
}
.cid-tD6Lj08GVB .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tD6Lj08GVB .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tD6Lj08GVB .mbr-iconfont-social:hover {
  background-color: #fafafa;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tD6Lj08GVB .icons {
    justify-content: center !important;
  }
  .cid-tD6Lj08GVB .text-content * {
    text-align: center;
  }
}
.cid-tD6Lj08GVB .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-tDo1JNgIIQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDo1JNgIIQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo1JNgIIQ .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-tDo1JNgIIQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDo1JNgIIQ .row {
  flex-direction: row-reverse;
}
.cid-tDo1JNgIIQ img {
  width: 100%;
}
.cid-tDo1JNRkvC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDo1JNRkvC .line {
  background-color: #3491e3;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDo1JO5bl2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo1JO5bl2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo1JO5bl2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo1JO5bl2 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tDo1JO5bl2 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tDo1JO5bl2 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tDo1JOovHO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo1JODlyZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3491e3;
}
.cid-tDo1JODlyZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo1JODlyZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo1JODlyZ .media-container-row {
  justify-content: space-between;
}
.cid-tDo1JODlyZ .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tDo1JODlyZ .text-content {
    max-width: none;
  }
}
.cid-tDo1JODlyZ .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDo1JODlyZ .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tDo1JODlyZ .mbr-iconfont-social:hover {
  background-color: #fafafa;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tDo1JODlyZ .icons {
    justify-content: center !important;
  }
  .cid-tDo1JODlyZ .text-content * {
    text-align: center;
  }
}
.cid-tDo1JODlyZ .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-tDo2tuTUNn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDo2tuTUNn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo2tuTUNn .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-tDo2tuTUNn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDo2tuTUNn .row {
  flex-direction: row-reverse;
}
.cid-tDo2tuTUNn img {
  width: 100%;
}
.cid-tDo2tvxRv6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDo2tvxRv6 .line {
  background-color: #3491e3;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDo2tvIGNn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo2tvIGNn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo2tvIGNn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo2tvIGNn ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tDo2tvIGNn li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tDo2tvIGNn ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tDo2tw5FXx {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo2twkDYZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3491e3;
}
.cid-tDo2twkDYZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo2twkDYZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo2twkDYZ .media-container-row {
  justify-content: space-between;
}
.cid-tDo2twkDYZ .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tDo2twkDYZ .text-content {
    max-width: none;
  }
}
.cid-tDo2twkDYZ .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDo2twkDYZ .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tDo2twkDYZ .mbr-iconfont-social:hover {
  background-color: #fafafa;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tDo2twkDYZ .icons {
    justify-content: center !important;
  }
  .cid-tDo2twkDYZ .text-content * {
    text-align: center;
  }
}
.cid-tDo2twkDYZ .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-tDo2ZbVuVA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDo2ZbVuVA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo2ZbVuVA .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-tDo2ZbVuVA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDo2ZbVuVA .row {
  flex-direction: row-reverse;
}
.cid-tDo2ZbVuVA img {
  width: 100%;
}
.cid-tDo2ZcCbzh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDo2ZcCbzh .line {
  background-color: #3491e3;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDo2ZcM5fJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo2ZcM5fJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo2ZcM5fJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo2ZcM5fJ ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tDo2ZcM5fJ li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tDo2ZcM5fJ ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tDo2Zd5Nah {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo2ZdiXXT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3491e3;
}
.cid-tDo2ZdiXXT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo2ZdiXXT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo2ZdiXXT .media-container-row {
  justify-content: space-between;
}
.cid-tDo2ZdiXXT .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tDo2ZdiXXT .text-content {
    max-width: none;
  }
}
.cid-tDo2ZdiXXT .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDo2ZdiXXT .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tDo2ZdiXXT .mbr-iconfont-social:hover {
  background-color: #fafafa;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tDo2ZdiXXT .icons {
    justify-content: center !important;
  }
  .cid-tDo2ZdiXXT .text-content * {
    text-align: center;
  }
}
.cid-tDo2ZdiXXT .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-tDo3XkKG4V {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDo3XkKG4V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo3XkKG4V .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-tDo3XkKG4V .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDo3XkKG4V .row {
  flex-direction: row-reverse;
}
.cid-tDo3XkKG4V img {
  width: 100%;
}
.cid-tDo3XlgR1X {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDo3XlgR1X .line {
  background-color: #3491e3;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDo3XlqeP9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo3XlqeP9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo3XlqeP9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo3XlqeP9 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tDo3XlqeP9 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tDo3XlqeP9 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tEYnzdGS2Q {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEYnzdGS2Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEYnzdGS2Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEYnzdGS2Q ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tEYnzdGS2Q li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tEYnzdGS2Q ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tDo3XlIVTV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo3XlZ6yx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3491e3;
}
.cid-tDo3XlZ6yx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo3XlZ6yx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo3XlZ6yx .media-container-row {
  justify-content: space-between;
}
.cid-tDo3XlZ6yx .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tDo3XlZ6yx .text-content {
    max-width: none;
  }
}
.cid-tDo3XlZ6yx .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDo3XlZ6yx .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tDo3XlZ6yx .mbr-iconfont-social:hover {
  background-color: #fafafa;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tDo3XlZ6yx .icons {
    justify-content: center !important;
  }
  .cid-tDo3XlZ6yx .text-content * {
    text-align: center;
  }
}
.cid-tDo3XlZ6yx .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-tDo4CNo8pq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDo4CNo8pq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo4CNo8pq .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-tDo4CNo8pq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDo4CNo8pq .row {
  flex-direction: row-reverse;
}
.cid-tDo4CNo8pq img {
  width: 100%;
}
.cid-tDo4COe6At {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDo4COe6At .line {
  background-color: #3491e3;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDo4COuSiG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo4COuSiG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo4COuSiG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo4COuSiG ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tDo4COuSiG li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tDo4COuSiG ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tDo4COSo84 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo4CPaxW5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3491e3;
}
.cid-tDo4CPaxW5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo4CPaxW5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo4CPaxW5 .media-container-row {
  justify-content: space-between;
}
.cid-tDo4CPaxW5 .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tDo4CPaxW5 .text-content {
    max-width: none;
  }
}
.cid-tDo4CPaxW5 .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDo4CPaxW5 .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tDo4CPaxW5 .mbr-iconfont-social:hover {
  background-color: #fafafa;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tDo4CPaxW5 .icons {
    justify-content: center !important;
  }
  .cid-tDo4CPaxW5 .text-content * {
    text-align: center;
  }
}
.cid-tDo4CPaxW5 .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-tDo5eOoi3y {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDo5eOoi3y .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo5eOoi3y .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-tDo5eOoi3y .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDo5eOoi3y .row {
  flex-direction: row-reverse;
}
.cid-tDo5eOoi3y img {
  width: 100%;
}
.cid-tDo5eP7IHh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDo5eP7IHh .line {
  background-color: #3491e3;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDo5ePhqM0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo5ePhqM0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo5ePhqM0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo5ePhqM0 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tDo5ePhqM0 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tDo5ePhqM0 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tDo5ePAZLX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo5ePMhHm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3491e3;
}
.cid-tDo5ePMhHm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo5ePMhHm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo5ePMhHm .media-container-row {
  justify-content: space-between;
}
.cid-tDo5ePMhHm .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tDo5ePMhHm .text-content {
    max-width: none;
  }
}
.cid-tDo5ePMhHm .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDo5ePMhHm .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tDo5ePMhHm .mbr-iconfont-social:hover {
  background-color: #fafafa;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tDo5ePMhHm .icons {
    justify-content: center !important;
  }
  .cid-tDo5ePMhHm .text-content * {
    text-align: center;
  }
}
.cid-tDo5ePMhHm .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-tDo65NZEn8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDo65NZEn8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo65NZEn8 .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-tDo65NZEn8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDo65NZEn8 .row {
  flex-direction: row-reverse;
}
.cid-tDo65NZEn8 img {
  width: 100%;
}
.cid-tDo65P02Yd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDo65P02Yd .line {
  background-color: #3491e3;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDo65PeaZX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo65PeaZX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo65PeaZX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo65PeaZX ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tDo65PeaZX li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tDo65PeaZX ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tEYoNNLCoK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEYoNNLCoK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEYoNNLCoK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEYoNNLCoK ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tEYoNNLCoK li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tEYoNNLCoK ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tDo65PQjHD {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo65QdRK1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3491e3;
}
.cid-tDo65QdRK1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo65QdRK1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo65QdRK1 .media-container-row {
  justify-content: space-between;
}
.cid-tDo65QdRK1 .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tDo65QdRK1 .text-content {
    max-width: none;
  }
}
.cid-tDo65QdRK1 .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDo65QdRK1 .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tDo65QdRK1 .mbr-iconfont-social:hover {
  background-color: #fafafa;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tDo65QdRK1 .icons {
    justify-content: center !important;
  }
  .cid-tDo65QdRK1 .text-content * {
    text-align: center;
  }
}
.cid-tDo65QdRK1 .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-tDo6LI4Rwb {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDo6LI4Rwb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo6LI4Rwb .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-tDo6LI4Rwb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDo6LI4Rwb .row {
  flex-direction: row-reverse;
}
.cid-tDo6LI4Rwb img {
  width: 100%;
}
.cid-tDo6LJmh5e {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDo6LJmh5e .line {
  background-color: #3491e3;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDo6LJBzOi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo6LJBzOi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo6LJBzOi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo6LJBzOi ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tDo6LJBzOi li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tDo6LJBzOi ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tDo6LJUNIU {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo6LK8FI5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3491e3;
}
.cid-tDo6LK8FI5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo6LK8FI5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo6LK8FI5 .media-container-row {
  justify-content: space-between;
}
.cid-tDo6LK8FI5 .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tDo6LK8FI5 .text-content {
    max-width: none;
  }
}
.cid-tDo6LK8FI5 .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDo6LK8FI5 .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tDo6LK8FI5 .mbr-iconfont-social:hover {
  background-color: #fafafa;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tDo6LK8FI5 .icons {
    justify-content: center !important;
  }
  .cid-tDo6LK8FI5 .text-content * {
    text-align: center;
  }
}
.cid-tDo6LK8FI5 .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-tDo7sj1w8H {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDo7sj1w8H .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo7sj1w8H .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-tDo7sj1w8H .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDo7sj1w8H .row {
  flex-direction: row-reverse;
}
.cid-tDo7sj1w8H img {
  width: 100%;
}
.cid-tDo7sjL0NB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDo7sjL0NB .line {
  background-color: #3491e3;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDo7sjWd2Q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo7sjWd2Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo7sjWd2Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo7sjWd2Q ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tDo7sjWd2Q li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tDo7sjWd2Q ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tDo7sklvZ6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo7skBkE2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3491e3;
}
.cid-tDo7skBkE2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo7skBkE2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo7skBkE2 .media-container-row {
  justify-content: space-between;
}
.cid-tDo7skBkE2 .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tDo7skBkE2 .text-content {
    max-width: none;
  }
}
.cid-tDo7skBkE2 .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDo7skBkE2 .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tDo7skBkE2 .mbr-iconfont-social:hover {
  background-color: #fafafa;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tDo7skBkE2 .icons {
    justify-content: center !important;
  }
  .cid-tDo7skBkE2 .text-content * {
    text-align: center;
  }
}
.cid-tDo7skBkE2 .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-tDo8DYOqzK {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDo8DYOqzK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo8DYOqzK .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-tDo8DYOqzK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDo8DYOqzK .row {
  flex-direction: row-reverse;
}
.cid-tDo8DYOqzK img {
  width: 100%;
}
.cid-tDo8E07ym5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDo8E07ym5 .line {
  background-color: #3491e3;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDo8E0oGTC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo8E0oGTC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo8E0oGTC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo8E0oGTC ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tDo8E0oGTC li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tDo8E0oGTC ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tDo8E0NXzO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo8E14R1L {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3491e3;
}
.cid-tDo8E14R1L .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo8E14R1L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo8E14R1L .media-container-row {
  justify-content: space-between;
}
.cid-tDo8E14R1L .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tDo8E14R1L .text-content {
    max-width: none;
  }
}
.cid-tDo8E14R1L .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDo8E14R1L .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tDo8E14R1L .mbr-iconfont-social:hover {
  background-color: #fafafa;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tDo8E14R1L .icons {
    justify-content: center !important;
  }
  .cid-tDo8E14R1L .text-content * {
    text-align: center;
  }
}
.cid-tDo8E14R1L .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-tDo9i1fFov {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDo9i1fFov .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo9i1fFov .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-tDo9i1fFov .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDo9i1fFov .row {
  flex-direction: row-reverse;
}
.cid-tDo9i1fFov img {
  width: 100%;
}
.cid-tDo9i2fEzh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDo9i2fEzh .line {
  background-color: #3491e3;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDo9i2AvfK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo9i2AvfK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo9i2AvfK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo9i2AvfK ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tDo9i2AvfK li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tDo9i2AvfK ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tDo9i35Yar {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDo9i3puAg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3491e3;
}
.cid-tDo9i3puAg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDo9i3puAg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDo9i3puAg .media-container-row {
  justify-content: space-between;
}
.cid-tDo9i3puAg .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tDo9i3puAg .text-content {
    max-width: none;
  }
}
.cid-tDo9i3puAg .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDo9i3puAg .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tDo9i3puAg .mbr-iconfont-social:hover {
  background-color: #fafafa;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tDo9i3puAg .icons {
    justify-content: center !important;
  }
  .cid-tDo9i3puAg .text-content * {
    text-align: center;
  }
}
.cid-tDo9i3puAg .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-tDoadecSsh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDoadecSsh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDoadecSsh .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-tDoadecSsh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDoadecSsh .row {
  flex-direction: row-reverse;
}
.cid-tDoadecSsh img {
  width: 100%;
}
.cid-tDoadeWghY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDoadeWghY .line {
  background-color: #3491e3;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDoadf8TCu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDoadf8TCu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDoadf8TCu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDoadf8TCu ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tDoadf8TCu li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tDoadf8TCu ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tEYqqljZJR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEYqqljZJR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEYqqljZJR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEYqqljZJR ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tEYqqljZJR li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tEYqqljZJR ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tEYqrtnd1M {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEYqrtnd1M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEYqrtnd1M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEYqrtnd1M ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tEYqrtnd1M li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tEYqrtnd1M ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tDoadftTV7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDoadfG1GA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3491e3;
}
.cid-tDoadfG1GA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDoadfG1GA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDoadfG1GA .media-container-row {
  justify-content: space-between;
}
.cid-tDoadfG1GA .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tDoadfG1GA .text-content {
    max-width: none;
  }
}
.cid-tDoadfG1GA .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDoadfG1GA .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tDoadfG1GA .mbr-iconfont-social:hover {
  background-color: #fafafa;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tDoadfG1GA .icons {
    justify-content: center !important;
  }
  .cid-tDoadfG1GA .text-content * {
    text-align: center;
  }
}
.cid-tDoadfG1GA .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-tDob0VpOj5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDob0VpOj5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDob0VpOj5 .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-tDob0VpOj5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDob0VpOj5 .row {
  flex-direction: row-reverse;
}
.cid-tDob0VpOj5 img {
  width: 100%;
}
.cid-tDob0Yi93r {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDob0Yi93r .line {
  background-color: #3491e3;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDob0Yykzx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDob0Yykzx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDob0Yykzx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDob0Yykzx ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tDob0Yykzx li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tDob0Yykzx ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tDob0ZS3Ov {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDob10hDGS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3491e3;
}
.cid-tDob10hDGS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDob10hDGS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDob10hDGS .media-container-row {
  justify-content: space-between;
}
.cid-tDob10hDGS .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tDob10hDGS .text-content {
    max-width: none;
  }
}
.cid-tDob10hDGS .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDob10hDGS .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tDob10hDGS .mbr-iconfont-social:hover {
  background-color: #fafafa;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tDob10hDGS .icons {
    justify-content: center !important;
  }
  .cid-tDob10hDGS .text-content * {
    text-align: center;
  }
}
.cid-tDob10hDGS .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-tDodhBVNKM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDodhBVNKM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDodhBVNKM .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-tDodhBVNKM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDodhBVNKM .row {
  flex-direction: row-reverse;
}
.cid-tDodhBVNKM img {
  width: 100%;
}
.cid-tDodhHFiIG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDodhHFiIG .line {
  background-color: #3491e3;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDodhI9goN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDodhI9goN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDodhI9goN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDodhI9goN ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tDodhI9goN li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tDodhI9goN ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tEYryUe4CH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tEYryUe4CH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tEYryUe4CH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tEYryUe4CH ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tEYryUe4CH li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tEYryUe4CH ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tDodhNyv6x {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDodhObSVB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3491e3;
}
.cid-tDodhObSVB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDodhObSVB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDodhObSVB .media-container-row {
  justify-content: space-between;
}
.cid-tDodhObSVB .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tDodhObSVB .text-content {
    max-width: none;
  }
}
.cid-tDodhObSVB .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDodhObSVB .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tDodhObSVB .mbr-iconfont-social:hover {
  background-color: #fafafa;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tDodhObSVB .icons {
    justify-content: center !important;
  }
  .cid-tDodhObSVB .text-content * {
    text-align: center;
  }
}
.cid-tDodhObSVB .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-tDodHSxQwc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDodHSxQwc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDodHSxQwc .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-tDodHSxQwc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDodHSxQwc .row {
  flex-direction: row-reverse;
}
.cid-tDodHSxQwc img {
  width: 100%;
}
.cid-tDodHU39mY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDodHU39mY .line {
  background-color: #3491e3;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDodHUrDVf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDodHUrDVf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDodHUrDVf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDodHUrDVf ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tDodHUrDVf li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tDodHUrDVf ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tDodHURXFO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDodHVv43v {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3491e3;
}
.cid-tDodHVv43v .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDodHVv43v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDodHVv43v .media-container-row {
  justify-content: space-between;
}
.cid-tDodHVv43v .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tDodHVv43v .text-content {
    max-width: none;
  }
}
.cid-tDodHVv43v .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDodHVv43v .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tDodHVv43v .mbr-iconfont-social:hover {
  background-color: #fafafa;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tDodHVv43v .icons {
    justify-content: center !important;
  }
  .cid-tDodHVv43v .text-content * {
    text-align: center;
  }
}
.cid-tDodHVv43v .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
.cid-tDof6iPmwJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tDof6iPmwJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDof6iPmwJ .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-tDof6iPmwJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDof6iPmwJ .row {
  flex-direction: row-reverse;
}
.cid-tDof6iPmwJ img {
  width: 100%;
}
.cid-tDof6m7ukJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tDof6m7ukJ .line {
  background-color: #3491e3;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tDofE2Pt37 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDofE2Pt37 img,
.cid-tDofE2Pt37 .item-img {
  width: 100%;
}
.cid-tDofE2Pt37 .item:focus,
.cid-tDofE2Pt37 span:focus {
  outline: none;
}
.cid-tDofE2Pt37 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tDofE2Pt37 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tDofE2Pt37 .item {
  padding: 0;
  margin: 0;
}
.cid-tDofE2Pt37 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tDofE2Pt37 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tDofE2Pt37 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tDofE2Pt37 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tDofE2Pt37 .mbr-section-title {
  color: #232323;
}
.cid-tDof6n6BL6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDof6n6BL6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDof6n6BL6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDof6n6BL6 ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-tDof6n6BL6 li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-tDof6n6BL6 ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #6592e6;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-tDof6oijme {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tDof6pkzlF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #3491e3;
}
.cid-tDof6pkzlF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDof6pkzlF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tDof6pkzlF .media-container-row {
  justify-content: space-between;
}
.cid-tDof6pkzlF .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-tDof6pkzlF .text-content {
    max-width: none;
  }
}
.cid-tDof6pkzlF .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #fafafa;
  border: 2px solid #fafafa;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-tDof6pkzlF .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-tDof6pkzlF .mbr-iconfont-social:hover {
  background-color: #fafafa;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-tDof6pkzlF .icons {
    justify-content: center !important;
  }
  .cid-tDof6pkzlF .text-content * {
    text-align: center;
  }
}
.cid-tDof6pkzlF .mbr-section-title {
  text-align: center;
  color: #fafafa;
}
