.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.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.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #000000 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ff9966 !important;
}
.bg-danger {
  background-color: #f26118 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #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: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #f26118 !important;
  border-color: #f26118 !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: #aa3f0a !important;
  border-color: #aa3f0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #aa3f0a !important;
  border-color: #aa3f0a !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: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff6666;
  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: #ff0f0f !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: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #f26118;
  color: #f26118;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #aa3f0a !important;
  background-color: transparent!important;
  border-color: #aa3f0a !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #f26118 !important;
  border-color: #f26118 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #000000 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ff9966 !important;
}
.text-danger {
  color: #f26118 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ff5500 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #9b3a09 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ff9966;
}
.alert-danger {
  background-color: #f26118;
}
.mbr-gallery-filter li.active .btn {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #000000;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #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: #fde5d9;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #000000 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #000000;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #000000;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #000000;
  border-bottom-color: #000000;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #000000 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23000000' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-sFzxmVl7J6 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-sFzxmVl7J6 .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-sFzxmVl7J6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-sFzxmVl7J6 .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzxmVl7J6 .mbr-text,
.cid-sFzxmVl7J6 .mbr-section-btn {
  color: #353535;
  text-align: justify;
}
.cid-sFzxmVl7J6 .mbr-section-title {
  color: #40b0bf;
}
.cid-sFzFvgBfc0 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-sFzFvgBfc0 img,
.cid-sFzFvgBfc0 .item-img {
  width: 100%;
}
.cid-sFzFvgBfc0 .item:focus,
.cid-sFzFvgBfc0 span:focus {
  outline: none;
}
.cid-sFzFvgBfc0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sFzFvgBfc0 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sFzFvgBfc0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFzFvgBfc0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-sFzFvgBfc0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sFzFvgBfc0 .mbr-section-title {
  color: #000000;
}
.cid-sFzFvgBfc0 .mbr-text,
.cid-sFzFvgBfc0 .mbr-section-btn {
  text-align: center;
}
.cid-sFzFvgBfc0 .item-title {
  text-align: center;
  color: #f26118;
}
.cid-sFzFvgBfc0 .item-subtitle {
  text-align: left;
}
.cid-sFzErVWEaH {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background: #ffffff;
}
.cid-sFzErVWEaH .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sFzErVWEaH .team-card:hover {
  transform: translateY(-10px);
}
.cid-sFzErVWEaH .card-wrap {
  background: #fafafa;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sFzErVWEaH .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sFzErVWEaH .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-sFzErVWEaH .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFzErVWEaH .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-sFzErVWEaH .social-row {
  text-align: center;
}
.cid-sFzErVWEaH .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-sFzErVWEaH .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-sFzErVWEaH .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-sFzErVWEaH .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-sFzErVWEaH .mbr-section-title {
  color: #000000;
}
.cid-sFzErVWEaH .mbr-section-title1 {
  color: #000000;
}
.cid-sFAw7z51L3 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #fafafa;
}
.cid-sFAw7z51L3 img {
  width: 120px;
  margin: auto;
}
.cid-sFAw7z51L3 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-sFAw7z51L3 .card {
    max-width: 12.5%;
  }
}
.cid-sFAw7z51L3 .mbr-section-subtitle {
  color: #353535;
}
.cid-sFAyMcKwph {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-sFAyMcKwph .media-container-row {
  justify-content: space-between;
}
.cid-sFAyMcKwph .text-content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .cid-sFAyMcKwph .text-content {
    max-width: none;
  }
}
.cid-sFAyMcKwph .mbr-iconfont-social {
  margin: 0.5rem;
  font-size: 32px;
  display: flex;
  border-radius: 50%;
  text-align: center;
  color: #4479d9;
  border: 2px solid #4479d9;
  justify-content: center;
  align-content: center;
  transition: all 0.3s;
}
.cid-sFAyMcKwph .mbr-iconfont-social:before {
  padding: 0.6rem;
}
.cid-sFAyMcKwph .mbr-iconfont-social:hover {
  background-color: #4479d9;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sFAyMcKwph .icons {
    justify-content: center !important;
  }
  .cid-sFAyMcKwph .text-content * {
    text-align: center;
  }
}
.cid-sFAyMcKwph .mbr-section-title {
  color: #353535;
}
.cid-sFAyMcKwph P {
  color: #000000;
}
.cid-sFAyHxWQ1N {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #fafafa;
}
.cid-sFAyHxWQ1N .item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.cid-sFAyHxWQ1N .item .icon-wrap {
  text-align: center;
}
.cid-sFAyHxWQ1N .item span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
.cid-sFAyHxWQ1N .item::before {
  content: "\e96b";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: -15px;
  top: 12%;
  color: #4479d9;
}
.cid-sFAyHxWQ1N .item.first:before {
  display: none;
}
.cid-sFAyHxWQ1N .item.five:before {
  display: none;
}
.cid-sFAyHxWQ1N .icon-box {
  background: #4479d9;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
}
.cid-sFAyHxWQ1N .text-box {
  margin-top: 1rem;
  text-align: center;
}
.cid-sFAyHxWQ1N .mbr-iconfont {
  color: #000000 !important;
  position: absolute;
  top: 50%;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-sFAyHxWQ1N .item:before {
    display: none;
  }
  .cid-sFAyHxWQ1N .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sFzDs3t9EG {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-sFzDs3t9EG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sFzDs3t9EG form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-sFzDs3t9EG form .mbr-section-btn .btn {
  display: inline-flex;
}
@media (max-width: 991px) {
  .cid-sFzDs3t9EG form .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-sFzDs3t9EG .mbr-section-title {
  color: #000000;
}
.cid-sFzDs3t9EG .mbr-section-subtitle {
  color: #000000;
}
.cid-sFzIA7KGYz {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-sFzIA7KGYz .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-sFzIA7KGYz .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-sFzIA7KGYz .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFzIA7KGYz .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-sFzIA7KGYz .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #000000;
}
.cid-sFAxp7Y5iM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-sFAxp7Y5iM .google-map {
  height: 30rem;
  position: relative;
}
.cid-sFAxp7Y5iM .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sFAxp7Y5iM .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sFAxp7Y5iM .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sFAxp7Y5iM .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uYRJ5iLXj6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uYRJ5iLXj6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYRJ5iLXj6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYRJ5iLXj6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYRJ5iLXj6 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uYRJ5iLXj6 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uXbseyL4jS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uYi4PjbtKv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYi4PjbtKv img,
.cid-uYi4PjbtKv .item-img {
  width: 100%;
}
.cid-uYi4PjbtKv .item:focus,
.cid-uYi4PjbtKv span:focus {
  outline: none;
}
.cid-uYi4PjbtKv .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYi4PjbtKv .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYi4PjbtKv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYi4PjbtKv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYi4PjbtKv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYi4PjbtKv .mbr-section-title {
  color: #ffffff;
}
.cid-uYi4PjbtKv .mbr-text,
.cid-uYi4PjbtKv .mbr-section-btn {
  text-align: center;
}
.cid-uYi4PjbtKv .item-title {
  text-align: center;
}
.cid-uYi4PjbtKv .item-subtitle {
  text-align: left;
}
.cid-uYi7uAZO97 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYi7uAZO97 img,
.cid-uYi7uAZO97 .item-img {
  width: 100%;
}
.cid-uYi7uAZO97 .item:focus,
.cid-uYi7uAZO97 span:focus {
  outline: none;
}
.cid-uYi7uAZO97 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYi7uAZO97 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYi7uAZO97 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYi7uAZO97 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYi7uAZO97 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYi7uAZO97 .mbr-section-title {
  color: #ffffff;
}
.cid-uYi7uAZO97 .mbr-text,
.cid-uYi7uAZO97 .mbr-section-btn {
  text-align: center;
}
.cid-uYi7uAZO97 .item-title {
  text-align: center;
}
.cid-uYi7uAZO97 .item-subtitle {
  text-align: left;
}
.cid-uYi9EIvvpT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYi9EIvvpT img,
.cid-uYi9EIvvpT .item-img {
  width: 100%;
}
.cid-uYi9EIvvpT .item:focus,
.cid-uYi9EIvvpT span:focus {
  outline: none;
}
.cid-uYi9EIvvpT .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYi9EIvvpT .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYi9EIvvpT .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYi9EIvvpT .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYi9EIvvpT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYi9EIvvpT .mbr-section-title {
  color: #ffffff;
}
.cid-uYi9EIvvpT .mbr-text,
.cid-uYi9EIvvpT .mbr-section-btn {
  text-align: center;
}
.cid-uYi9EIvvpT .item-title {
  text-align: center;
}
.cid-uYi9EIvvpT .item-subtitle {
  text-align: left;
}
.cid-uYib5ia0rO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYib5ia0rO img,
.cid-uYib5ia0rO .item-img {
  width: 100%;
}
.cid-uYib5ia0rO .item:focus,
.cid-uYib5ia0rO span:focus {
  outline: none;
}
.cid-uYib5ia0rO .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYib5ia0rO .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYib5ia0rO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYib5ia0rO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYib5ia0rO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYib5ia0rO .mbr-section-title {
  color: #ffffff;
}
.cid-uYib5ia0rO .mbr-text,
.cid-uYib5ia0rO .mbr-section-btn {
  text-align: center;
}
.cid-uYib5ia0rO .item-title {
  text-align: center;
}
.cid-uYib5ia0rO .item-subtitle {
  text-align: left;
}
.cid-uYicvpCDqU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYicvpCDqU img,
.cid-uYicvpCDqU .item-img {
  width: 100%;
}
.cid-uYicvpCDqU .item:focus,
.cid-uYicvpCDqU span:focus {
  outline: none;
}
.cid-uYicvpCDqU .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYicvpCDqU .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYicvpCDqU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYicvpCDqU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYicvpCDqU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYicvpCDqU .mbr-section-title {
  color: #ffffff;
}
.cid-uYicvpCDqU .mbr-text,
.cid-uYicvpCDqU .mbr-section-btn {
  text-align: center;
}
.cid-uYicvpCDqU .item-title {
  text-align: center;
}
.cid-uYicvpCDqU .item-subtitle {
  text-align: left;
}
.cid-uYieBKMoIo {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYieBKMoIo img,
.cid-uYieBKMoIo .item-img {
  width: 100%;
}
.cid-uYieBKMoIo .item:focus,
.cid-uYieBKMoIo span:focus {
  outline: none;
}
.cid-uYieBKMoIo .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYieBKMoIo .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYieBKMoIo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYieBKMoIo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYieBKMoIo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYieBKMoIo .mbr-section-title {
  color: #ffffff;
}
.cid-uYieBKMoIo .mbr-text,
.cid-uYieBKMoIo .mbr-section-btn {
  text-align: center;
}
.cid-uYieBKMoIo .item-title {
  text-align: center;
}
.cid-uYieBKMoIo .item-subtitle {
  text-align: left;
}
.cid-uYigQ1mZas {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYigQ1mZas img,
.cid-uYigQ1mZas .item-img {
  width: 100%;
}
.cid-uYigQ1mZas .item:focus,
.cid-uYigQ1mZas span:focus {
  outline: none;
}
.cid-uYigQ1mZas .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYigQ1mZas .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYigQ1mZas .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYigQ1mZas .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYigQ1mZas .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYigQ1mZas .mbr-section-title {
  color: #ffffff;
}
.cid-uYigQ1mZas .mbr-text,
.cid-uYigQ1mZas .mbr-section-btn {
  text-align: center;
}
.cid-uYigQ1mZas .item-title {
  text-align: center;
}
.cid-uYigQ1mZas .item-subtitle {
  text-align: left;
}
.cid-uYijmnEsiK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYijmnEsiK img,
.cid-uYijmnEsiK .item-img {
  width: 100%;
}
.cid-uYijmnEsiK .item:focus,
.cid-uYijmnEsiK span:focus {
  outline: none;
}
.cid-uYijmnEsiK .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYijmnEsiK .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYijmnEsiK .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYijmnEsiK .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYijmnEsiK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYijmnEsiK .mbr-section-title {
  color: #ffffff;
}
.cid-uYijmnEsiK .mbr-text,
.cid-uYijmnEsiK .mbr-section-btn {
  text-align: center;
}
.cid-uYijmnEsiK .item-title {
  text-align: center;
}
.cid-uYijmnEsiK .item-subtitle {
  text-align: left;
}
.cid-uYikMksKRX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYikMksKRX img,
.cid-uYikMksKRX .item-img {
  width: 100%;
}
.cid-uYikMksKRX .item:focus,
.cid-uYikMksKRX span:focus {
  outline: none;
}
.cid-uYikMksKRX .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYikMksKRX .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYikMksKRX .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYikMksKRX .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYikMksKRX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYikMksKRX .mbr-section-title {
  color: #ffffff;
}
.cid-uYikMksKRX .mbr-text,
.cid-uYikMksKRX .mbr-section-btn {
  text-align: center;
}
.cid-uYikMksKRX .item-title {
  text-align: center;
}
.cid-uYikMksKRX .item-subtitle {
  text-align: left;
}
.cid-uYimhUoRjN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYimhUoRjN img,
.cid-uYimhUoRjN .item-img {
  width: 100%;
}
.cid-uYimhUoRjN .item:focus,
.cid-uYimhUoRjN span:focus {
  outline: none;
}
.cid-uYimhUoRjN .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYimhUoRjN .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYimhUoRjN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYimhUoRjN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYimhUoRjN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYimhUoRjN .mbr-section-title {
  color: #ffffff;
}
.cid-uYimhUoRjN .mbr-text,
.cid-uYimhUoRjN .mbr-section-btn {
  text-align: center;
}
.cid-uYimhUoRjN .item-title {
  text-align: center;
}
.cid-uYimhUoRjN .item-subtitle {
  text-align: left;
}
.cid-uYinxtwyqQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYinxtwyqQ img,
.cid-uYinxtwyqQ .item-img {
  width: 100%;
}
.cid-uYinxtwyqQ .item:focus,
.cid-uYinxtwyqQ span:focus {
  outline: none;
}
.cid-uYinxtwyqQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYinxtwyqQ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYinxtwyqQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYinxtwyqQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYinxtwyqQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYinxtwyqQ .mbr-section-title {
  color: #ffffff;
}
.cid-uYinxtwyqQ .mbr-text,
.cid-uYinxtwyqQ .mbr-section-btn {
  text-align: center;
}
.cid-uYinxtwyqQ .item-title {
  text-align: center;
}
.cid-uYinxtwyqQ .item-subtitle {
  text-align: left;
}
.cid-uYiqMT6wqk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYiqMT6wqk img,
.cid-uYiqMT6wqk .item-img {
  width: 100%;
}
.cid-uYiqMT6wqk .item:focus,
.cid-uYiqMT6wqk span:focus {
  outline: none;
}
.cid-uYiqMT6wqk .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYiqMT6wqk .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYiqMT6wqk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYiqMT6wqk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYiqMT6wqk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYiqMT6wqk .mbr-section-title {
  color: #ffffff;
}
.cid-uYiqMT6wqk .mbr-text,
.cid-uYiqMT6wqk .mbr-section-btn {
  text-align: center;
}
.cid-uYiqMT6wqk .item-title {
  text-align: center;
}
.cid-uYiqMT6wqk .item-subtitle {
  text-align: left;
}
.cid-uYirWS4LCu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYirWS4LCu img,
.cid-uYirWS4LCu .item-img {
  width: 100%;
}
.cid-uYirWS4LCu .item:focus,
.cid-uYirWS4LCu span:focus {
  outline: none;
}
.cid-uYirWS4LCu .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYirWS4LCu .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYirWS4LCu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYirWS4LCu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYirWS4LCu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYirWS4LCu .mbr-section-title {
  color: #ffffff;
}
.cid-uYirWS4LCu .mbr-text,
.cid-uYirWS4LCu .mbr-section-btn {
  text-align: center;
}
.cid-uYirWS4LCu .item-title {
  text-align: center;
}
.cid-uYirWS4LCu .item-subtitle {
  text-align: left;
}
.cid-uYisYJojqN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYisYJojqN img,
.cid-uYisYJojqN .item-img {
  width: 100%;
}
.cid-uYisYJojqN .item:focus,
.cid-uYisYJojqN span:focus {
  outline: none;
}
.cid-uYisYJojqN .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYisYJojqN .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYisYJojqN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYisYJojqN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYisYJojqN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYisYJojqN .mbr-section-title {
  color: #ffffff;
}
.cid-uYisYJojqN .mbr-text,
.cid-uYisYJojqN .mbr-section-btn {
  text-align: center;
}
.cid-uYisYJojqN .item-title {
  text-align: center;
}
.cid-uYisYJojqN .item-subtitle {
  text-align: left;
}
.cid-uYiu7dS0Mx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYiu7dS0Mx img,
.cid-uYiu7dS0Mx .item-img {
  width: 100%;
}
.cid-uYiu7dS0Mx .item:focus,
.cid-uYiu7dS0Mx span:focus {
  outline: none;
}
.cid-uYiu7dS0Mx .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYiu7dS0Mx .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYiu7dS0Mx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYiu7dS0Mx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYiu7dS0Mx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYiu7dS0Mx .mbr-section-title {
  color: #ffffff;
}
.cid-uYiu7dS0Mx .mbr-text,
.cid-uYiu7dS0Mx .mbr-section-btn {
  text-align: center;
}
.cid-uYiu7dS0Mx .item-title {
  text-align: center;
}
.cid-uYiu7dS0Mx .item-subtitle {
  text-align: left;
}
.cid-uYiwU5euzx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYiwU5euzx img,
.cid-uYiwU5euzx .item-img {
  width: 100%;
}
.cid-uYiwU5euzx .item:focus,
.cid-uYiwU5euzx span:focus {
  outline: none;
}
.cid-uYiwU5euzx .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYiwU5euzx .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYiwU5euzx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYiwU5euzx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYiwU5euzx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYiwU5euzx .mbr-section-title {
  color: #ffffff;
}
.cid-uYiwU5euzx .mbr-text,
.cid-uYiwU5euzx .mbr-section-btn {
  text-align: center;
}
.cid-uYiwU5euzx .item-title {
  text-align: center;
}
.cid-uYiwU5euzx .item-subtitle {
  text-align: left;
}
.cid-uYiAEsGUme {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYiAEsGUme img,
.cid-uYiAEsGUme .item-img {
  width: 100%;
}
.cid-uYiAEsGUme .item:focus,
.cid-uYiAEsGUme span:focus {
  outline: none;
}
.cid-uYiAEsGUme .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYiAEsGUme .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYiAEsGUme .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYiAEsGUme .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYiAEsGUme .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYiAEsGUme .mbr-section-title {
  color: #ffffff;
}
.cid-uYiAEsGUme .mbr-text,
.cid-uYiAEsGUme .mbr-section-btn {
  text-align: center;
}
.cid-uYiAEsGUme .item-title {
  text-align: center;
}
.cid-uYiAEsGUme .item-subtitle {
  text-align: left;
}
.cid-uYiBEUvI2U {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYiBEUvI2U img,
.cid-uYiBEUvI2U .item-img {
  width: 100%;
}
.cid-uYiBEUvI2U .item:focus,
.cid-uYiBEUvI2U span:focus {
  outline: none;
}
.cid-uYiBEUvI2U .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYiBEUvI2U .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYiBEUvI2U .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYiBEUvI2U .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYiBEUvI2U .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYiBEUvI2U .mbr-section-title {
  color: #ffffff;
}
.cid-uYiBEUvI2U .mbr-text,
.cid-uYiBEUvI2U .mbr-section-btn {
  text-align: center;
}
.cid-uYiBEUvI2U .item-title {
  text-align: center;
}
.cid-uYiBEUvI2U .item-subtitle {
  text-align: left;
}
.cid-uYiD1vu8V6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYiD1vu8V6 img,
.cid-uYiD1vu8V6 .item-img {
  width: 100%;
}
.cid-uYiD1vu8V6 .item:focus,
.cid-uYiD1vu8V6 span:focus {
  outline: none;
}
.cid-uYiD1vu8V6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYiD1vu8V6 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYiD1vu8V6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYiD1vu8V6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYiD1vu8V6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYiD1vu8V6 .mbr-section-title {
  color: #ffffff;
}
.cid-uYiD1vu8V6 .mbr-text,
.cid-uYiD1vu8V6 .mbr-section-btn {
  text-align: center;
}
.cid-uYiD1vu8V6 .item-title {
  text-align: center;
}
.cid-uYiD1vu8V6 .item-subtitle {
  text-align: left;
}
.cid-uYiEeY80WH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYiEeY80WH img,
.cid-uYiEeY80WH .item-img {
  width: 100%;
}
.cid-uYiEeY80WH .item:focus,
.cid-uYiEeY80WH span:focus {
  outline: none;
}
.cid-uYiEeY80WH .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYiEeY80WH .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYiEeY80WH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYiEeY80WH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYiEeY80WH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYiEeY80WH .mbr-section-title {
  color: #ffffff;
}
.cid-uYiEeY80WH .mbr-text,
.cid-uYiEeY80WH .mbr-section-btn {
  text-align: center;
}
.cid-uYiEeY80WH .item-title {
  text-align: center;
}
.cid-uYiEeY80WH .item-subtitle {
  text-align: left;
}
.cid-uYiFlgphmv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYiFlgphmv img,
.cid-uYiFlgphmv .item-img {
  width: 100%;
}
.cid-uYiFlgphmv .item:focus,
.cid-uYiFlgphmv span:focus {
  outline: none;
}
.cid-uYiFlgphmv .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYiFlgphmv .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYiFlgphmv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYiFlgphmv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYiFlgphmv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYiFlgphmv .mbr-section-title {
  color: #ffffff;
}
.cid-uYiFlgphmv .mbr-text,
.cid-uYiFlgphmv .mbr-section-btn {
  text-align: center;
}
.cid-uYiFlgphmv .item-title {
  text-align: center;
}
.cid-uYiFlgphmv .item-subtitle {
  text-align: left;
}
.cid-uYiGyXPpGQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYiGyXPpGQ img,
.cid-uYiGyXPpGQ .item-img {
  width: 100%;
}
.cid-uYiGyXPpGQ .item:focus,
.cid-uYiGyXPpGQ span:focus {
  outline: none;
}
.cid-uYiGyXPpGQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYiGyXPpGQ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYiGyXPpGQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYiGyXPpGQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYiGyXPpGQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYiGyXPpGQ .mbr-section-title {
  color: #ffffff;
}
.cid-uYiGyXPpGQ .mbr-text,
.cid-uYiGyXPpGQ .mbr-section-btn {
  text-align: center;
}
.cid-uYiGyXPpGQ .item-title {
  text-align: center;
}
.cid-uYiGyXPpGQ .item-subtitle {
  text-align: left;
}
.cid-uYiHUbuBGD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYiHUbuBGD img,
.cid-uYiHUbuBGD .item-img {
  width: 100%;
}
.cid-uYiHUbuBGD .item:focus,
.cid-uYiHUbuBGD span:focus {
  outline: none;
}
.cid-uYiHUbuBGD .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYiHUbuBGD .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYiHUbuBGD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYiHUbuBGD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYiHUbuBGD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYiHUbuBGD .mbr-section-title {
  color: #ffffff;
}
.cid-uYiHUbuBGD .mbr-text,
.cid-uYiHUbuBGD .mbr-section-btn {
  text-align: center;
}
.cid-uYiHUbuBGD .item-title {
  text-align: center;
}
.cid-uYiHUbuBGD .item-subtitle {
  text-align: left;
}
.cid-uYiJceAhPG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYiJceAhPG img,
.cid-uYiJceAhPG .item-img {
  width: 100%;
}
.cid-uYiJceAhPG .item:focus,
.cid-uYiJceAhPG span:focus {
  outline: none;
}
.cid-uYiJceAhPG .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uYiJceAhPG .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYiJceAhPG .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYiJceAhPG .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uYiJceAhPG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYiJceAhPG .mbr-section-title {
  color: #ffffff;
}
.cid-uYiJceAhPG .mbr-text,
.cid-uYiJceAhPG .mbr-section-btn {
  text-align: center;
}
.cid-uYiJceAhPG .item-title {
  text-align: center;
}
.cid-uYiJceAhPG .item-subtitle {
  text-align: left;
}
.cid-uYjNExrvIn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYjNExrvIn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYjNExrvIn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYjNExrvIn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYjNExrvIn .row {
  flex-direction: row-reverse;
}
.cid-uYjNExrvIn img {
  width: 100%;
}
.cid-uYjNExrvIn .mbr-description {
  text-align: justify;
}
.cid-uYjQhkoLMn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYjQhkoLMn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYjQhkoLMn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYjQhkoLMn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYjQhkoLMn .row {
  flex-direction: row-reverse;
}
.cid-uYjQhkoLMn img {
  width: 100%;
}
.cid-uYjQhkoLMn .mbr-description {
  text-align: justify;
}
.cid-uYjRlQoi8w {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYjRlQoi8w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYjRlQoi8w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYjRlQoi8w .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYjRlQoi8w .row {
  flex-direction: row-reverse;
}
.cid-uYjRlQoi8w img {
  width: 100%;
}
.cid-uYjRlQoi8w .mbr-description {
  text-align: justify;
}
.cid-uYjSmjSgVc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYjSmjSgVc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYjSmjSgVc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYjSmjSgVc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYjSmjSgVc .row {
  flex-direction: row-reverse;
}
.cid-uYjSmjSgVc img {
  width: 100%;
}
.cid-uYjSmjSgVc .mbr-description {
  text-align: justify;
}
.cid-uYk3AOgcgg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYk3AOgcgg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYk3AOgcgg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYk3AOgcgg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYk3AOgcgg img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYk3AOgcgg .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYk4iogI1N {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYk4iogI1N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYk4iogI1N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYk4iogI1N .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYk4iogI1N img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYk4iogI1N .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYk5089dnA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYk5089dnA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYk5089dnA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYk5089dnA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYk5089dnA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYk5089dnA .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYk5SJR9ip {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYk5SJR9ip .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYk5SJR9ip .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYk5SJR9ip .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYk5SJR9ip img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYk5SJR9ip .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYk6UxiNJn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYk6UxiNJn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYk6UxiNJn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYk6UxiNJn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYk6UxiNJn .row {
  flex-direction: row-reverse;
}
.cid-uYk6UxiNJn img {
  width: 100%;
}
.cid-uYk6UxiNJn .mbr-description {
  text-align: justify;
}
.cid-uYk7WDwnpR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYk7WDwnpR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYk7WDwnpR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYk7WDwnpR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYk7WDwnpR .row {
  flex-direction: row-reverse;
}
.cid-uYk7WDwnpR img {
  width: 100%;
}
.cid-uYk7WDwnpR .mbr-description {
  text-align: justify;
}
.cid-uYnSHmyVcB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYnSHmyVcB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYnSHmyVcB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYnSHmyVcB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYnSHmyVcB .row {
  flex-direction: row-reverse;
}
.cid-uYnSHmyVcB img {
  width: 100%;
}
.cid-uYnSHmyVcB .mbr-description {
  text-align: justify;
}
.cid-uYnV1Tspmb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYnV1Tspmb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYnV1Tspmb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYnV1Tspmb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYnV1Tspmb .row {
  flex-direction: row-reverse;
}
.cid-uYnV1Tspmb img {
  width: 100%;
}
.cid-uYnV1Tspmb .mbr-description {
  text-align: justify;
}
.cid-uYnZgsbvRN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYnZgsbvRN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYnZgsbvRN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYnZgsbvRN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYnZgsbvRN .row {
  flex-direction: row-reverse;
}
.cid-uYnZgsbvRN img {
  width: 100%;
}
.cid-uYnZgsbvRN .mbr-description {
  text-align: justify;
}
.cid-uYo1KcsJpV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYo1KcsJpV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYo1KcsJpV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYo1KcsJpV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYo1KcsJpV .row {
  flex-direction: row-reverse;
}
.cid-uYo1KcsJpV img {
  width: 100%;
}
.cid-uYo1KcsJpV .mbr-description {
  text-align: justify;
}
.cid-uYuab6nt9E {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuab6nt9E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuab6nt9E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuab6nt9E .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuab6nt9E img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYuab6nt9E .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYufX1pmJz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYufX1pmJz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYufX1pmJz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYufX1pmJz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYufX1pmJz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYufX1pmJz .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYugYkyIwT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYugYkyIwT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYugYkyIwT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYugYkyIwT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYugYkyIwT img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYugYkyIwT .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYujo3jOe9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYujo3jOe9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYujo3jOe9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYujo3jOe9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYujo3jOe9 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYujo3jOe9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYurtXqHk2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYurtXqHk2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYurtXqHk2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYurtXqHk2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYurtXqHk2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYurtXqHk2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYuuU4RrlP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuuU4RrlP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuuU4RrlP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuuU4RrlP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuuU4RrlP img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYuuU4RrlP .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYuwclw50D {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuwclw50D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuwclw50D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuwclw50D .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuwclw50D img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYuwclw50D .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYuBO0jnDj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuBO0jnDj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuBO0jnDj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuBO0jnDj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuBO0jnDj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYuBO0jnDj .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYuE0JSwri {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuE0JSwri .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuE0JSwri .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuE0JSwri .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuE0JSwri img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYuE0JSwri .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYuEN1Dlb1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuEN1Dlb1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuEN1Dlb1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuEN1Dlb1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuEN1Dlb1 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYuEN1Dlb1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYuFI25608 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuFI25608 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuFI25608 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuFI25608 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuFI25608 .row {
  flex-direction: row-reverse;
}
.cid-uYuFI25608 img {
  width: 100%;
}
.cid-uYuFI25608 .mbr-description {
  text-align: justify;
}
.cid-uYuGhdHqQ8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuGhdHqQ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuGhdHqQ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuGhdHqQ8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuGhdHqQ8 .row {
  flex-direction: row-reverse;
}
.cid-uYuGhdHqQ8 img {
  width: 100%;
}
.cid-uYuGhdHqQ8 .mbr-description {
  text-align: justify;
}
.cid-uYuHbtaXDH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuHbtaXDH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuHbtaXDH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuHbtaXDH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuHbtaXDH img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYuHbtaXDH .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYuIpQpJ2s {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuIpQpJ2s .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuIpQpJ2s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuIpQpJ2s .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuIpQpJ2s img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYuIpQpJ2s .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYuJfBrwwc {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuJfBrwwc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuJfBrwwc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuJfBrwwc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuJfBrwwc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYuJfBrwwc .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYuKjBI0Jr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuKjBI0Jr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuKjBI0Jr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuKjBI0Jr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuKjBI0Jr img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYuKjBI0Jr .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYuLGm1Emv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuLGm1Emv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuLGm1Emv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuLGm1Emv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuLGm1Emv img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYuLGm1Emv .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYuQOVFBm1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuQOVFBm1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuQOVFBm1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuQOVFBm1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuQOVFBm1 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYuQOVFBm1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYuUFghejn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuUFghejn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuUFghejn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuUFghejn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuUFghejn .row {
  flex-direction: row-reverse;
}
.cid-uYuUFghejn img {
  width: 100%;
}
.cid-uYuUFghejn .mbr-description {
  text-align: justify;
}
.cid-uYuVTzmn4m {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuVTzmn4m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuVTzmn4m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuVTzmn4m .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuVTzmn4m .row {
  flex-direction: row-reverse;
}
.cid-uYuVTzmn4m img {
  width: 100%;
}
.cid-uYuVTzmn4m .mbr-description {
  text-align: justify;
}
.cid-uYuXimIg7U {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuXimIg7U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuXimIg7U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuXimIg7U .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuXimIg7U .row {
  flex-direction: row-reverse;
}
.cid-uYuXimIg7U img {
  width: 100%;
}
.cid-uYuXimIg7U .mbr-description {
  text-align: justify;
}
.cid-uYuY9Ze5yQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuY9Ze5yQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuY9Ze5yQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuY9Ze5yQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuY9Ze5yQ .row {
  flex-direction: row-reverse;
}
.cid-uYuY9Ze5yQ img {
  width: 100%;
}
.cid-uYuY9Ze5yQ .mbr-description {
  text-align: justify;
}
.cid-uYuZ1Qn925 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuZ1Qn925 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuZ1Qn925 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuZ1Qn925 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuZ1Qn925 .row {
  flex-direction: row-reverse;
}
.cid-uYuZ1Qn925 img {
  width: 100%;
}
.cid-uYuZ1Qn925 .mbr-description {
  text-align: justify;
}
.cid-uYuZQI31BV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYuZQI31BV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYuZQI31BV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYuZQI31BV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYuZQI31BV .row {
  flex-direction: row-reverse;
}
.cid-uYuZQI31BV img {
  width: 100%;
}
.cid-uYuZQI31BV .mbr-description {
  text-align: justify;
}
.cid-uYzuesmJN8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYzuesmJN8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzuesmJN8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYzuesmJN8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYzuesmJN8 .row {
  flex-direction: row-reverse;
}
.cid-uYzuesmJN8 img {
  width: 100%;
}
.cid-uYzuesmJN8 .mbr-description {
  text-align: justify;
}
.cid-uYzvQdvGl6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYzvQdvGl6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzvQdvGl6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYzvQdvGl6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYzvQdvGl6 .row {
  flex-direction: row-reverse;
}
.cid-uYzvQdvGl6 img {
  width: 100%;
}
.cid-uYzvQdvGl6 .mbr-description {
  text-align: justify;
}
.cid-uYzxQkCB3r {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYzxQkCB3r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzxQkCB3r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYzxQkCB3r .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYzxQkCB3r .row {
  flex-direction: row-reverse;
}
.cid-uYzxQkCB3r img {
  width: 100%;
}
.cid-uYzxQkCB3r .mbr-description {
  text-align: justify;
}
.cid-uYzBnadECw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYzBnadECw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzBnadECw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYzBnadECw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYzBnadECw .row {
  flex-direction: row-reverse;
}
.cid-uYzBnadECw img {
  width: 100%;
}
.cid-uYzBnadECw .mbr-description {
  text-align: justify;
}
.cid-uYzCCsf4vq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYzCCsf4vq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzCCsf4vq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYzCCsf4vq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYzCCsf4vq img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzCCsf4vq .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYzDMWe9ei {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYzDMWe9ei .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzDMWe9ei .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYzDMWe9ei .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYzDMWe9ei img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzDMWe9ei .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYzEOuH7nj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYzEOuH7nj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzEOuH7nj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYzEOuH7nj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYzEOuH7nj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzEOuH7nj .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYzFQi8oMs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYzFQi8oMs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzFQi8oMs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYzFQi8oMs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYzFQi8oMs img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzFQi8oMs .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYzI5xRkzS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYzI5xRkzS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzI5xRkzS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYzI5xRkzS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYzI5xRkzS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzI5xRkzS .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYzK5TWlt0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYzK5TWlt0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzK5TWlt0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYzK5TWlt0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYzK5TWlt0 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzK5TWlt0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYzLaKXl2r {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYzLaKXl2r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzLaKXl2r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYzLaKXl2r .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYzLaKXl2r img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzLaKXl2r .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYzMlbgcDz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYzMlbgcDz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzMlbgcDz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYzMlbgcDz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYzMlbgcDz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzMlbgcDz .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYzNf5bFEU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYzNf5bFEU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzNf5bFEU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYzNf5bFEU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYzNf5bFEU img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzNf5bFEU .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYzOonbNAd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYzOonbNAd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYzOonbNAd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYzOonbNAd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYzOonbNAd img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYzOonbNAd .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYENfj2ba6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYENfj2ba6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYENfj2ba6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYENfj2ba6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYENfj2ba6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYENfj2ba6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYERfxHvk4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYERfxHvk4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYERfxHvk4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYERfxHvk4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYERfxHvk4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYERfxHvk4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYEVsoxt5I {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYEVsoxt5I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYEVsoxt5I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYEVsoxt5I .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYEVsoxt5I .row {
  flex-direction: row-reverse;
}
.cid-uYEVsoxt5I img {
  width: 100%;
}
.cid-uYEVsoxt5I .mbr-description {
  text-align: justify;
}
.cid-uYEWRtuFBE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYEWRtuFBE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYEWRtuFBE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYEWRtuFBE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYEWRtuFBE .row {
  flex-direction: row-reverse;
}
.cid-uYEWRtuFBE img {
  width: 100%;
}
.cid-uYEWRtuFBE .mbr-description {
  text-align: justify;
}
.cid-uYF4hICw7q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYF4hICw7q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYF4hICw7q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYF4hICw7q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYF4hICw7q .row {
  flex-direction: row-reverse;
}
.cid-uYF4hICw7q img {
  width: 100%;
}
.cid-uYF4hICw7q .mbr-description {
  text-align: justify;
}
.cid-uYF5qcp0Vj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYF5qcp0Vj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYF5qcp0Vj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYF5qcp0Vj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYF5qcp0Vj .row {
  flex-direction: row-reverse;
}
.cid-uYF5qcp0Vj img {
  width: 100%;
}
.cid-uYF5qcp0Vj .mbr-description {
  text-align: justify;
}
.cid-uYF8vPbH70 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYF8vPbH70 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYF8vPbH70 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYF8vPbH70 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYF8vPbH70 .row {
  flex-direction: row-reverse;
}
.cid-uYF8vPbH70 img {
  width: 100%;
}
.cid-uYF8vPbH70 .mbr-description {
  text-align: justify;
}
.cid-uYF9V0wEY2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYF9V0wEY2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYF9V0wEY2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYF9V0wEY2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYF9V0wEY2 .row {
  flex-direction: row-reverse;
}
.cid-uYF9V0wEY2 img {
  width: 100%;
}
.cid-uYF9V0wEY2 .mbr-description {
  text-align: justify;
}
.cid-uYFdp4pdr3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYFdp4pdr3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYFdp4pdr3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYFdp4pdr3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYFdp4pdr3 .row {
  flex-direction: row-reverse;
}
.cid-uYFdp4pdr3 img {
  width: 100%;
}
.cid-uYFdp4pdr3 .mbr-description {
  text-align: justify;
}
.cid-uYFkS2E5my {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYFkS2E5my .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYFkS2E5my .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYFkS2E5my .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYFkS2E5my .row {
  flex-direction: row-reverse;
}
.cid-uYFkS2E5my img {
  width: 100%;
}
.cid-uYFkS2E5my .mbr-description {
  text-align: justify;
}
.cid-uYFntMqW4M {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYFntMqW4M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYFntMqW4M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYFntMqW4M .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYFntMqW4M img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYFntMqW4M .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYFntMqW4M .mbr-description {
  text-align: justify;
}
.cid-uYFpSNdtAY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYFpSNdtAY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYFpSNdtAY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYFpSNdtAY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYFpSNdtAY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYFpSNdtAY .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYFrCsDjoK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYFrCsDjoK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYFrCsDjoK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYFrCsDjoK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYFrCsDjoK img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYFrCsDjoK .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYFtn6PLP0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYFtn6PLP0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYFtn6PLP0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYFtn6PLP0 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYFtn6PLP0 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYFtn6PLP0 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYFuJSCWPb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYFuJSCWPb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYFuJSCWPb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYFuJSCWPb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYFuJSCWPb .row {
  flex-direction: row-reverse;
}
.cid-uYFuJSCWPb img {
  width: 100%;
}
.cid-uYFuJSCWPb .mbr-description {
  text-align: justify;
}
.cid-uYFvXCDFXf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYFvXCDFXf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYFvXCDFXf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYFvXCDFXf .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYFvXCDFXf .row {
  flex-direction: row-reverse;
}
.cid-uYFvXCDFXf img {
  width: 100%;
}
.cid-uYFvXCDFXf .mbr-description {
  text-align: justify;
}
.cid-uYFxn2JS9T {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYFxn2JS9T .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYFxn2JS9T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYFxn2JS9T .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYFxn2JS9T .row {
  flex-direction: row-reverse;
}
.cid-uYFxn2JS9T img {
  width: 100%;
}
.cid-uYFxn2JS9T .mbr-description {
  text-align: left;
}
.cid-uYK9uXvqEP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYK9uXvqEP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYK9uXvqEP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYK9uXvqEP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYK9uXvqEP img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYK9uXvqEP .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYG3ILE8aB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYG3ILE8aB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYG3ILE8aB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYG3ILE8aB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYG3ILE8aB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYG3ILE8aB .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYG4BR3AqJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYG4BR3AqJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYG4BR3AqJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYG4BR3AqJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYG4BR3AqJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYG4BR3AqJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYG5nNOpTL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYG5nNOpTL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYG5nNOpTL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYG5nNOpTL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYG5nNOpTL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYG5nNOpTL .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYG68esbQs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYG68esbQs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYG68esbQs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYG68esbQs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYG68esbQs img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYG68esbQs .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYG7pu2BEv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYG7pu2BEv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYG7pu2BEv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYG7pu2BEv .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYG7pu2BEv img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYG7pu2BEv .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYGfOJgvLj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGfOJgvLj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGfOJgvLj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGfOJgvLj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGfOJgvLj .row {
  flex-direction: row-reverse;
}
.cid-uYGfOJgvLj img {
  width: 100%;
}
.cid-uYGfOJgvLj .mbr-description {
  text-align: justify;
}
.cid-uYGiCXv3P7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGiCXv3P7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGiCXv3P7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGiCXv3P7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGiCXv3P7 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYGiCXv3P7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYGkJIUXaZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGkJIUXaZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGkJIUXaZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGkJIUXaZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGkJIUXaZ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYGkJIUXaZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYGlZ50HTS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGlZ50HTS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGlZ50HTS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGlZ50HTS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGlZ50HTS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYGlZ50HTS .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYGns6heoW {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGns6heoW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGns6heoW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGns6heoW .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGns6heoW .row {
  flex-direction: row-reverse;
}
.cid-uYGns6heoW img {
  width: 100%;
}
.cid-uYGns6heoW .mbr-description {
  text-align: justify;
}
.cid-uYGoHLLFBS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGoHLLFBS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGoHLLFBS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGoHLLFBS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGoHLLFBS .row {
  flex-direction: row-reverse;
}
.cid-uYGoHLLFBS img {
  width: 100%;
}
.cid-uYGoHLLFBS .mbr-description {
  text-align: justify;
}
.cid-uYGpSz8MtP {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGpSz8MtP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGpSz8MtP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGpSz8MtP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGpSz8MtP .row {
  flex-direction: row-reverse;
}
.cid-uYGpSz8MtP img {
  width: 100%;
}
.cid-uYGpSz8MtP .mbr-description {
  text-align: justify;
}
.cid-uYGr7F8wBV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGr7F8wBV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGr7F8wBV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGr7F8wBV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGr7F8wBV .row {
  flex-direction: row-reverse;
}
.cid-uYGr7F8wBV img {
  width: 100%;
}
.cid-uYGr7F8wBV .mbr-description {
  text-align: justify;
}
.cid-uYGstAGjTi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGstAGjTi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGstAGjTi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGstAGjTi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGstAGjTi .row {
  flex-direction: row-reverse;
}
.cid-uYGstAGjTi img {
  width: 100%;
}
.cid-uYGstAGjTi .mbr-description {
  text-align: justify;
}
.cid-uYGu4LCtgN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGu4LCtgN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGu4LCtgN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGu4LCtgN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGu4LCtgN .row {
  flex-direction: row-reverse;
}
.cid-uYGu4LCtgN img {
  width: 100%;
}
.cid-uYGu4LCtgN .mbr-description {
  text-align: justify;
}
.cid-uYGvcqe4mt {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGvcqe4mt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGvcqe4mt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGvcqe4mt .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGvcqe4mt .row {
  flex-direction: row-reverse;
}
.cid-uYGvcqe4mt img {
  width: 100%;
}
.cid-uYGvcqe4mt .mbr-description {
  text-align: justify;
}
.cid-uYGw6uD7Rm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGw6uD7Rm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGw6uD7Rm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGw6uD7Rm .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGw6uD7Rm .row {
  flex-direction: row-reverse;
}
.cid-uYGw6uD7Rm img {
  width: 100%;
}
.cid-uYGw6uD7Rm .mbr-description {
  text-align: justify;
}
.cid-uYGxmMvCgE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGxmMvCgE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGxmMvCgE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGxmMvCgE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGxmMvCgE .row {
  flex-direction: row-reverse;
}
.cid-uYGxmMvCgE img {
  width: 100%;
}
.cid-uYGxmMvCgE .mbr-description {
  text-align: justify;
}
.cid-uYGxOP1oQ8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGxOP1oQ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGxOP1oQ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGxOP1oQ8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGxOP1oQ8 .row {
  flex-direction: row-reverse;
}
.cid-uYGxOP1oQ8 img {
  width: 100%;
}
.cid-uYGxOP1oQ8 .mbr-description {
  text-align: justify;
}
.cid-uYGzmElUR9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGzmElUR9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGzmElUR9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGzmElUR9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGzmElUR9 .row {
  flex-direction: row-reverse;
}
.cid-uYGzmElUR9 img {
  width: 100%;
}
.cid-uYGzmElUR9 .mbr-description {
  text-align: justify;
}
.cid-uYGAqqUwAi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGAqqUwAi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGAqqUwAi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGAqqUwAi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGAqqUwAi .row {
  flex-direction: row-reverse;
}
.cid-uYGAqqUwAi img {
  width: 100%;
}
.cid-uYGAqqUwAi .mbr-description {
  text-align: justify;
}
.cid-uYGBxx7p8k {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGBxx7p8k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGBxx7p8k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGBxx7p8k .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGBxx7p8k img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYGBxx7p8k .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYGCxDR5VL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGCxDR5VL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGCxDR5VL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGCxDR5VL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGCxDR5VL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYGCxDR5VL .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYGEFHdrMN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGEFHdrMN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGEFHdrMN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGEFHdrMN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGEFHdrMN img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYGEFHdrMN .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYGFTKQSan {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGFTKQSan .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGFTKQSan .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGFTKQSan .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGFTKQSan img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYGFTKQSan .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYGHlE8Db4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGHlE8Db4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGHlE8Db4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGHlE8Db4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGHlE8Db4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYGHlE8Db4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYGKdZUdog {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYGKdZUdog .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYGKdZUdog .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYGKdZUdog .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYGKdZUdog img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYGKdZUdog .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYK7paMGb4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYK7paMGb4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYK7paMGb4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYK7paMGb4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYK7paMGb4 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYK7paMGb4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYKwuKa2LE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYKwuKa2LE .mbr-overlay {
  background: #fafafa;
  opacity: 0.6;
}
.cid-uYKwuKa2LE img,
.cid-uYKwuKa2LE .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uYKwuKa2LE .item:focus,
.cid-uYKwuKa2LE span:focus {
  outline: none;
}
.cid-uYKwuKa2LE .item-wrapper {
  position: relative;
}
.cid-uYKwuKa2LE .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYKwuKa2LE .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYKwuKa2LE .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-uYKwuKa2LE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYKwuKa2LE .mbr-section-title {
  color: #232323;
}
.cid-uYKwuKa2LE .mbr-text,
.cid-uYKwuKa2LE .mbr-section-btn {
  text-align: left;
}
.cid-uYKwuKa2LE .item-title {
  text-align: left;
}
.cid-uYKwuKa2LE .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uYKwuKa2LE .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uYKwuKa2LE .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uYKwuKa2LE .embla__button--next,
.cid-uYKwuKa2LE .embla__button--prev {
  display: flex;
}
.cid-uYKwuKa2LE .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uYKwuKa2LE .embla__button {
    display: none;
  }
}
.cid-uYKwuKa2LE .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uYKwuKa2LE .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uYKwuKa2LE .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uYKwuKa2LE .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uYKwuKa2LE .embla__button {
    top: auto;
  }
}
.cid-uYKwuKa2LE .embla {
  position: relative;
  width: 100%;
}
.cid-uYKwuKa2LE .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uYKwuKa2LE .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uYKwuKa2LE .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uYKwuKa2LE .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uYKwuKa2LE .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-uYKwuKa2LE .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uYKwuKa2LE .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uYKt7HBsdm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uYKt7HBsdm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYKt7HBsdm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYKt7HBsdm .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uYKt7HBsdm .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uYKt7HBsdm .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uYKuKDoKj7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYKuKDoKj7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYKuKDoKj7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYKuKDoKj7 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYKuKDoKj7 .row {
  flex-direction: row-reverse;
}
.cid-uYKuKDoKj7 img {
  width: 100%;
}
.cid-uYKCgoVaNh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uYKCgoVaNh .mbr-overlay {
  background: #fafafa;
  opacity: 0.6;
}
.cid-uYKCgoVaNh img,
.cid-uYKCgoVaNh .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uYKCgoVaNh .item:focus,
.cid-uYKCgoVaNh span:focus {
  outline: none;
}
.cid-uYKCgoVaNh .item-wrapper {
  position: relative;
}
.cid-uYKCgoVaNh .slide-content {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  overflow: hidden;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uYKCgoVaNh .slide-content .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uYKCgoVaNh .slide-content .item-content {
    padding: 1rem;
  }
}
.cid-uYKCgoVaNh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uYKCgoVaNh .mbr-section-title {
  color: #232323;
}
.cid-uYKCgoVaNh .mbr-text,
.cid-uYKCgoVaNh .mbr-section-btn {
  text-align: left;
}
.cid-uYKCgoVaNh .item-title {
  text-align: left;
}
.cid-uYKCgoVaNh .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-uYKCgoVaNh .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 370px;
  max-width: 370px;
}
@media (max-width: 768px) {
  .cid-uYKCgoVaNh .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uYKCgoVaNh .embla__button--next,
.cid-uYKCgoVaNh .embla__button--prev {
  display: flex;
}
.cid-uYKCgoVaNh .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cid-uYKCgoVaNh .embla__button {
    display: none;
  }
}
.cid-uYKCgoVaNh .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uYKCgoVaNh .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uYKCgoVaNh .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uYKCgoVaNh .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uYKCgoVaNh .embla__button {
    top: auto;
  }
}
.cid-uYKCgoVaNh .embla {
  position: relative;
  width: 100%;
}
.cid-uYKCgoVaNh .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uYKCgoVaNh .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uYKCgoVaNh .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uYKCgoVaNh .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 768px) {
  .cid-uYKCgoVaNh .embla__container {
    margin-left: 1.3rem;
    margin-right: 1.3rem;
  }
  .cid-uYKCgoVaNh .embla__container .embla__slide:first-child {
    margin-left: 2rem !important;
  }
  .cid-uYKCgoVaNh .embla__container .embla__slide:last-child {
    margin-right: 2rem !important;
  }
}
.cid-uYKLuBywcY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-uYKLuBywcY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYKLuBywcY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYKLuBywcY .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uYKLuBywcY .team-card:hover {
  transform: translateY(-10px);
}
.cid-uYKLuBywcY .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uYKLuBywcY .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uYKLuBywcY .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uYKLuBywcY .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYKLuBywcY .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uYKLuBywcY .social-row {
  text-align: center;
}
.cid-uYKLuBywcY .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uYKLuBywcY .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uYKLuBywcY .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uYKLuBywcY .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uYKLuBywcY .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-uYKLuBywcY .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uYKLuBywcY .embla__button--next,
.cid-uYKLuBywcY .embla__button--prev {
  display: flex;
}
.cid-uYKLuBywcY .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uYKLuBywcY .embla__button {
    display: none;
  }
}
.cid-uYKLuBywcY .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uYKLuBywcY .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uYKLuBywcY .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uYKLuBywcY .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uYKLuBywcY .embla__button {
    top: auto;
  }
}
.cid-uYKLuBywcY .embla {
  position: relative;
  width: 100%;
}
.cid-uYKLuBywcY .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uYKLuBywcY .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uYKLuBywcY .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uYKLuBywcY .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uYKLuBywcY .card-text,
.cid-uYKLuBywcY .mbr-section-btn,
.cid-uYKLuBywcY .social-row {
  text-align: justify;
}
.cid-uYL1Q7hKIv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-uYL1Q7hKIv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYL1Q7hKIv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYL1Q7hKIv .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uYL1Q7hKIv .team-card:hover {
  transform: translateY(-10px);
}
.cid-uYL1Q7hKIv .item-wrapper {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uYL1Q7hKIv .item-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uYL1Q7hKIv .item-wrapper .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uYL1Q7hKIv .item-wrapper .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYL1Q7hKIv .item-wrapper .content-wrap {
    padding: 1rem;
  }
}
.cid-uYL1Q7hKIv .social-row {
  text-align: center;
}
.cid-uYL1Q7hKIv .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uYL1Q7hKIv .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uYL1Q7hKIv .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uYL1Q7hKIv .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uYL1Q7hKIv .card-text,
.cid-uYL1Q7hKIv .mbr-section-btn,
.cid-uYL1Q7hKIv .social-row {
  text-align: justify;
}
.cid-uYLGYbUffD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-uYLGYbUffD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYLGYbUffD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYLGYbUffD .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uYLGYbUffD .team-card:hover {
  transform: translateY(-10px);
}
.cid-uYLGYbUffD .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uYLGYbUffD .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uYLGYbUffD .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uYLGYbUffD .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYLGYbUffD .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uYLGYbUffD .social-row {
  text-align: center;
}
.cid-uYLGYbUffD .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uYLGYbUffD .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uYLGYbUffD .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uYLGYbUffD .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uYLGYbUffD .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-uYLGYbUffD .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uYLGYbUffD .embla__button--next,
.cid-uYLGYbUffD .embla__button--prev {
  display: flex;
}
.cid-uYLGYbUffD .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uYLGYbUffD .embla__button {
    display: none;
  }
}
.cid-uYLGYbUffD .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uYLGYbUffD .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uYLGYbUffD .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uYLGYbUffD .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uYLGYbUffD .embla__button {
    top: auto;
  }
}
.cid-uYLGYbUffD .embla {
  position: relative;
  width: 100%;
}
.cid-uYLGYbUffD .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uYLGYbUffD .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uYLGYbUffD .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uYLGYbUffD .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uYLGYbUffD .card-text,
.cid-uYLGYbUffD .mbr-section-btn,
.cid-uYLGYbUffD .social-row {
  text-align: justify;
}
.cid-uYM8DgYUaV {
  background-color: #ffffff;
}
.cid-uYM8DgYUaV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYM8DgYUaV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYM8DgYUaV .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYM8DgYUaV .row {
  flex-direction: row-reverse;
}
.cid-uYM8DgYUaV img {
  width: 100%;
}
.cid-uYMhOxdYAb {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-uYMhOxdYAb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYMhOxdYAb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYMhOxdYAb .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uYMhOxdYAb .team-card:hover {
  transform: translateY(-10px);
}
.cid-uYMhOxdYAb .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uYMhOxdYAb .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uYMhOxdYAb .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uYMhOxdYAb .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYMhOxdYAb .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uYMhOxdYAb .social-row {
  text-align: center;
}
.cid-uYMhOxdYAb .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uYMhOxdYAb .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uYMhOxdYAb .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uYMhOxdYAb .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uYMhOxdYAb .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-uYMhOxdYAb .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uYMhOxdYAb .embla__button--next,
.cid-uYMhOxdYAb .embla__button--prev {
  display: flex;
}
.cid-uYMhOxdYAb .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uYMhOxdYAb .embla__button {
    display: none;
  }
}
.cid-uYMhOxdYAb .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uYMhOxdYAb .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uYMhOxdYAb .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uYMhOxdYAb .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uYMhOxdYAb .embla__button {
    top: auto;
  }
}
.cid-uYMhOxdYAb .embla {
  position: relative;
  width: 100%;
}
.cid-uYMhOxdYAb .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uYMhOxdYAb .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uYMhOxdYAb .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uYMhOxdYAb .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uYMhOxdYAb .card-text,
.cid-uYMhOxdYAb .mbr-section-btn,
.cid-uYMhOxdYAb .social-row {
  text-align: justify;
}
.cid-uYMkQCc5X3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYMkQCc5X3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYMkQCc5X3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYMkQCc5X3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYMkQCc5X3 .row {
  flex-direction: row-reverse;
}
.cid-uYMkQCc5X3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYMkQCc5X3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYMmg6uGzO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uYMmg6uGzO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYMmg6uGzO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYMmg6uGzO .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYMmg6uGzO .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uYMmg6uGzO .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uYMnILF5pW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uYMnILF5pW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYMnILF5pW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYMnILF5pW .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYMnILF5pW .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-uYMnILF5pW .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uYMoSrLbXQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYMoSrLbXQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYMoSrLbXQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYMoSrLbXQ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYMoSrLbXQ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYMoSrLbXQ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYMq245z4M {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-uYMq245z4M .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYMq245z4M .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYMq245z4M .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uYMq245z4M .team-card:hover {
  transform: translateY(-10px);
}
.cid-uYMq245z4M .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uYMq245z4M .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uYMq245z4M .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uYMq245z4M .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYMq245z4M .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uYMq245z4M .social-row {
  text-align: center;
}
.cid-uYMq245z4M .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uYMq245z4M .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uYMq245z4M .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uYMq245z4M .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uYMq245z4M .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-uYMq245z4M .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uYMq245z4M .embla__button--next,
.cid-uYMq245z4M .embla__button--prev {
  display: flex;
}
.cid-uYMq245z4M .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uYMq245z4M .embla__button {
    display: none;
  }
}
.cid-uYMq245z4M .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uYMq245z4M .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uYMq245z4M .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uYMq245z4M .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uYMq245z4M .embla__button {
    top: auto;
  }
}
.cid-uYMq245z4M .embla {
  position: relative;
  width: 100%;
}
.cid-uYMq245z4M .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uYMq245z4M .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uYMq245z4M .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uYMq245z4M .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uYMq245z4M .card-text,
.cid-uYMq245z4M .mbr-section-btn,
.cid-uYMq245z4M .social-row {
  text-align: justify;
}
.cid-uYMGqdLn1q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYMGqdLn1q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYMGqdLn1q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYMGqdLn1q .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYMGqdLn1q img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYMGqdLn1q .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYMJq8OxhC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYMJq8OxhC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYMJq8OxhC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYMJq8OxhC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYMJq8OxhC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYMJq8OxhC .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYMLRKiT7w {
  background-color: #ffffff;
}
.cid-uYMLRKiT7w .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYMLRKiT7w .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYMLRKiT7w .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYMLRKiT7w .row {
  flex-direction: row-reverse;
}
.cid-uYMLRKiT7w img {
  width: 100%;
}
.cid-uYMLRKiT7w .mbr-text {
  text-align: justify;
}
.cid-uYMODkZVbC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-uYMODkZVbC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYMODkZVbC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYMODkZVbC .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uYMODkZVbC .team-card:hover {
  transform: translateY(-10px);
}
.cid-uYMODkZVbC .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uYMODkZVbC .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uYMODkZVbC .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uYMODkZVbC .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYMODkZVbC .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uYMODkZVbC .social-row {
  text-align: center;
}
.cid-uYMODkZVbC .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uYMODkZVbC .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uYMODkZVbC .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uYMODkZVbC .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uYMODkZVbC .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-uYMODkZVbC .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uYMODkZVbC .embla__button--next,
.cid-uYMODkZVbC .embla__button--prev {
  display: flex;
}
.cid-uYMODkZVbC .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uYMODkZVbC .embla__button {
    display: none;
  }
}
.cid-uYMODkZVbC .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uYMODkZVbC .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uYMODkZVbC .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uYMODkZVbC .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uYMODkZVbC .embla__button {
    top: auto;
  }
}
.cid-uYMODkZVbC .embla {
  position: relative;
  width: 100%;
}
.cid-uYMODkZVbC .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uYMODkZVbC .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uYMODkZVbC .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uYMODkZVbC .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uYMODkZVbC .card-text,
.cid-uYMODkZVbC .mbr-section-btn,
.cid-uYMODkZVbC .social-row {
  text-align: justify;
}
.cid-uYMRY3ADCq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYMRY3ADCq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYMRY3ADCq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYMRY3ADCq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYMRY3ADCq .row {
  flex-direction: row-reverse;
}
.cid-uYMRY3ADCq img {
  width: 100%;
}
.cid-uYMRY3ADCq .mbr-text {
  text-align: justify;
}
.cid-uYMVcZd50f {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYMVcZd50f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYMVcZd50f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYMVcZd50f .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYMVcZd50f .row {
  flex-direction: row-reverse;
}
.cid-uYMVcZd50f img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYMVcZd50f .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYMVcZd50f .mbr-description {
  text-align: justify;
}
.cid-uYMX7SvL6P {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYMX7SvL6P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYMX7SvL6P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYMX7SvL6P .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYMX7SvL6P .row {
  flex-direction: row-reverse;
}
.cid-uYMX7SvL6P img {
  width: 100%;
}
.cid-uYMX7SvL6P .mbr-text {
  text-align: justify;
}
.cid-uYQP3wjuiR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYQP3wjuiR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYQP3wjuiR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYQP3wjuiR .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYQP3wjuiR img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYQP3wjuiR .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYQQUhfGJh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYQQUhfGJh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYQQUhfGJh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYQQUhfGJh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYQQUhfGJh .row {
  flex-direction: row-reverse;
}
.cid-uYQQUhfGJh img {
  width: 100%;
}
.cid-uYQSfvMBbg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYQSfvMBbg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYQSfvMBbg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYQSfvMBbg .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYQSfvMBbg img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYQSfvMBbg .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYQWq7gVhS {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYQWq7gVhS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYQWq7gVhS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYQWq7gVhS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYQWq7gVhS .row {
  flex-direction: row-reverse;
}
.cid-uYQWq7gVhS img {
  width: 100%;
}
.cid-uYQWq7gVhS .mbr-text {
  text-align: justify;
}
.cid-uYQZgZudtL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYQZgZudtL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYQZgZudtL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYQZgZudtL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYQZgZudtL .row {
  flex-direction: row-reverse;
}
.cid-uYQZgZudtL img {
  width: 100%;
}
.cid-uYR11FTTw5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uYR11FTTw5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYR11FTTw5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYR11FTTw5 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uYR11FTTw5 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uYR11FTTw5 .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uYR11FTTw5 P {
  text-align: justify;
}
.cid-uYR30qUCyn {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uYR30qUCyn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYR30qUCyn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYR30qUCyn .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uYR30qUCyn .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uYR30qUCyn .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uYR30qUCyn P {
  text-align: justify;
}
.cid-uYR5m9pyYL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uYR5m9pyYL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYR5m9pyYL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYR5m9pyYL .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uYR5m9pyYL .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uYR5m9pyYL .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uYR5m9pyYL P {
  text-align: justify;
}
.cid-uYR76x544U {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYR76x544U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYR76x544U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYR76x544U .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYR76x544U img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYR76x544U .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYR8GMgiTj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYR8GMgiTj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYR8GMgiTj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYR8GMgiTj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYR8GMgiTj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYR8GMgiTj .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYRcFyaowK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYRcFyaowK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYRcFyaowK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYRcFyaowK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYRcFyaowK .row {
  flex-direction: row-reverse;
}
.cid-uYRcFyaowK img {
  width: 100%;
}
.cid-uYRcFyaowK .mbr-description {
  text-align: justify;
}
.cid-uYRdCYZIJq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uYRdCYZIJq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYRdCYZIJq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYRdCYZIJq .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uYRdCYZIJq .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uYRdCYZIJq .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uYReELcvy2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uYReELcvy2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYReELcvy2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYReELcvy2 .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uYReELcvy2 .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uYReELcvy2 .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uYReELcvy2 P {
  text-align: justify;
}
.cid-uYRg4Qj0MN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYRg4Qj0MN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYRg4Qj0MN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYRg4Qj0MN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYRg4Qj0MN .row {
  flex-direction: row-reverse;
}
.cid-uYRg4Qj0MN img {
  width: 100%;
}
.cid-uYRg4Qj0MN .mbr-description {
  text-align: center;
}
.cid-uYRhieavnu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uYRhieavnu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYRhieavnu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYRhieavnu .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uYRhieavnu .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uYRhieavnu .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uYRhieavnu P {
  text-align: justify;
}
.cid-uYRiXC9kNr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYRiXC9kNr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYRiXC9kNr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYRiXC9kNr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYRiXC9kNr img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYRiXC9kNr .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYRkKB3zbK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uYRkKB3zbK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYRkKB3zbK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYRkKB3zbK .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uYRkKB3zbK .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uYRkKB3zbK .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uYRnDlMHSj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYRnDlMHSj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYRnDlMHSj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYRnDlMHSj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYRnDlMHSj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYRnDlMHSj .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYRp35XS0u {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYRp35XS0u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYRp35XS0u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYRp35XS0u .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYRp35XS0u .row {
  flex-direction: row-reverse;
}
.cid-uYRp35XS0u img {
  width: 100%;
}
.cid-uYRq57982i {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYRq57982i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYRq57982i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYRq57982i .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYRq57982i .row {
  flex-direction: row-reverse;
}
.cid-uYRq57982i img {
  width: 100%;
}
.cid-uYXjpu6q5L {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uYXjpu6q5L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYXjpu6q5L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYXjpu6q5L .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uYXjpu6q5L .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uYXjpu6q5L .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uYXmyOnASH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYXmyOnASH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYXmyOnASH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYXmyOnASH .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYXmyOnASH .row {
  flex-direction: row-reverse;
}
.cid-uYXmyOnASH img {
  width: 100%;
}
.cid-uYXybzT4Pr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background: #fafafa;
}
.cid-uYXybzT4Pr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYXybzT4Pr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYXybzT4Pr .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-uYXybzT4Pr .team-card:hover {
  transform: translateY(-10px);
}
.cid-uYXybzT4Pr .card-wrap {
  background: #ffffff;
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-uYXybzT4Pr .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-uYXybzT4Pr .card-wrap .image-wrap img {
  width: 100%;
}
@media (min-width: 768px) {
  .cid-uYXybzT4Pr .card-wrap .content-wrap {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uYXybzT4Pr .card-wrap .content-wrap {
    padding: 1rem;
  }
}
.cid-uYXybzT4Pr .social-row {
  text-align: center;
}
.cid-uYXybzT4Pr .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.6rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 2px solid #6592e6;
  transition: all 0.3s;
}
.cid-uYXybzT4Pr .social-row .soc-item .mbr-iconfont {
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-content: center;
  color: #6592e6;
  font-size: 1.5rem;
}
.cid-uYXybzT4Pr .social-row .soc-item:hover {
  background-color: #6592e6;
}
.cid-uYXybzT4Pr .social-row .soc-item:hover .mbr-iconfont {
  color: #ffffff;
}
.cid-uYXybzT4Pr .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 410px;
  max-width: 410px;
}
@media (max-width: 768px) {
  .cid-uYXybzT4Pr .embla__slide {
    min-width: 70%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uYXybzT4Pr .embla__button--next,
.cid-uYXybzT4Pr .embla__button--prev {
  display: flex;
}
.cid-uYXybzT4Pr .embla__button {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 768px) {
  .cid-uYXybzT4Pr .embla__button {
    display: none;
  }
}
.cid-uYXybzT4Pr .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uYXybzT4Pr .embla__button:hover {
  background: #000;
  color: rgba(255, 255, 255, 0.5);
}
.cid-uYXybzT4Pr .embla__button.embla__button--prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uYXybzT4Pr .embla__button.embla__button--next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uYXybzT4Pr .embla__button {
    top: auto;
  }
}
.cid-uYXybzT4Pr .embla {
  position: relative;
  width: 100%;
}
.cid-uYXybzT4Pr .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uYXybzT4Pr .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uYXybzT4Pr .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uYXybzT4Pr .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uYXBXNAiST {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYXBXNAiST .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYXBXNAiST .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYXBXNAiST .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYXBXNAiST img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYXBXNAiST .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ70VpwNcx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ70VpwNcx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ70VpwNcx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ70VpwNcx .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ70VpwNcx img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ70VpwNcx .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ71WTwpia {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uZ71WTwpia .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ71WTwpia .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ71WTwpia .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uZ71WTwpia .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uZ71WTwpia .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uZ72UxcZc6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ72UxcZc6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ72UxcZc6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ72UxcZc6 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ72UxcZc6 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ72UxcZc6 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ7wN44qci {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uZ7wN44qci .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ7wN44qci .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ7wN44qci .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uZ7wN44qci .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uZ7wN44qci .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uZ7A9Mawwe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uZ7A9Mawwe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ7A9Mawwe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ7A9Mawwe .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uZ7A9Mawwe .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uZ7A9Mawwe .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uZ7BCJGBnB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ7BCJGBnB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ7BCJGBnB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ7BCJGBnB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ7BCJGBnB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ7BCJGBnB .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ7CLLAy0u {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ7CLLAy0u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ7CLLAy0u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ7CLLAy0u .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ7CLLAy0u .row {
  flex-direction: row-reverse;
}
.cid-uZ7CLLAy0u img {
  width: 100%;
}
.cid-uZ7EBaLbro {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uZ7EBaLbro .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ7EBaLbro .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ7EBaLbro .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uZ7EBaLbro .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uZ7EBaLbro .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uZ7Gy8oCHG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uZ7Gy8oCHG img,
.cid-uZ7Gy8oCHG .item-img {
  width: 100%;
}
.cid-uZ7Gy8oCHG .item:focus,
.cid-uZ7Gy8oCHG span:focus {
  outline: none;
}
.cid-uZ7Gy8oCHG .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uZ7Gy8oCHG .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZ7Gy8oCHG .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ7Gy8oCHG .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uZ7Gy8oCHG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZ7Gy8oCHG .mbr-section-title {
  color: #ffffff;
}
.cid-uZ7Gy8oCHG .mbr-text,
.cid-uZ7Gy8oCHG .mbr-section-btn {
  text-align: center;
}
.cid-uZ7Gy8oCHG .item-title {
  text-align: center;
}
.cid-uZ7Gy8oCHG .item-subtitle {
  text-align: left;
}
.cid-uZ7Krn06G2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ7Krn06G2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ7Krn06G2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ7Krn06G2 .video-wrapper iframe {
  width: 100%;
}
.cid-uZ7Krn06G2 .mbr-section-title,
.cid-uZ7Krn06G2 .mbr-section-subtitle,
.cid-uZ7Krn06G2 .mbr-text {
  text-align: center;
}
.cid-uZ7LJfiSCX {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ7LJfiSCX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ7LJfiSCX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ7LJfiSCX .video-wrapper iframe {
  width: 100%;
}
.cid-uZ7LJfiSCX .mbr-section-title,
.cid-uZ7LJfiSCX .mbr-section-subtitle,
.cid-uZ7LJfiSCX .mbr-text {
  text-align: center;
}
.cid-uZ7M5SdLfO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ7M5SdLfO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ7M5SdLfO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ7M5SdLfO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ7M5SdLfO .row {
  flex-direction: row-reverse;
}
.cid-uZ7M5SdLfO img {
  width: 100%;
}
.cid-uZ7N1GXdAH {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ7N1GXdAH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ7N1GXdAH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ7N1GXdAH .video-wrapper iframe {
  width: 100%;
}
.cid-uZ7N1GXdAH .mbr-section-title,
.cid-uZ7N1GXdAH .mbr-section-subtitle,
.cid-uZ7N1GXdAH .mbr-text {
  text-align: center;
}
.cid-uZ7Pi3ck3S {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ7Pi3ck3S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ7Pi3ck3S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ7Pi3ck3S .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ7Pi3ck3S .row {
  flex-direction: row-reverse;
}
.cid-uZ7Pi3ck3S img {
  width: 100%;
}
.cid-uZ7Qor1xfi {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uZ7Qor1xfi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ7Qor1xfi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ7Qor1xfi .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uZ7Qor1xfi .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uZ7Qor1xfi .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uZ7SAcUwao {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ7SAcUwao .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ7SAcUwao .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ7SAcUwao .video-wrapper iframe {
  width: 100%;
}
.cid-uZ7SAcUwao .mbr-section-title,
.cid-uZ7SAcUwao .mbr-section-subtitle,
.cid-uZ7SAcUwao .mbr-text {
  text-align: center;
}
.cid-uZ7SKfFbil {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uZ7SKfFbil .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ7SKfFbil .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ7SKfFbil .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uZ7SKfFbil .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uZ7SKfFbil .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uZ7UHTVlTh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-uZ7UHTVlTh img,
.cid-uZ7UHTVlTh .item-img {
  width: 100%;
}
.cid-uZ7UHTVlTh .item:focus,
.cid-uZ7UHTVlTh span:focus {
  outline: none;
}
.cid-uZ7UHTVlTh .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uZ7UHTVlTh .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZ7UHTVlTh .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ7UHTVlTh .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uZ7UHTVlTh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZ7UHTVlTh .mbr-section-title {
  color: #ffffff;
}
.cid-uZ7UHTVlTh .mbr-text,
.cid-uZ7UHTVlTh .mbr-section-btn {
  text-align: center;
}
.cid-uZ7UHTVlTh .item-title {
  text-align: center;
}
.cid-uZ7UHTVlTh .item-subtitle {
  text-align: left;
}
.cid-uZ7XiEjugv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ7XiEjugv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ7XiEjugv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ7XiEjugv .video-wrapper iframe {
  width: 100%;
}
.cid-uZ7XiEjugv .mbr-section-title,
.cid-uZ7XiEjugv .mbr-section-subtitle,
.cid-uZ7XiEjugv .mbr-text {
  text-align: center;
}
.cid-uZ7XIRAnbR {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ7XIRAnbR img,
.cid-uZ7XIRAnbR .item-img {
  width: 100%;
}
.cid-uZ7XIRAnbR .item:focus,
.cid-uZ7XIRAnbR span:focus {
  outline: none;
}
.cid-uZ7XIRAnbR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uZ7XIRAnbR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uZ7XIRAnbR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uZ7XIRAnbR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uZ7XIRAnbR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uZ7XIRAnbR .mbr-section-title {
  color: #232323;
}
.cid-uZ7XIRAnbR .mbr-text,
.cid-uZ7XIRAnbR .mbr-section-btn {
  text-align: left;
}
.cid-uZ7XIRAnbR .item-title {
  text-align: left;
}
.cid-uZ7XIRAnbR .item-subtitle {
  text-align: left;
}
.cid-uZ81zpNxrA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uZ81zpNxrA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ81zpNxrA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ81zpNxrA .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uZ81zpNxrA .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uZ81zpNxrA .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uZ83ctRMVW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uZ83ctRMVW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ83ctRMVW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ83ctRMVW .row {
  align-items: stretch;
  justify-content: center;
}
.cid-uZ83ctRMVW .row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.cid-uZ83ctRMVW .row .img-item img {
  width: 100%;
  object-fit: cover;
  min-height: 1px;
}
.cid-uZ85lpytX9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ85lpytX9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ85lpytX9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ85lpytX9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ85lpytX9 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ85lpytX9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ89QjhiYl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ89QjhiYl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ89QjhiYl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ89QjhiYl .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ89QjhiYl img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ89QjhiYl .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ8b6d5yyn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8b6d5yyn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8b6d5yyn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8b6d5yyn .video-wrapper iframe {
  width: 100%;
}
.cid-uZ8b6d5yyn .mbr-section-title,
.cid-uZ8b6d5yyn .mbr-section-subtitle,
.cid-uZ8b6d5yyn .mbr-text {
  text-align: center;
}
.cid-uZ8baIgJ4a {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8baIgJ4a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8baIgJ4a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ8baIgJ4a .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ8baIgJ4a img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ8baIgJ4a .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ8dVW4kGe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8dVW4kGe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8dVW4kGe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ8dVW4kGe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ8dVW4kGe .row {
  flex-direction: row-reverse;
}
.cid-uZ8dVW4kGe img {
  width: 100%;
}
.cid-uZ8fnvmtfe {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8fnvmtfe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8fnvmtfe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8fnvmtfe .video-wrapper iframe {
  width: 100%;
}
.cid-uZ8fnvmtfe .mbr-section-title,
.cid-uZ8fnvmtfe .mbr-section-subtitle,
.cid-uZ8fnvmtfe .mbr-text {
  text-align: center;
}
.cid-uZ8fMBfGWj {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8fMBfGWj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8fMBfGWj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZ8fMBfGWj .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uZ8fMBfGWj .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uZ8fMBfGWj .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uZ8fMBfGWj .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uZ8fMBfGWj .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uZ8fMBfGWj .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uZ8fMBfGWj .carousel-control,
.cid-uZ8fMBfGWj .close {
  background: #1b1b1b;
}
.cid-uZ8fMBfGWj .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZ8fMBfGWj .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZ8fMBfGWj .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZ8fMBfGWj .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZ8fMBfGWj .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uZ8fMBfGWj .close::before {
  content: '\e91a';
}
.cid-uZ8fMBfGWj .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uZ8fMBfGWj .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uZ8fMBfGWj .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ8fMBfGWj .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZ8fMBfGWj .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZ8fMBfGWj .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZ8fMBfGWj .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uZ8fMBfGWj .carousel-indicators li.active,
.cid-uZ8fMBfGWj .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZ8fMBfGWj .carousel-indicators li::after,
.cid-uZ8fMBfGWj .carousel-indicators li::before {
  content: none;
}
.cid-uZ8fMBfGWj .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZ8fMBfGWj .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZ8fMBfGWj .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZ8fMBfGWj .carousel-indicators {
    display: none;
  }
}
.cid-uZ8fMBfGWj .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZ8fMBfGWj .carousel-inner > .active {
  display: block;
}
.cid-uZ8fMBfGWj .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZ8fMBfGWj .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZ8fMBfGWj .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZ8fMBfGWj .carousel-control,
  .cid-uZ8fMBfGWj .carousel-indicators,
  .cid-uZ8fMBfGWj .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZ8fMBfGWj .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZ8fMBfGWj .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZ8fMBfGWj .carousel-indicators .active,
.cid-uZ8fMBfGWj .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZ8fMBfGWj .carousel-indicators .active {
  background: #fff;
}
.cid-uZ8fMBfGWj .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZ8fMBfGWj .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZ8fMBfGWj .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZ8fMBfGWj .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZ8fMBfGWj .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZ8fMBfGWj .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZ8fMBfGWj .carousel {
  width: 100%;
}
.cid-uZ8fMBfGWj .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZ8fMBfGWj .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZ8fMBfGWj .modal.fade .modal-dialog,
.cid-uZ8fMBfGWj .modal.in .modal-dialog {
  transform: none;
}
.cid-uZ8fMBfGWj .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZ8fMBfGWj H6 {
  text-align: center;
}
.cid-uZ8Hc8HLdC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZ8wJHWx70 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZ8xev4PVp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8xev4PVp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8xev4PVp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ8xev4PVp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ8xev4PVp .row {
  flex-direction: row-reverse;
}
.cid-uZ8xev4PVp img {
  width: 100%;
}
.cid-uZ8xev4PVp .mbr-description {
  text-align: justify;
}
.cid-uZ8xTNNwTN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8xTNNwTN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8xTNNwTN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ8xTNNwTN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ8xTNNwTN img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ8xTNNwTN .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ8AEpyOup {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8AEpyOup .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8AEpyOup .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ8AEpyOup .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ8AEpyOup .row {
  flex-direction: row-reverse;
}
.cid-uZ8AEpyOup img {
  width: 100%;
}
.cid-uZ8AORJSrQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZ8C4MdUMU {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8C4MdUMU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8C4MdUMU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ8C4MdUMU .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ8C4MdUMU .row {
  flex-direction: row-reverse;
}
.cid-uZ8C4MdUMU img {
  width: 100%;
}
.cid-uZ8CkIkZzb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZ8JFUED4K {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8JFUED4K .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8JFUED4K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ8JFUED4K .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ8JFUED4K .row {
  flex-direction: row-reverse;
}
.cid-uZ8JFUED4K img {
  width: 100%;
}
.cid-uZ8K4baotV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZ8KnytVTK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8KnytVTK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8KnytVTK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ8KnytVTK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ8KnytVTK .row {
  flex-direction: row-reverse;
}
.cid-uZ8KnytVTK img {
  width: 100%;
}
.cid-uZ8KZ8kJl0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZ8Mh6eXJ3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8Mh6eXJ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8Mh6eXJ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ8Mh6eXJ3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ8Mh6eXJ3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ8Mh6eXJ3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ8MBiPINm {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZ8P0P2Qi9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8P0P2Qi9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8P0P2Qi9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ8P0P2Qi9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ8P0P2Qi9 .row {
  flex-direction: row-reverse;
}
.cid-uZ8P0P2Qi9 img {
  width: 100%;
}
.cid-uZ8P0P2Qi9 .mbr-description {
  text-align: justify;
}
.cid-uZ8Rv4vAKM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8Rv4vAKM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8Rv4vAKM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ8Rv4vAKM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ8Rv4vAKM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ8Rv4vAKM .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ8SbiPVR5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8SbiPVR5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8SbiPVR5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ8SbiPVR5 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ8SbiPVR5 .row {
  flex-direction: row-reverse;
}
.cid-uZ8SbiPVR5 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ8SbiPVR5 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ8SQtuEfn {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8SQtuEfn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8SQtuEfn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ8SQtuEfn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ8SQtuEfn img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ8SQtuEfn .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ8Vn3qmgM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8Vn3qmgM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8Vn3qmgM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ8Vn3qmgM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ8Vn3qmgM .row {
  flex-direction: row-reverse;
}
.cid-uZ8Vn3qmgM img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ8Vn3qmgM .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ8VSPdhz2 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZ8VSPdhz2 .mbr-text {
  text-align: justify;
}
.cid-uZ8XAeRcNV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZ8YV8LDMQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZ8Zf6FiaO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ8Zf6FiaO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ8Zf6FiaO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ8Zf6FiaO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ8Zf6FiaO .row {
  flex-direction: row-reverse;
}
.cid-uZ8Zf6FiaO img {
  width: 100%;
}
.cid-uZ8Zf6FiaO .mbr-description {
  text-align: justify;
}
.cid-uZ90xpnavi {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ90xpnavi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ90xpnavi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ90xpnavi .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ90xpnavi .row {
  flex-direction: row-reverse;
}
.cid-uZ90xpnavi img {
  width: 100%;
}
.cid-uZ90xpnavi .mbr-description {
  text-align: justify;
}
.cid-uZ92hlLD9p {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ92hlLD9p .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ92hlLD9p .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ92hlLD9p .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ92hlLD9p .row {
  flex-direction: row-reverse;
}
.cid-uZ92hlLD9p img {
  width: 100%;
}
.cid-uZ92hlLD9p .mbr-description {
  text-align: justify;
}
.cid-uZ92ERtNFq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ92ERtNFq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ92ERtNFq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ92ERtNFq .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ92ERtNFq .row {
  flex-direction: row-reverse;
}
.cid-uZ92ERtNFq img {
  width: 100%;
}
.cid-uZ92ERtNFq .mbr-description {
  text-align: justify;
}
.cid-uZ93hGrTC9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ93hGrTC9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ93hGrTC9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ93hGrTC9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ93hGrTC9 .row {
  flex-direction: row-reverse;
}
.cid-uZ93hGrTC9 img {
  width: 100%;
}
.cid-uZ93hGrTC9 .mbr-description {
  text-align: justify;
}
.cid-uZ946G5Uwp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ946G5Uwp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ946G5Uwp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ946G5Uwp .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ946G5Uwp .row {
  flex-direction: row-reverse;
}
.cid-uZ946G5Uwp img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ946G5Uwp .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ946G5Uwp .mbr-description {
  text-align: justify;
}
.cid-uZ94zijPlh {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZ94Qdktnh {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ94Qdktnh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ94Qdktnh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ94Qdktnh .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ94Qdktnh img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ94Qdktnh .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ95RtdMY5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZ97Th0u7n {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ97Th0u7n .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ97Th0u7n .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ97Th0u7n .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ97Th0u7n .row {
  flex-direction: row-reverse;
}
.cid-uZ97Th0u7n img {
  width: 100%;
}
.cid-uZ97Th0u7n .mbr-description {
  text-align: justify;
}
.cid-uZ9a2hUdec {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ9a2hUdec .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ9a2hUdec .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ9a2hUdec .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ9a2hUdec .row {
  flex-direction: row-reverse;
}
.cid-uZ9a2hUdec img {
  width: 100%;
}
.cid-uZ9a2hUdec .mbr-description {
  text-align: justify;
}
.cid-uZ9bFZzbjJ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ9bFZzbjJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ9bFZzbjJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ9bFZzbjJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ9bFZzbjJ .row {
  flex-direction: row-reverse;
}
.cid-uZ9bFZzbjJ img {
  width: 100%;
}
.cid-uZ9bFZzbjJ .mbr-description {
  text-align: justify;
}
.cid-uZ9c8i16NN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ9c8i16NN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ9c8i16NN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ9c8i16NN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ9c8i16NN .row {
  flex-direction: row-reverse;
}
.cid-uZ9c8i16NN img {
  width: 100%;
}
.cid-uZ9c8i16NN .mbr-description {
  text-align: justify;
}
.cid-uZ9ePxHc0x {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ9ePxHc0x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ9ePxHc0x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ9ePxHc0x .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ9ePxHc0x .row {
  flex-direction: row-reverse;
}
.cid-uZ9ePxHc0x img {
  width: 100%;
}
.cid-uZ9ePxHc0x .mbr-description {
  text-align: justify;
}
.cid-uZ9fb7feNF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ9fb7feNF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ9fb7feNF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ9fb7feNF .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ9fb7feNF .row {
  flex-direction: row-reverse;
}
.cid-uZ9fb7feNF img {
  width: 100%;
}
.cid-uZ9fb7feNF .mbr-description {
  text-align: justify;
}
.cid-uZ9gRH1Vnc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZ9hajFHSw {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ9hajFHSw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ9hajFHSw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ9hajFHSw .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ9hajFHSw .row {
  flex-direction: row-reverse;
}
.cid-uZ9hajFHSw img {
  width: 100%;
}
.cid-uZ9hajFHSw .mbr-description {
  text-align: justify;
}
.cid-uZ9iU80R10 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ9iU80R10 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ9iU80R10 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ9iU80R10 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ9iU80R10 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ9iU80R10 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ9jplTTAT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ9jplTTAT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ9jplTTAT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ9jplTTAT .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ9jplTTAT .row {
  flex-direction: row-reverse;
}
.cid-uZ9jplTTAT img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ9jplTTAT .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ9lD7bMAY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ9lD7bMAY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ9lD7bMAY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ9lD7bMAY .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ9lD7bMAY .row {
  flex-direction: row-reverse;
}
.cid-uZ9lD7bMAY img {
  width: 100%;
}
.cid-uZ9lD7bMAY .mbr-description {
  text-align: justify;
}
.cid-uZ9tyyCLAG {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ9tyyCLAG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ9tyyCLAG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ9tyyCLAG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ9tyyCLAG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ9tyyCLAG .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ9zGRY3qr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ9zGRY3qr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ9zGRY3qr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ9zGRY3qr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ9zGRY3qr .row {
  flex-direction: row-reverse;
}
.cid-uZ9zGRY3qr img {
  width: 100%;
}
.cid-uZ9zGRY3qr .mbr-description {
  text-align: justify;
}
.cid-uZ9DVPKHPM {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ9DVPKHPM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ9DVPKHPM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ9DVPKHPM .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ9DVPKHPM .row {
  flex-direction: row-reverse;
}
.cid-uZ9DVPKHPM img {
  width: 100%;
}
.cid-uZ9DVPKHPM .mbr-description {
  text-align: justify;
}
.cid-uZ9FifPLMs {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ9FifPLMs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ9FifPLMs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ9FifPLMs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ9FifPLMs .row {
  flex-direction: row-reverse;
}
.cid-uZ9FifPLMs img {
  width: 100%;
}
.cid-uZ9FifPLMs .mbr-description {
  text-align: justify;
}
.cid-uZ9FMFsuZL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ9FMFsuZL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ9FMFsuZL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ9FMFsuZL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ9FMFsuZL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ9FMFsuZL .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ9GadwjVa {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uZ9GadwjVa .mbr-text {
  text-align: justify;
}
.cid-uZ9GRtV4XO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ9GRtV4XO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ9GRtV4XO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ9GRtV4XO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ9GRtV4XO img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ9GRtV4XO .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZ9HpyeVMO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ9HpyeVMO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ9HpyeVMO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ9HpyeVMO .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ9HpyeVMO .row {
  flex-direction: row-reverse;
}
.cid-uZ9HpyeVMO img {
  width: 100%;
}
.cid-uZ9HpyeVMO .mbr-description {
  text-align: justify;
}
.cid-uZ9HYmWLcE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZ9HYmWLcE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZ9HYmWLcE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZ9HYmWLcE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZ9HYmWLcE .row {
  flex-direction: row-reverse;
}
.cid-uZ9HYmWLcE img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uZ9HYmWLcE .text-wrapper {
    padding: 2rem;
  }
}
.cid-uZfB93KExz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZfB93KExz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZfB93KExz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZfB93KExz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZfB93KExz .row {
  flex-direction: row-reverse;
}
.cid-uZfB93KExz img {
  width: 100%;
}
.cid-uZfB93KExz .mbr-description {
  text-align: justify;
}
.cid-uZfHXtg7A2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uZfHXtg7A2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZfHXtg7A2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uZfHXtg7A2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uZfHXtg7A2 .row {
  flex-direction: row-reverse;
}
.cid-uZfHXtg7A2 img {
  width: 100%;
}
.cid-uZfHXtg7A2 .mbr-description {
  text-align: justify;
}
