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-ugymzsGZk2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugymzsGZk2 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uj5XE3HsWe {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugypVbNwUP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhWjoKumHj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uix1kZkWz4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-ugAxQoIOCs {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugAxQoIOCs .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uid94K9lpu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u84xiZp7Rh {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u84xiZp7Rh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u84xiZp7Rh .row {
  flex-direction: row-reverse;
}
.cid-u84xiZp7Rh img {
  width: 100%;
}
.cid-u9qlDIrcKY {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #eaeaea;
}
.cid-uerN59CkUa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uerN59CkUa .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uerN59CkUa img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uerN59CkUa .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8iyvsGHWB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8iyvsGHWB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8iyvsGHWB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8iyvsGHWB .text-wrapper {
    padding: 2rem;
  }
}
.cid-ugmd4fHZy5 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
@media (max-width: 991px) {
  .cid-ugmd4fHZy5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugmd4fHZy5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ugmd4fHZy5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uerOj8M7q9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-u9r0S4jgZc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9r0S4jgZc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9r0S4jgZc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9r0S4jgZc .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8iuRqA6DH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8iuRqA6DH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8iuRqA6DH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8iuRqA6DH .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8iFkJUxie {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8iFkJUxie .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8iFkJUxie img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8iFkJUxie .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8iFXOJMx2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8iFXOJMx2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8iFXOJMx2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8iFXOJMx2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8iFXOJMx2 .mbr-section-title {
  text-align: center;
}
.cid-u84j9AOOrJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u84j9AOOrJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u84j9AOOrJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u84j9AOOrJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-u84jnBKbQY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u84jnBKbQY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u84jnBKbQY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u84jnBKbQY .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8tWFYoqwK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8tWFYoqwK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8tWFYoqwK img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8tWFYoqwK .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8tWFYoqwK .mbr-section-title {
  text-align: center;
}
.cid-u8cFb76soZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8cFb76soZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8cFb76soZ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8cFb76soZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8cFcJwF2d {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8cFcJwF2d .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8cFcJwF2d img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8cFcJwF2d .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8cEZwf2gg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u8cEZwf2gg .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u84tZv1mcA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u84tZv1mcA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u84tZv1mcA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u84tZv1mcA .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8iGlonkIS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8iGlonkIS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8iGlonkIS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8iGlonkIS .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8iGmAwfYx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8iGmAwfYx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8iGmAwfYx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8iGmAwfYx .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8iGnBljyL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8iGnBljyL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8iGnBljyL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8iGnBljyL .text-wrapper {
    padding: 2rem;
  }
}
.cid-u84u5Xm2Pz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u84u5Xm2Pz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u84u5Xm2Pz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u84u5Xm2Pz .text-wrapper {
    padding: 2rem;
  }
}
.cid-u84uizF2sz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u84uizF2sz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u84uizF2sz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u84uizF2sz .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8cCg5PKIr {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u8cCg5PKIr .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u8cD5eqJ3o {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8cD5eqJ3o .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8cD5eqJ3o img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8cD5eqJ3o .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8cClHJI68 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8cClHJI68 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8cClHJI68 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8cClHJI68 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u86rqiMsrj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u86rqiMsrj .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u8tZbU0xwi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8tZbU0xwi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8tZbU0xwi .row {
  flex-direction: row-reverse;
}
.cid-u8tZbU0xwi img {
  width: 100%;
}
.cid-u8tZ9WkqZT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8tZ9WkqZT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8tZ9WkqZT img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8tZ9WkqZT .text-wrapper {
    padding: 2rem;
  }
}
.cid-uid99DVV7k {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-ugAy4TIwpR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugAy4TIwpR .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uid9gLaEIU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u86E8Ky6xx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u86E8Ky6xx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u86E8Ky6xx .row {
  flex-direction: row-reverse;
}
.cid-u86E8Ky6xx img {
  width: 100%;
}
.cid-u86E8ObSbm {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u86E8ObSbm .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u86E8Osv22 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u86E8Osv22 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u86E8Osv22 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u86E8Osv22 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u86E8OMM5X {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u86E8OMM5X .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u86E8OZsJX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u86E8OZsJX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u86E8OZsJX .row {
  flex-direction: row-reverse;
}
.cid-u86E8OZsJX img {
  width: 100%;
}
.cid-ufQkMFhmRP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffe885;
}
.cid-ufQkMFhmRP .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u86E8PgvYN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u86E8PgvYN .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u86E8Pv4Gc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u86E8Pv4Gc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u86E8Pv4Gc .row {
  flex-direction: row-reverse;
}
.cid-u86E8Pv4Gc img {
  width: 100%;
}
.cid-ufQlmKd0mI {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffe885;
}
.cid-ufQlmKd0mI .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u86E8POi54 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u86E8POi54 .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u86E8Q5sas {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u86E8Q5sas .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u86E8Q5sas .row {
  flex-direction: row-reverse;
}
.cid-u86E8Q5sas img {
  width: 100%;
}
.cid-ufQlIGBMat {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffe885;
}
.cid-ufQlIGBMat .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u86E8Qm7eg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u86E8Qm7eg .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u86E8QEvRM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u86E8QEvRM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u86E8QEvRM .row {
  flex-direction: row-reverse;
}
.cid-u86E8QEvRM img {
  width: 100%;
}
.cid-ufQlWSbCZN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffe885;
}
.cid-ufQlWSbCZN .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u86E8QWnsQ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u86E8QWnsQ .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u86NJBt1N5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u86NJBt1N5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u86NJBt1N5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u86NJBt1N5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8u2JV8jjq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8u2JV8jjq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8u2JV8jjq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8u2JV8jjq .text-wrapper {
    padding: 2rem;
  }
}
.cid-u86LokVOvX {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u86LokVOvX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u86LokVOvX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u86LokVOvX .text-wrapper {
    padding: 2rem;
  }
}
.cid-u86OKZjZqB {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u86OKZjZqB .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u86ORovsxO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u86ORovsxO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u86ORovsxO img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u86ORovsxO .text-wrapper {
    padding: 2rem;
  }
}
.cid-u86OUw8hgi {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u86OUw8hgi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u86OUw8hgi img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u86OUw8hgi .text-wrapper {
    padding: 2rem;
  }
}
.cid-ufQDK1En6s {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-ufQDK1En6s .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uesU6tN2dR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uesVPnfoQU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uesVPnfoQU .video-wrapper iframe {
  width: 100%;
}
.cid-uesVPnfoQU .mbr-section-title,
.cid-uesVPnfoQU .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uesVPnfoQU .text-wrapper {
    padding: 2rem;
  }
}
.cid-uesVQ0GYr8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uesVQ0GYr8 .video-wrapper iframe {
  width: 100%;
}
.cid-uesVQ0GYr8 .mbr-section-title,
.cid-uesVQ0GYr8 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uesVQ0GYr8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8ud6KDUtw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8ud6KDUtw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8ud6KDUtw img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8ud6KDUtw .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8ujr9XZFu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8ujr9XZFu .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uid9mBsZ7Z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-ugynWVrX4C {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugynWVrX4C .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uid8nUqghx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7AQ0jBz3c {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7AQ0jBz3c .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7AQ0jBz3c img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7AQ0jBz3c .text-wrapper {
    padding: 2rem;
  }
}
.cid-u83T3SSzEe {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u83T3SSzEe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u83T3SSzEe img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u83T3SSzEe .text-wrapper {
    padding: 2rem;
  }
}
.cid-u83TVfLNPP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eaeaea;
}
.cid-u7AVEnlGVW {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7AVEnlGVW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7AVEnlGVW img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7AVEnlGVW .text-wrapper {
    padding: 2rem;
  }
}
.cid-u7AVZoZbWV {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
@media (max-width: 991px) {
  .cid-u7AVZoZbWV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7AVZoZbWV img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7AVZoZbWV .text-wrapper {
    padding: 2rem;
  }
}
.cid-u7AXLJVE3Q {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7AXLJVE3Q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7AXLJVE3Q img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7AXLJVE3Q .text-wrapper {
    padding: 2rem;
  }
}
.cid-u7AY7WzBk7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u7AY7WzBk7 .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u7AYqLHzXI {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7AYqLHzXI .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7AYqLHzXI img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7AYqLHzXI .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8iq03aEp9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8iq03aEp9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8iq03aEp9 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8iq03aEp9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8imoADJmU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8imoADJmU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8imoADJmU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8imoADJmU .text-wrapper {
    padding: 2rem;
  }
}
.cid-u7AYUBy0xl {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u7AYUBy0xl .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u83Ys1eGhU {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u83Ys1eGhU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u83Ys1eGhU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u83Ys1eGhU .text-wrapper {
    padding: 2rem;
  }
}
.cid-u7AZ2RJlc8 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7AZ2RJlc8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7AZ2RJlc8 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7AZ2RJlc8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u7AZ40euwG {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7AZ40euwG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7AZ40euwG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7AZ40euwG .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8isDdjUs6 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8isDdjUs6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8isDdjUs6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8isDdjUs6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u7AZxeAOTl {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u7AZxeAOTl .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uizvg625Ef {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u7B1wGRVXZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7B1wGRVXZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7B1wGRVXZ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7B1wGRVXZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9mxEWBS8u {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9mxEWBS8u .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9mxEWBS8u img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9mxEWBS8u .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9mHXbgGSK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u9mHXbgGSK .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u9mIfgReIz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9mIfgReIz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9mIfgReIz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9mIfgReIz .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9mIl5QfN7 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9mIl5QfN7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9mIl5QfN7 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9mIl5QfN7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9mzqOVJZc {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9mzqOVJZc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9mzqOVJZc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9mzqOVJZc .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9eqRFIGj1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9eqTD3bCQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9eqTD3bCQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9eqTD3bCQ .row {
  flex-direction: row-reverse;
}
.cid-u9eqTD3bCQ img {
  width: 100%;
}
.cid-uid8tnB3lz {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-u6MvEEXL0S {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6MvEEXL0S .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uid3kVB46c {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u7xUx7dgQV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7xUx7dgQV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7xUx7dgQV img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7xUx7dgQV .text-wrapper {
    padding: 2rem;
  }
}
.cid-u6MvEFjFZ5 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u6MvEFjFZ5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u6MvEFjFZ5 .row {
  flex-direction: row-reverse;
}
.cid-u6MvEFjFZ5 img {
  width: 100%;
}
.cid-u8jbxkskQg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8jbxkskQg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8jbxkskQg img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8jbxkskQg .text-wrapper {
    padding: 2rem;
  }
}
.cid-u7xXmheA6i {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7xXmheA6i .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7xXmheA6i img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7xXmheA6i .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8rpZzymZq {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u7xVoFAXnn {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7xVoFAXnn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7xVoFAXnn img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7xVoFAXnn .text-wrapper {
    padding: 2rem;
  }
}
.cid-u7xVpoXqYj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u7xVpoXqYj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u7xVpoXqYj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u7xVpoXqYj .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8a4vrG2ys {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u8a4vrG2ys .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u969vNSUDe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u969vNSUDe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u969vNSUDe img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u969vNSUDe .text-wrapper {
    padding: 2rem;
  }
}
.cid-u83fH0eL5S {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u83fH0eL5S .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u83fH0eL5S img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u83fH0eL5S .text-wrapper {
    padding: 2rem;
  }
}
.cid-u83fR2C5J3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u83fR2C5J3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u83fR2C5J3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u83fR2C5J3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u83jDVNOEj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u83jDVNOEj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u83jDVNOEj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u83jDVNOEj .text-wrapper {
    padding: 2rem;
  }
}
.cid-u83PkOGHg2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u83PkOGHg2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u83PkOGHg2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u83PkOGHg2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u8jaOjVRUl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8jaOjVRUl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8jaOjVRUl img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8jaOjVRUl .text-wrapper {
    padding: 2rem;
  }
}
.cid-u7B5ccL2Yf {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u7B5ccL2Yf .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u82PxigDVJ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u82PxigDVJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u82PxigDVJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u82PxigDVJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-u82O2tSxF4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u82O2tSxF4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u82O2tSxF4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u82O2tSxF4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u82QJaPNgU {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u82QJaPNgU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u82QJaPNgU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u82QJaPNgU .text-wrapper {
    padding: 2rem;
  }
}
.cid-uem3Tuh1Ns {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-uem3Tuh1Ns .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uelZZFzkAA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-uelZZFzkAA .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uemxNaQOty {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uemxNaQOty .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uemxNaQOty img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uemxNaQOty .text-wrapper {
    padding: 2rem;
  }
}
.cid-uemxQvkHb0 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uemxQvkHb0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uemxQvkHb0 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uemxQvkHb0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uemxTSyJ6M {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uemxTSyJ6M .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uemxTSyJ6M img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uemxTSyJ6M .text-wrapper {
    padding: 2rem;
  }
}
.cid-uemxWXGIgS {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uemxWXGIgS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uemxWXGIgS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uemxWXGIgS .text-wrapper {
    padding: 2rem;
  }
}
.cid-uid3rAQ1VP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-ugAyXbJJev {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugAyXbJJev .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uid9ruqh3A {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u8cMyE0LSA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8cMyE0LSA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8cMyE0LSA .row {
  flex-direction: row-reverse;
}
.cid-u8cMyE0LSA img {
  width: 100%;
}
.cid-ugGJeay17W {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u8cMyEygpr {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u8cMyEygpr .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u8cMyENup6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
@media (max-width: 991px) {
  .cid-u8cMyENup6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8cMyENup6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8cMyENup6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-ufQJFy3JvG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ufQJFy3JvG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ufQJFy3JvG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ufQJFy3JvG .text-wrapper {
    padding: 2rem;
  }
}
.cid-uid9uL7HcG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-ugyog6ftyw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugyog6ftyw .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uid8Aq4JQ3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u9aAIPsIi8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9aAIPsIi8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9aAIPsIi8 .row {
  flex-direction: row-reverse;
}
.cid-u9aAIPsIi8 img {
  width: 100%;
}
.cid-uizxYBBO5Z {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eaeaea;
}
.cid-u9aACj7iW3 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9aACj7iW3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9aACj7iW3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9aACj7iW3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9cwRp2URY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eaeaea;
}
.cid-u9aAGO4Pnj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9aAGO4Pnj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9aAGO4Pnj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9aAGO4Pnj .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9cxMxnUWj {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9cxMxnUWj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9cxMxnUWj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9cxMxnUWj .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9aANXeGRF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9aANXeGRF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9aANXeGRF img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9aANXeGRF .text-wrapper {
    padding: 2rem;
  }
}
.cid-uizAWjyHb9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eaeaea;
}
.cid-u9aATbxAUE {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9aATbxAUE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9aATbxAUE img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9aATbxAUE .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9aVtLdTel {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9aVtLdTel .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9aVtLdTel img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9aVtLdTel .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9smhkPzx0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9smiNuhCo {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9smiNuhCo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9smiNuhCo .row {
  flex-direction: row-reverse;
}
.cid-u9smiNuhCo img {
  width: 100%;
}
.cid-u9smiNuhCo .mbr-description {
  text-align: left;
}
.cid-u9tqJ8DIRw {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9tzwdm31q {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eaeaea;
}
.cid-u9aXT2y1JE {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9aXT2y1JE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9aXT2y1JE img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9aXT2y1JE .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9czbmSm1z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9czbmSm1z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9czbmSm1z img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9czbmSm1z .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9aXpkc4bD {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9aXpkc4bD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9aXpkc4bD img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9aXpkc4bD .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9aXXBhfOc {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9aXXBhfOc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9aXXBhfOc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9aXXBhfOc .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9czXyUhhB {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-u9c9vJuUV3 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9c9vJuUV3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9c9vJuUV3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9c9vJuUV3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9aY5B8Dc3 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u9aY5B8Dc3 .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u9aYf8Lq1H {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9aYf8Lq1H .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9aYf8Lq1H img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9aYf8Lq1H .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9aYm0Bi04 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9aYm0Bi04 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9aYm0Bi04 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9aYm0Bi04 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9nURLCQYn {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9nURLCQYn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9nURLCQYn img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9nURLCQYn .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9aYrkbK97 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9aYrkbK97 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9aYrkbK97 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9aYrkbK97 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9aYuax0bz {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9aYuax0bz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9aYuax0bz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9aYuax0bz .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9aYwT7sbi {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9aYwT7sbi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9aYwT7sbi img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9aYwT7sbi .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9aY3NekYL {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u9aY3NekYL .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u9czd6rt07 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9czd6rt07 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9czd6rt07 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9czd6rt07 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uid8Fk5AG2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-u9b1yA6CRH {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9b1yA6CRH .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uid8O5zB3X {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u9cwa45hsJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9cwa45hsJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9cwa45hsJ .row {
  flex-direction: row-reverse;
}
.cid-u9cwa45hsJ img {
  width: 100%;
}
.cid-u9eXwAgqpr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ededed;
}
@media (max-width: 991px) {
  .cid-u9eXwAgqpr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9eXwAgqpr .row {
  flex-direction: row-reverse;
}
.cid-u9eXwAgqpr img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9eXwAgqpr .text-wrapper {
    padding: 2rem;
  }
}
.cid-ugjGasYNsy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugjGasYNsy .video-wrapper iframe {
  width: 100%;
}
.cid-ugjGasYNsy .mbr-section-title,
.cid-ugjGasYNsy .mbr-section-subtitle,
.cid-ugjGasYNsy .mbr-text {
  text-align: center;
}
.cid-u9f4FConNc {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9cnC44gEh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9cnC44gEh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9cnC44gEh img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9cnC44gEh .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9f5DyM5JP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eaeaea;
}
@media (max-width: 991px) {
  .cid-u9f5DyM5JP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9f5DyM5JP img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9f5DyM5JP .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9f4j2vPBi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9f4j2vPBi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9f4j2vPBi img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9f4j2vPBi .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9f6U6oO2J {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eaeaea;
}
.cid-u9cnIAjraT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9cnIAjraT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9cnIAjraT img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9cnIAjraT .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9f7YlCftK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eaeaea;
}
.cid-u9f8pw4vN5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9f8pw4vN5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9f8pw4vN5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9f8pw4vN5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9f4udGA8R {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ededed;
}
@media (max-width: 991px) {
  .cid-u9f4udGA8R .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9f4udGA8R .row {
  flex-direction: row-reverse;
}
.cid-u9f4udGA8R img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9f4udGA8R .text-wrapper {
    padding: 2rem;
  }
}
.cid-uety6VMURE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uety6VMURE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uety6VMURE .row {
  flex-direction: row-reverse;
}
.cid-uety6VMURE img {
  width: 100%;
}
.cid-ufPVzplccl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ufPVzplccl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ufPVzplccl .row {
  flex-direction: row-reverse;
}
.cid-ufPVzplccl img {
  width: 100%;
}
.cid-ufPVAfxRSt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ufPVAfxRSt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ufPVAfxRSt .row {
  flex-direction: row-reverse;
}
.cid-ufPVAfxRSt img {
  width: 100%;
}
.cid-u9b1yExYKO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u9b1yExYKO .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u9znroKzNY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9znroKzNY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9znroKzNY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9znroKzNY .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9znzWFmE5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9znzWFmE5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9znzWFmE5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9znzWFmE5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9znEUjKxZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9znEUjKxZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9znEUjKxZ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9znEUjKxZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-u9znKfOBhd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9znKfOBhd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9znKfOBhd img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u9znKfOBhd .text-wrapper {
    padding: 2rem;
  }
}
.cid-uid8YMbQyi {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-ugynEcT9Zz {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugynEcT9Zz .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uid3Tb8x3k {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uiekwza6RQ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugwr8Q6b8f {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugwr8Q6b8f .mbr-section-subtitle {
  text-align: center;
}
.cid-ugwr8Q6b8f .mbr-text {
  text-align: center;
}
.cid-ugwuBLCT5A {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugwuBLCT5A .mbr-section-subtitle {
  text-align: center;
}
.cid-ugwuBLCT5A .mbr-text {
  text-align: center;
}
.cid-ugwr9XGWAM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugwr9XGWAM .mbr-section-subtitle {
  text-align: center;
}
.cid-ugwr9XGWAM .mbr-text {
  text-align: center;
}
.cid-ugwrd4cJBg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugwrd4cJBg .mbr-section-subtitle {
  text-align: center;
}
.cid-ugwrd4cJBg .mbr-text {
  text-align: center;
}
.cid-ugGqY7aU0V {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ugGr3cILkQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugGr3cILkQ .mbr-section-subtitle {
  text-align: center;
}
.cid-ugGr3cILkQ .mbr-text {
  text-align: center;
}
.cid-ugGr4f0Yas {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugGr4f0Yas .mbr-section-subtitle {
  text-align: center;
}
.cid-ugGr4f0Yas .mbr-text {
  text-align: center;
}
.cid-ugGr4W4vrj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugGr4W4vrj .mbr-section-subtitle {
  text-align: center;
}
.cid-ugGr4W4vrj .mbr-text {
  text-align: center;
}
.cid-ugGr5SQEDj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugGr5SQEDj .mbr-section-subtitle {
  text-align: center;
}
.cid-ugGr5SQEDj .mbr-text {
  text-align: center;
}
.cid-ugGrSLoRU0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugGEiY77J5 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ugGEiY77J5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugGEiY77J5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ugGEiY77J5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-ugGEjO62cq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ugGEjO62cq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugGEjO62cq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ugGEjO62cq .text-wrapper {
    padding: 2rem;
  }
}
.cid-uizaNYJ13N {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-uizaNYJ13N .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uizcbg1gNU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uizblukMm4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uizblukMm4 .mbr-section-subtitle {
  text-align: center;
}
.cid-uizblukMm4 .mbr-text {
  text-align: center;
}
.cid-uizbmh6pde {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uizbmh6pde .mbr-section-subtitle {
  text-align: center;
}
.cid-uizbmh6pde .mbr-text {
  text-align: center;
}
.cid-uizbmWIeQK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uizbmWIeQK .mbr-section-subtitle {
  text-align: center;
}
.cid-uizbmWIeQK .mbr-text {
  text-align: center;
}
.cid-uizbnKUEwb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uizbnKUEwb .mbr-section-subtitle {
  text-align: center;
}
.cid-uizbnKUEwb .mbr-text {
  text-align: center;
}
.cid-ugwroDzg6m {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-ugwroDzg6m .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uizd3Ha5rZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-ugwuQqykOw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugwuQqykOw .mbr-section-subtitle {
  text-align: center;
}
.cid-ugwuQqykOw .mbr-text {
  text-align: center;
}
.cid-uiAsmxYNe6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uiAsktHGBi {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uiAsktHGBi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uiAsktHGBi img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uiAsktHGBi .text-wrapper {
    padding: 2rem;
  }
}
.cid-ugGjrp3wvF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugymVlRdZj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugymVlRdZj .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uid3DdOvK0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uieiUdF4pD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u6MY95zmeY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6MY95zmeY .mbr-section-subtitle {
  text-align: center;
}
.cid-u6MY95zmeY .mbr-text {
  text-align: center;
}
.cid-u9ef4ccF0d {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u6MY9XTSaV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6MY9XTSaV .mbr-section-subtitle {
  text-align: center;
}
.cid-u6MY9XTSaV .mbr-text {
  text-align: center;
}
.cid-u9ehbjrkVw {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-u6MYb8oaMw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6MYb8oaMw .mbr-section-subtitle {
  text-align: center;
}
.cid-u6MYb8oaMw .mbr-text {
  text-align: center;
}
.cid-u9ejk79dS2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9ejmvzWbt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9ejmvzWbt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9ejmvzWbt .row {
  flex-direction: row-reverse;
}
.cid-u9ejmvzWbt img {
  width: 100%;
}
.cid-u6MYclfuBS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6MYclfuBS .mbr-section-subtitle {
  text-align: center;
}
.cid-u6MYclfuBS .mbr-text {
  text-align: center;
}
.cid-u6MYbJshtK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6MYbJshtK .mbr-section-subtitle {
  text-align: center;
}
.cid-u6MYbJshtK .mbr-text {
  text-align: center;
}
.cid-u9ekzdMpjq {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9ekZUQiyE {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9ekZUQiyE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9ekZUQiyE .row {
  flex-direction: row-reverse;
}
.cid-u9ekZUQiyE img {
  width: 100%;
}
.cid-u6MYcWI5FS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6MYcWI5FS .mbr-section-subtitle {
  text-align: center;
}
.cid-u6MYcWI5FS .mbr-text {
  text-align: center;
}
.cid-u6MYQzt5RH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6MYQzt5RH .mbr-section-subtitle {
  text-align: center;
}
.cid-u6MYQzt5RH .mbr-text {
  text-align: center;
}
.cid-u9nyyRSd3d {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9nyzNH9uK {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9nyzNH9uK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9nyzNH9uK .row {
  flex-direction: row-reverse;
}
.cid-u9nyzNH9uK img {
  width: 100%;
}
.cid-u9nwRGdT3E {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u9nwRGdT3E .mbr-section-subtitle {
  text-align: center;
}
.cid-u9nwRGdT3E .mbr-text {
  text-align: center;
}
.cid-u9nwSmXISv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u9nwSmXISv .mbr-section-subtitle {
  text-align: center;
}
.cid-u9nwSmXISv .mbr-text {
  text-align: center;
}
.cid-u9elghRedk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u9ntSqDXj0 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9ntSqDXj0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9ntSqDXj0 .row {
  flex-direction: row-reverse;
}
.cid-u9ntSqDXj0 img {
  width: 100%;
}
.cid-u6MZ0u7IbS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6MZ0u7IbS .mbr-section-subtitle {
  text-align: center;
}
.cid-u6MZ0u7IbS .mbr-text {
  text-align: center;
}
.cid-u6MZ17aRz0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u6MZ17aRz0 .mbr-section-subtitle {
  text-align: center;
}
.cid-u6MZ17aRz0 .mbr-text {
  text-align: center;
}
.cid-u9en1RjwL7 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u88NDGBPxt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u88NDGBPxt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u88NDGBPxt img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u88NDGBPxt .text-wrapper {
    padding: 2rem;
  }
}
.cid-u88NDGBPxt .mbr-section-title {
  color: #e43f3f;
}
.cid-u7B5gNkzAd {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u7B5gNkzAd .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u8rsMc7jwJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u8rsMc7jwJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u8rsMc7jwJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u8rsMc7jwJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uid3xFIIpY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-ugAz5CdwpR {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugAz5CdwpR .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uid9ABcN7X {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u9yrAw8Vv8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9yrAw8Vv8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9yrAw8Vv8 .row {
  flex-direction: row-reverse;
}
.cid-u9yrAw8Vv8 img {
  width: 100%;
}
.cid-ugNhtsc3mM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugNnh7w94L {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ugNnh7w94L .video-wrapper iframe {
  width: 100%;
}
.cid-ugNnh7w94L .mbr-section-title,
.cid-ugNnh7w94L .mbr-section-subtitle,
.cid-ugNnh7w94L .mbr-text {
  text-align: center;
}
.cid-ugNpf2eM4x {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u9yrVQBBzN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eaeaea;
}
.cid-u9ywfp131B {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9ywfp131B .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9ywfp131B .row {
  flex-direction: row-reverse;
}
.cid-u9ywfp131B img {
  width: 100%;
}
.cid-u9zaMkHEk2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eaeaea;
}
.cid-u9yzaEQogA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u9yzaEQogA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u9yzaEQogA .row {
  flex-direction: row-reverse;
}
.cid-u9yzaEQogA img {
  width: 100%;
}
.cid-ugllsHBDHT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #eaeaea;
}
.cid-ugluz6jmQO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ugluz6jmQO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugluz6jmQO .row {
  flex-direction: row-reverse;
}
.cid-ugluz6jmQO img {
  width: 100%;
}
.cid-ugluA8DMXe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugluA8DMXe .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ugluA8DMXe .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-ugluA8DMXe .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-ugluA8DMXe .panel-body,
.cid-ugluA8DMXe .card-header {
  padding: 1rem 0;
}
.cid-ugluA8DMXe .panel-title-edit {
  color: #000000;
}
.cid-uglwfixR1u {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uglwfixR1u .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uglwfixR1u .row {
  flex-direction: row-reverse;
}
.cid-uglwfixR1u img {
  width: 100%;
}
.cid-uglwgoOMQx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uglwgoOMQx .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uglwgoOMQx .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uglwgoOMQx .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-uglwgoOMQx .panel-body,
.cid-uglwgoOMQx .card-header {
  padding: 1rem 0;
}
.cid-uglwgoOMQx .panel-title-edit {
  color: #000000;
}
.cid-uglAMXCag5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uglAWO6sK4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uglAWO6sK4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uglAWO6sK4 .row {
  flex-direction: row-reverse;
}
.cid-uglAWO6sK4 img {
  width: 100%;
}
.cid-uglCbNo7XC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uglCbNo7XC .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-uglCbNo7XC .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uglCbNo7XC .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #6592e6;
}
.cid-uglCbNo7XC .panel-body,
.cid-uglCbNo7XC .card-header {
  padding: 1rem 0;
}
.cid-uglCbNo7XC .panel-title-edit {
  color: #000000;
}
.cid-uhOCt6ADX0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uhOCt6ADX0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhOCt6ADX0 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uhOCt6ADX0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uhUyOzDKdj {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhUyOzDKdj .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uhUyqOAkO5 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhUyqOAkO5 .mbr-text {
  text-align: center;
}
.cid-uhUysQjEF6 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhUysQjEF6 .mbr-text {
  text-align: center;
}
.cid-uhUytIFhHJ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhUytIFhHJ .mbr-text {
  text-align: center;
}
.cid-uhUyvfdkQu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhUyvfdkQu .mbr-text {
  text-align: center;
}
.cid-uhUAv9fYe0 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhUAv9fYe0 .mbr-text {
  text-align: center;
}
.cid-uhUyw8I9yQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhUyw8I9yQ .mbr-text {
  text-align: center;
}
.cid-uhUAvZ5gYW {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhUAvZ5gYW .mbr-text {
  text-align: center;
}
.cid-uid9DYr5tf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-ugGhNW8ZGC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugGhNW8ZGC .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uid40rJdoA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uiekA6NOuD {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugGhNX3Zyk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #f4f4f4;
}
@media (max-width: 991px) {
  .cid-ugGhNX3Zyk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugGhNX3Zyk img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ugGhNX3Zyk .text-wrapper {
    padding: 2rem;
  }
}
.cid-ugGiJ16MZE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ugGiJ16MZE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugGiJ16MZE .row {
  flex-direction: row-reverse;
}
.cid-ugGiJ16MZE img {
  width: 100%;
}
.cid-ugGiNXHfDW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eaeaea;
}
.cid-ugGinn7FKh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ugGinn7FKh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugGinn7FKh img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ugGinn7FKh .text-wrapper {
    padding: 2rem;
  }
}
.cid-ugGiOWtvcA {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eaeaea;
}
.cid-ugGinLSDCm {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ugGinLSDCm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugGinLSDCm img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ugGinLSDCm .text-wrapper {
    padding: 2rem;
  }
}
.cid-ugGjxBvJ44 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugGmC5vneb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugGmC5vneb .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uid9HzYJhf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugGmC5XSrf {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ugGmC5XSrf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugGmC5XSrf .row {
  flex-direction: row-reverse;
}
.cid-ugGmC5XSrf img {
  width: 100%;
}
.cid-uid9KlYS2k {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-ugPl1IUFp4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugPl1IUFp4 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uid3OWR3eF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uiek8AGffB {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugPl1JfZ9F {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ugPl1JfZ9F .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugPl1JfZ9F .row {
  flex-direction: row-reverse;
}
.cid-ugPl1JfZ9F img {
  width: 100%;
}
.cid-ugPlyxwNyh {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugPl1KxzYi {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ugPm1m0W9T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugPm1m0W9T .mbr-section-subtitle {
  text-align: center;
}
.cid-ugPm1m0W9T .mbr-text {
  text-align: center;
}
.cid-ugPm26zMv3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugPm26zMv3 .mbr-section-subtitle {
  text-align: center;
}
.cid-ugPm26zMv3 .mbr-text {
  text-align: center;
}
.cid-ugPmglNsr0 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugPmv9GAiP {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-ugPmv9GAiP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugPmv9GAiP .row {
  flex-direction: row-reverse;
}
.cid-ugPmv9GAiP img {
  width: 100%;
}
.cid-ugPmKasUzl {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eaeaea;
}
.cid-ugPnatAqcc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugPnatAqcc .mbr-section-subtitle {
  text-align: center;
}
.cid-ugPnatAqcc .mbr-text {
  text-align: center;
}
.cid-ugPnbSIfnB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugPnbSIfnB .mbr-section-subtitle {
  text-align: center;
}
.cid-ugPnbSIfnB .mbr-text {
  text-align: center;
}
.cid-ugPndsn2Pa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugPndsn2Pa .mbr-section-subtitle {
  text-align: center;
}
.cid-ugPndsn2Pa .mbr-text {
  text-align: center;
}
.cid-ugPneGVB2V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugPneGVB2V .mbr-section-subtitle {
  text-align: center;
}
.cid-ugPneGVB2V .mbr-text {
  text-align: center;
}
.cid-ugPnfm1PCV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugPnfm1PCV .mbr-section-subtitle {
  text-align: center;
}
.cid-ugPnfm1PCV .mbr-text {
  text-align: center;
}
.cid-uiA2VFXoB9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eaeaea;
}
.cid-uiA2VFXoB9 .mbr-section-subtitle {
  text-align: center;
}
.cid-uiA3SuDo6M {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uiA3SuDo6M .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uiA3SuDo6M img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uiA3SuDo6M .text-wrapper {
    padding: 2rem;
  }
}
.cid-ugPnBgXk7J {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ugPnP105tH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugPnP105tH .mbr-section-subtitle {
  text-align: center;
}
.cid-ugPnP105tH .mbr-text {
  text-align: center;
}
.cid-ugPnR1ta0r {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugPnR1ta0r .mbr-section-subtitle {
  text-align: center;
}
.cid-ugPnR1ta0r .mbr-text {
  text-align: center;
}
.cid-ugPnQqt9n0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugPnQqt9n0 .mbr-section-subtitle {
  text-align: center;
}
.cid-ugPnQqt9n0 .mbr-text {
  text-align: center;
}
.cid-ugPoscRJRe {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eaeaea;
}
@media (max-width: 991px) {
  .cid-ugPoscRJRe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ugPoscRJRe img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-ugPoscRJRe .text-wrapper {
    padding: 2rem;
  }
}
.cid-ugPoYLYWPr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugPoYLYWPr .mbr-section-subtitle {
  text-align: center;
}
.cid-ugPoYLYWPr .mbr-text {
  text-align: center;
}
.cid-ugPoZtG7nN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugPoZtG7nN .mbr-section-subtitle {
  text-align: center;
}
.cid-ugPoZtG7nN .mbr-text {
  text-align: center;
}
.cid-ugPp09cUVT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugPp09cUVT .mbr-section-subtitle {
  text-align: center;
}
.cid-ugPp09cUVT .mbr-text {
  text-align: center;
}
.cid-ugPp0ZA2Vd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ugPp0ZA2Vd .mbr-section-subtitle {
  text-align: center;
}
.cid-ugPp0ZA2Vd .mbr-text {
  text-align: center;
}
.cid-uiA5DCfls1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eaeaea;
}
.cid-uiA5DCfls1 .mbr-section-subtitle {
  text-align: center;
}
.cid-uiA5NKwul6 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uiA5NKwul6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uiA5NKwul6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uiA5NKwul6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-ugPprQkTqD {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uhWhnRNeD9 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhWhnRNeD9 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uid31I5AI4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uhWhnSp6qr {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uhWhnSp6qr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhWhnSp6qr .row {
  flex-direction: row-reverse;
}
.cid-uhWhnSp6qr img {
  width: 100%;
}
.cid-uhWhnT5Mv8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uhWhnTg5cn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eaeaea;
}
@media (max-width: 991px) {
  .cid-uhWhnTg5cn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uhWhnTg5cn .row {
  flex-direction: row-reverse;
}
.cid-uhWhnTg5cn img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uhWhnTg5cn .text-wrapper {
    padding: 2rem;
  }
}
.cid-uid35zP9g1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-uiA3pkRNxo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uiA3pkRNxo .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uiA3pl2FNN {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uiA3plfrTy {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uiA3plfrTy .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uiA3plfrTy .row {
  flex-direction: row-reverse;
}
.cid-uiA3plfrTy img {
  width: 100%;
}
.cid-uiA3plx1B5 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-uiArIboHMw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uiArIboHMw .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uiArIbDdTc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uiArIbPLdn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uiArIbPLdn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uiArIbPLdn .row {
  flex-direction: row-reverse;
}
.cid-uiArIbPLdn img {
  width: 100%;
}
.cid-uiArIccyca {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-uiB1Ofojq8 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uiB1Ofojq8 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uiB1OfDqT4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uiB1OfOaNg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uiB1OfOaNg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uiB1OfOaNg .row {
  flex-direction: row-reverse;
}
.cid-uiB1OfOaNg img {
  width: 100%;
}
.cid-uiB1OgaS68 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-uj3KNoIgzb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uj3KNoIgzb .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uj3KNoUXvm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uj3KNp8QWm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uj3KNp8QWm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uj3KNp8QWm .row {
  flex-direction: row-reverse;
}
.cid-uj3KNp8QWm img {
  width: 100%;
}
.cid-uj3KNtLY0B {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uj3KNtLY0B .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uj3KNtLY0B img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uj3KNtLY0B .text-wrapper {
    padding: 2rem;
  }
}
.cid-uj3KNu4162 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uj3KNu4162 .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uj3KNulA7d {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uj3KNulA7d .mbr-text {
  text-align: center;
}
.cid-uj3KNv0QfV {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uj3KNv0QfV .mbr-text {
  text-align: center;
}
.cid-uj3KNvjN0q {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uj3KNvjN0q .mbr-text {
  text-align: center;
}
.cid-uj3KNvFRJq {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uj3KNvFRJq .mbr-text {
  text-align: center;
}
.cid-uj3KNw2E5d {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uj3KNw2E5d .mbr-text {
  text-align: center;
}
.cid-uj3KNwniQ8 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uj3KNwniQ8 .mbr-text {
  text-align: center;
}
.cid-uj3KNwMZ80 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uj3KNwMZ80 .mbr-text {
  text-align: center;
}
.cid-uj3KNx6QMt {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
.cid-u95ogqOWsI {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-u95ogqOWsI .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-uid39JKFLB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-u95ogsdgfk {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u95ogsdgfk .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u95ogsdgfk .row {
  flex-direction: row-reverse;
}
.cid-u95ogsdgfk img {
  width: 100%;
}
.cid-u95ogsDX3L {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uix6ry1EyG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #eaeaea;
}
.cid-u95ogtqMPv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u95ogtqMPv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u95ogtqMPv .row {
  flex-direction: row-reverse;
}
.cid-u95ogtqMPv img {
  width: 100%;
}
.cid-u95ogtQxMX {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u95ogtQxMX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u95ogtQxMX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u95ogtQxMX .text-wrapper {
    padding: 2rem;
  }
}
.cid-u95oguqaaU {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u95oguqaaU .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u95oguNmO3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u95oguNmO3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u95oguNmO3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u95oguNmO3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u95ogvfELv {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u95ogvfELv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u95ogvfELv img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u95ogvfELv .text-wrapper {
    padding: 2rem;
  }
}
.cid-u95ogvF0Ee {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u95ogvF0Ee .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u95ogvF0Ee img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u95ogvF0Ee .text-wrapper {
    padding: 2rem;
  }
}
.cid-u95ogw6o6t {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bed3f9;
}
.cid-u95ogw6o6t .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u95ogwtTbS {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u95ogwtTbS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u95ogwtTbS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u95ogwtTbS .text-wrapper {
    padding: 2rem;
  }
}
.cid-u95ogwZ391 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u95ogwZ391 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u95ogwZ391 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u95ogwZ391 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u95ogxvxUw {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #f6f6f6;
}
@media (max-width: 991px) {
  .cid-u95ogxvxUw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u95ogxvxUw img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u95ogxvxUw .text-wrapper {
    padding: 2rem;
  }
}
.cid-u95ogxZ023 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u95ogxZ023 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u95ogxZ023 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u95ogxZ023 .text-wrapper {
    padding: 2rem;
  }
}
.cid-u95ogzG2kj {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u95ogzG2kj .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u95ogAcbzZ {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u95ogAcbzZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u95ogAcbzZ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u95ogAcbzZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-u95ogAReGE {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u95ogAReGE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u95ogAReGE img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u95ogAReGE .text-wrapper {
    padding: 2rem;
  }
}
.cid-u95ogBxbHk {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bed3f9;
}
.cid-u95ogBxbHk .line {
  background-color: #9fdbf8;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-u95ogC1B0Z {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-u95ogC1B0Z .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-u95ogC1B0Z img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-u95ogC1B0Z .text-wrapper {
    padding: 2rem;
  }
}
.cid-uid3daKXgo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #eaeaea;
}
