body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tnaWRIFoRL {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnaWRIFoRL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tnaWRIFoRL .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-tnaWRIFoRL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tnaWRIFoRL .row {
  flex-direction: row-reverse;
}
.cid-tnaWRIFoRL img {
  width: 100%;
}
.cid-ttGNWt0ZLe {
  background-color: #ffffff;
}
.cid-ttGNWt0ZLe .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttGNWt0ZLe .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-ttGNWt0ZLe .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-ttGNWt0ZLe .row {
  flex-direction: row-reverse;
}
.cid-ttGNWt0ZLe img {
  width: 100%;
}
.cid-tnaPdYZHuj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tnaPdYZHuj .timeline-element {
  position: relative;
}
.cid-tnaPdYZHuj .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-tnaPdYZHuj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tnaPdYZHuj .mbr-section-title,
.cid-tnaPdYZHuj .mbr-section-subtitle,
.cid-tnaPdYZHuj .timeline-date {
  text-align: center;
}
.cid-tnaPdYZHuj .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #b4dfe5;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tnaPdYZHuj .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-tnaPdYZHuj .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-tnaPdYZHuj .row:after {
  content: "";
  position: absolute;
  background-color: #b4dfe5;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-tnaPdYZHuj .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-tnaPdYZHuj .row:after {
    height: calc(100% - 20px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-tnaPdYZHuj .timeline-date-wrapper,
  .cid-tnaPdYZHuj .timeline-text-wrapper,
  .cid-tnaPdYZHuj .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-tnaPdYZHuj .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-tnaPdYZHuj .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tnaPdYZHuj .timeline-date-wrapper,
  .cid-tnaPdYZHuj .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tnaPdYZHuj .timeline-date-wrapper,
  .cid-tnaPdYZHuj .timeline-text-wrapper,
  .cid-tnaPdYZHuj .image-wrapper {
    padding: 2rem;
  }
}
.cid-toGxy0MXtS {
  padding-top: 7rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-toGxy0MXtS .section-head {
  margin-bottom: 2rem;
}
.cid-toGxy0MXtS .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}
.cid-toGxy0MXtS .mbr-section-subtitle {
  text-align: right;
}
@media (max-width: 991px) {
  .cid-toGxy0MXtS .row {
    text-align: center;
  }
}
.cid-toGxy0MXtS .wave-container {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  bottom: -1px;
  overflow: hidden;
}
.cid-toGxy0MXtS .wave-container .wave {
  width: 5500px;
  position: relative;
  left: -3300px;
}
.cid-toGxy0MXtS .wave-container .wave svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-toGxy0MXtS .wave-container .wave svg path {
  fill: #e43f3f;
}
@keyframes wavy {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
    animation-timing-function: linear;
  }
  100% {
    opacity: 1;
    transform: translateX(3230px) translateY(0px) rotate(0deg) scale(1, 1);
  }
}
.cid-tnaPr3Bpxd {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tnaPr3Bpxd img,
.cid-tnaPr3Bpxd .item-img {
  width: 100%;
  height: 100%;
  height: 400px;
  object-fit: cover;
}
.cid-tnaPr3Bpxd .item:focus,
.cid-tnaPr3Bpxd span:focus {
  outline: none;
}
.cid-tnaPr3Bpxd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tnaPr3Bpxd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnaPr3Bpxd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnaPr3Bpxd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnaPr3Bpxd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnaPr3Bpxd .mbr-section-title {
  color: #232323;
}
.cid-tnaPr3Bpxd .mbr-text,
.cid-tnaPr3Bpxd .mbr-section-btn {
  text-align: left;
}
.cid-tnaPr3Bpxd .item-title {
  text-align: left;
}
.cid-tnaPr3Bpxd .item-subtitle {
  text-align: center;
}
.cid-tnb3uwJ6rW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #e43f3f;
}
@media (min-width: 991px) {
  .cid-tnb3uwJ6rW .container-fluid {
    padding-left: 0;
  }
}
.cid-tnb3uwJ6rW .mbr-text,
.cid-tnb3uwJ6rW .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tnb3uwJ6rW .mbr-text,
  .cid-tnb3uwJ6rW .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tnb3uwJ6rW .mbr-text,
  .cid-tnb3uwJ6rW .mbr-section-title {
    text-align: center;
  }
}
.cid-tnb3uwJ6rW a.btn {
  height: 100%;
  margin: 0;
}
.cid-tnb3uwJ6rW .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-tnb3uwJ6rW .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-tnb3uwJ6rW .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tnb3uwJ6rW .justify-content-center {
  align-items: center;
}
.cid-toOjlF8GFR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-toOjlF8GFR .mbr-fallback-image.disabled {
  display: none;
}
.cid-toOjlF8GFR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toOjlF8GFR .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-toOjlF8GFR .bg-facebook:hover {
  background: #0b60cb;
}
.cid-toOjlF8GFR .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-toOjlF8GFR .bg-twitter:hover {
  background: #0c85d0;
}
.cid-toOjlF8GFR .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-toOjlF8GFR .bg-instagram:hover {
  background: #bd005c;
}
.cid-toOjlF8GFR .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-toOjlF8GFR [class^="socicon-"]:before,
.cid-toOjlF8GFR [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tnbsV3h5PN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tnbsV3h5PN img,
.cid-tnbsV3h5PN .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tnbsV3h5PN .item:focus,
.cid-tnbsV3h5PN span:focus {
  outline: none;
}
.cid-tnbsV3h5PN .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tnbsV3h5PN .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnbsV3h5PN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnbsV3h5PN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnbsV3h5PN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnbsV3h5PN .mbr-section-title {
  color: #232323;
}
.cid-tsK3Md5j1T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsK3Md5j1T img,
.cid-tsK3Md5j1T .item-img {
  width: 100%;
}
.cid-tsK3Md5j1T .item:focus,
.cid-tsK3Md5j1T span:focus {
  outline: none;
}
.cid-tsK3Md5j1T .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsK3Md5j1T .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsK3Md5j1T .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsK3Md5j1T .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsK3Md5j1T .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsK3Md5j1T .mbr-section-title {
  color: #ffffff;
}
.cid-tsK3Md5j1T .mbr-text,
.cid-tsK3Md5j1T .mbr-section-btn {
  text-align: center;
}
.cid-tsK3Md5j1T .item-title {
  text-align: center;
}
.cid-tsK3Md5j1T .item-subtitle {
  text-align: left;
}
.cid-toHDOYrsEd {
  background-color: #ffffff;
}
.cid-toHDOYrsEd .mbr-fallback-image.disabled {
  display: none;
}
.cid-toHDOYrsEd .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-toHDOYrsEd .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-toHDOYrsEd .row {
  flex-direction: row-reverse;
}
.cid-toHDOYrsEd img {
  width: 100%;
}
.cid-tnnJNl0t6y {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tnnJNl0t6y img,
.cid-tnnJNl0t6y .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tnnJNl0t6y .item:focus,
.cid-tnnJNl0t6y span:focus {
  outline: none;
}
.cid-tnnJNl0t6y .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tnnJNl0t6y .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnnJNl0t6y .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnnJNl0t6y .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnnJNl0t6y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnnJNl0t6y .mbr-section-title {
  color: #232323;
}
.cid-tt1EMRRqqo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tt1EMRRqqo img,
.cid-tt1EMRRqqo .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tt1EMRRqqo .item:focus,
.cid-tt1EMRRqqo span:focus {
  outline: none;
}
.cid-tt1EMRRqqo .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tt1EMRRqqo .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tt1EMRRqqo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tt1EMRRqqo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tt1EMRRqqo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tt1EMRRqqo .mbr-section-title {
  color: #ffffff;
}
.cid-tt1EMRRqqo .mbr-text,
.cid-tt1EMRRqqo .mbr-section-btn {
  text-align: center;
}
.cid-tt1EMRRqqo .item-title {
  text-align: center;
}
.cid-tt1EMRRqqo .item-subtitle {
  text-align: left;
}
.cid-tt1IrBgCPY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tt1IrBgCPY img,
.cid-tt1IrBgCPY .item-img {
  width: 100%;
}
.cid-tt1IrBgCPY .item:focus,
.cid-tt1IrBgCPY span:focus {
  outline: none;
}
.cid-tt1IrBgCPY .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tt1IrBgCPY .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tt1IrBgCPY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tt1IrBgCPY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tt1IrBgCPY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tt1IrBgCPY .mbr-section-title {
  color: #ffffff;
}
.cid-tt1IrBgCPY .mbr-text,
.cid-tt1IrBgCPY .mbr-section-btn {
  text-align: center;
}
.cid-tt1IrBgCPY .item-title {
  text-align: center;
}
.cid-tt1IrBgCPY .item-subtitle {
  text-align: left;
}
.cid-tt1JXnGkkb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tt1JXnGkkb img,
.cid-tt1JXnGkkb .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tt1JXnGkkb .item:focus,
.cid-tt1JXnGkkb span:focus {
  outline: none;
}
.cid-tt1JXnGkkb .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tt1JXnGkkb .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tt1JXnGkkb .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tt1JXnGkkb .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tt1JXnGkkb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tt1JXnGkkb .mbr-section-title {
  color: #ffffff;
}
.cid-tt1JXnGkkb .mbr-text,
.cid-tt1JXnGkkb .mbr-section-btn {
  text-align: center;
}
.cid-tt1JXnGkkb .item-title {
  text-align: center;
}
.cid-tt1JXnGkkb .item-subtitle {
  text-align: left;
}
.cid-tnnLHhPFUp {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tnnLHhPFUp img,
.cid-tnnLHhPFUp .item-img {
  width: 100%;
}
.cid-tnnLHhPFUp .item:focus,
.cid-tnnLHhPFUp span:focus {
  outline: none;
}
.cid-tnnLHhPFUp .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tnnLHhPFUp .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnnLHhPFUp .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnnLHhPFUp .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnnLHhPFUp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnnLHhPFUp .mbr-section-title {
  color: #232323;
}
.cid-tnRxBX1G5E {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tnRxBX1G5E img,
.cid-tnRxBX1G5E .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tnRxBX1G5E .item:focus,
.cid-tnRxBX1G5E span:focus {
  outline: none;
}
.cid-tnRxBX1G5E .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tnRxBX1G5E .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnRxBX1G5E .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnRxBX1G5E .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnRxBX1G5E .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnRxBX1G5E .mbr-section-title {
  color: #232323;
}
.cid-towx47qT5C {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-towx47qT5C img,
.cid-towx47qT5C .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-towx47qT5C .item:focus,
.cid-towx47qT5C span:focus {
  outline: none;
}
.cid-towx47qT5C .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-towx47qT5C .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-towx47qT5C .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-towx47qT5C .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-towx47qT5C .mbr-section-btn {
  margin-top: auto !important;
}
.cid-towx47qT5C .mbr-section-title {
  color: #232323;
}
.cid-ttjlC8Sr2y {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-ttjlC8Sr2y img,
.cid-ttjlC8Sr2y .item-img {
  width: 100%;
}
.cid-ttjlC8Sr2y .item:focus,
.cid-ttjlC8Sr2y span:focus {
  outline: none;
}
.cid-ttjlC8Sr2y .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-ttjlC8Sr2y .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ttjlC8Sr2y .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ttjlC8Sr2y .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ttjlC8Sr2y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ttjlC8Sr2y .mbr-section-title {
  color: #ffffff;
}
.cid-ttjlC8Sr2y .mbr-text,
.cid-ttjlC8Sr2y .mbr-section-btn {
  text-align: center;
}
.cid-ttjlC8Sr2y .item-title {
  text-align: center;
}
.cid-ttjlC8Sr2y .item-subtitle {
  text-align: left;
}
.cid-tt1QDZYhKG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tt1QDZYhKG img,
.cid-tt1QDZYhKG .item-img {
  width: 100%;
}
.cid-tt1QDZYhKG .item:focus,
.cid-tt1QDZYhKG span:focus {
  outline: none;
}
.cid-tt1QDZYhKG .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tt1QDZYhKG .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tt1QDZYhKG .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tt1QDZYhKG .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tt1QDZYhKG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tt1QDZYhKG .mbr-section-title {
  color: #ffffff;
}
.cid-tt1QDZYhKG .mbr-text,
.cid-tt1QDZYhKG .mbr-section-btn {
  text-align: center;
}
.cid-tt1QDZYhKG .item-title {
  text-align: center;
}
.cid-tt1QDZYhKG .item-subtitle {
  text-align: left;
}
.cid-tt1Ts7dOM1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tt1Ts7dOM1 img,
.cid-tt1Ts7dOM1 .item-img {
  width: 100%;
}
.cid-tt1Ts7dOM1 .item:focus,
.cid-tt1Ts7dOM1 span:focus {
  outline: none;
}
.cid-tt1Ts7dOM1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tt1Ts7dOM1 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tt1Ts7dOM1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tt1Ts7dOM1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tt1Ts7dOM1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tt1Ts7dOM1 .mbr-section-title {
  color: #ffffff;
}
.cid-tt1Ts7dOM1 .mbr-text,
.cid-tt1Ts7dOM1 .mbr-section-btn {
  text-align: center;
}
.cid-tt1Ts7dOM1 .item-title {
  text-align: center;
}
.cid-tt1Ts7dOM1 .item-subtitle {
  text-align: left;
}
.cid-tt1VJoaD0c {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tt1VJoaD0c img,
.cid-tt1VJoaD0c .item-img {
  width: 100%;
}
.cid-tt1VJoaD0c .item:focus,
.cid-tt1VJoaD0c span:focus {
  outline: none;
}
.cid-tt1VJoaD0c .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tt1VJoaD0c .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tt1VJoaD0c .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tt1VJoaD0c .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tt1VJoaD0c .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tt1VJoaD0c .mbr-section-title {
  color: #ffffff;
}
.cid-tt1VJoaD0c .mbr-text,
.cid-tt1VJoaD0c .mbr-section-btn {
  text-align: center;
}
.cid-tt1VJoaD0c .item-title {
  text-align: center;
}
.cid-tt1VJoaD0c .item-subtitle {
  text-align: left;
}
.cid-ttjieagnHa {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttjieagnHa img,
.cid-ttjieagnHa .item-img {
  width: 100%;
}
.cid-ttjieagnHa .item:focus,
.cid-ttjieagnHa span:focus {
  outline: none;
}
.cid-ttjieagnHa .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-ttjieagnHa .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ttjieagnHa .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ttjieagnHa .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ttjieagnHa .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ttjieagnHa .mbr-section-title {
  color: #ffffff;
}
.cid-ttjieagnHa .mbr-text,
.cid-ttjieagnHa .mbr-section-btn {
  text-align: center;
}
.cid-ttjieagnHa .item-title {
  text-align: center;
}
.cid-ttjieagnHa .item-subtitle {
  text-align: left;
}
.cid-tnnMiuEKcz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tnnMiuEKcz img,
.cid-tnnMiuEKcz .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tnnMiuEKcz .item:focus,
.cid-tnnMiuEKcz span:focus {
  outline: none;
}
.cid-tnnMiuEKcz .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tnnMiuEKcz .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tnnMiuEKcz .item {
  padding: 0;
  margin: 0;
}
.cid-tnnMiuEKcz .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnnMiuEKcz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnnMiuEKcz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnnMiuEKcz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnnMiuEKcz .mbr-section-title {
  color: #232323;
}
.cid-tnnMjOTjtw {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tnnMjOTjtw img,
.cid-tnnMjOTjtw .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tnnMjOTjtw .item:focus,
.cid-tnnMjOTjtw span:focus {
  outline: none;
}
.cid-tnnMjOTjtw .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tnnMjOTjtw .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tnnMjOTjtw .item {
  padding: 0;
  margin: 0;
}
.cid-tnnMjOTjtw .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnnMjOTjtw .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnnMjOTjtw .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnnMjOTjtw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnnMjOTjtw .mbr-section-title {
  color: #232323;
}
.cid-tnnMkPaka7 {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tnnMkPaka7 img,
.cid-tnnMkPaka7 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tnnMkPaka7 .item:focus,
.cid-tnnMkPaka7 span:focus {
  outline: none;
}
.cid-tnnMkPaka7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tnnMkPaka7 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tnnMkPaka7 .item {
  padding: 0;
  margin: 0;
}
.cid-tnnMkPaka7 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnnMkPaka7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnnMkPaka7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnnMkPaka7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnnMkPaka7 .mbr-section-title {
  color: #232323;
}
.cid-tnufDZF7dt {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tnufDZF7dt img,
.cid-tnufDZF7dt .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tnufDZF7dt .item:focus,
.cid-tnufDZF7dt span:focus {
  outline: none;
}
.cid-tnufDZF7dt .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tnufDZF7dt .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tnufDZF7dt .item {
  padding: 0;
  margin: 0;
}
.cid-tnufDZF7dt .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnufDZF7dt .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnufDZF7dt .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnufDZF7dt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnufDZF7dt .mbr-section-title {
  color: #232323;
}
.cid-tnRJhYpu32 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tnRJhYpu32 img,
.cid-tnRJhYpu32 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tnRJhYpu32 .item:focus,
.cid-tnRJhYpu32 span:focus {
  outline: none;
}
.cid-tnRJhYpu32 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tnRJhYpu32 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tnRJhYpu32 .item {
  padding: 0;
  margin: 0;
}
.cid-tnRJhYpu32 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tnRJhYpu32 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tnRJhYpu32 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tnRJhYpu32 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tnRJhYpu32 .mbr-section-title {
  color: #232323;
}
.cid-tJOIXOdBnu {
  background-color: #ffffff;
}
.cid-tJOIXOdBnu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tJOIXOdBnu .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-tJOIXOdBnu .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tJOIXOdBnu .row {
  flex-direction: row-reverse;
}
.cid-tJOIXOdBnu img {
  width: 100%;
}
.cid-tJOOEPnpl4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tJOOEPnpl4 img,
.cid-tJOOEPnpl4 .item-img {
  width: 100%;
}
.cid-tJOOEPnpl4 .item:focus,
.cid-tJOOEPnpl4 span:focus {
  outline: none;
}
.cid-tJOOEPnpl4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tJOOEPnpl4 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tJOOEPnpl4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJOOEPnpl4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tJOOEPnpl4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tJOOEPnpl4 .mbr-section-title {
  color: #ffffff;
}
.cid-tJOOEPnpl4 .mbr-text,
.cid-tJOOEPnpl4 .mbr-section-btn {
  text-align: center;
}
.cid-tJOOEPnpl4 .item-title {
  text-align: center;
}
.cid-tJOOEPnpl4 .item-subtitle {
  text-align: left;
}
.cid-tUKX5pJmQE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tUKX5pJmQE img,
.cid-tUKX5pJmQE .item-img {
  width: 100%;
}
.cid-tUKX5pJmQE .item:focus,
.cid-tUKX5pJmQE span:focus {
  outline: none;
}
.cid-tUKX5pJmQE .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tUKX5pJmQE .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tUKX5pJmQE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tUKX5pJmQE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tUKX5pJmQE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tUKX5pJmQE .mbr-section-title {
  color: #ffffff;
}
.cid-tUKX5pJmQE .mbr-text,
.cid-tUKX5pJmQE .mbr-section-btn {
  text-align: center;
}
.cid-tUKX5pJmQE .item-title {
  text-align: center;
}
.cid-tUKX5pJmQE .item-subtitle {
  text-align: left;
}
.cid-tJOXKGp68b {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tJOXKGp68b img,
.cid-tJOXKGp68b .item-img {
  width: 100%;
}
.cid-tJOXKGp68b .item:focus,
.cid-tJOXKGp68b span:focus {
  outline: none;
}
.cid-tJOXKGp68b .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tJOXKGp68b .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tJOXKGp68b .item {
  padding: 0;
  margin: 0;
}
.cid-tJOXKGp68b .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tJOXKGp68b .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJOXKGp68b .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tJOXKGp68b .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tJOXKGp68b .mbr-section-title {
  color: #ffffff;
}
.cid-tJOXKGp68b .mbr-text,
.cid-tJOXKGp68b .mbr-section-btn {
  text-align: center;
}
.cid-tJOXKGp68b .item-title {
  text-align: center;
}
.cid-tJOXKGp68b .item-subtitle {
  text-align: left;
}
.cid-tqo11TaHs9 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqo11TaHs9 img,
.cid-tqo11TaHs9 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tqo11TaHs9 .item:focus,
.cid-tqo11TaHs9 span:focus {
  outline: none;
}
.cid-tqo11TaHs9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tqo11TaHs9 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tqo11TaHs9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqo11TaHs9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tqo11TaHs9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqo11TaHs9 .mbr-section-title {
  color: #232323;
}
.cid-tJP646qMBu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tJP646qMBu img,
.cid-tJP646qMBu .item-img {
  width: 100%;
}
.cid-tJP646qMBu .item:focus,
.cid-tJP646qMBu span:focus {
  outline: none;
}
.cid-tJP646qMBu .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tJP646qMBu .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tJP646qMBu .item {
  padding: 0;
  margin: 0;
}
.cid-tJP646qMBu .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tJP646qMBu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJP646qMBu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tJP646qMBu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tJP646qMBu .mbr-section-title {
  color: #232323;
}
.cid-tJP6WVTAQD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tJP6WVTAQD img,
.cid-tJP6WVTAQD .item-img {
  width: 100%;
}
.cid-tJP6WVTAQD .item:focus,
.cid-tJP6WVTAQD span:focus {
  outline: none;
}
.cid-tJP6WVTAQD .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tJP6WVTAQD .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tJP6WVTAQD .item {
  padding: 0;
  margin: 0;
}
.cid-tJP6WVTAQD .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tJP6WVTAQD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJP6WVTAQD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tJP6WVTAQD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tJP6WVTAQD .mbr-section-title {
  color: #232323;
}
.cid-tqoipg1iQ1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqoipg1iQ1 img,
.cid-tqoipg1iQ1 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tqoipg1iQ1 .item:focus,
.cid-tqoipg1iQ1 span:focus {
  outline: none;
}
.cid-tqoipg1iQ1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tqoipg1iQ1 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tqoipg1iQ1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqoipg1iQ1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tqoipg1iQ1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqoipg1iQ1 .mbr-section-title {
  color: #232323;
}
.cid-tJP7ZDDFgy {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tJP7ZDDFgy img,
.cid-tJP7ZDDFgy .item-img {
  width: 100%;
}
.cid-tJP7ZDDFgy .item:focus,
.cid-tJP7ZDDFgy span:focus {
  outline: none;
}
.cid-tJP7ZDDFgy .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tJP7ZDDFgy .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tJP7ZDDFgy .item {
  padding: 0;
  margin: 0;
}
.cid-tJP7ZDDFgy .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tJP7ZDDFgy .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJP7ZDDFgy .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tJP7ZDDFgy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tJP7ZDDFgy .mbr-section-title {
  color: #232323;
}
.cid-tJP8kNHUzd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tJP8kNHUzd img,
.cid-tJP8kNHUzd .item-img {
  width: 100%;
}
.cid-tJP8kNHUzd .item:focus,
.cid-tJP8kNHUzd span:focus {
  outline: none;
}
.cid-tJP8kNHUzd .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tJP8kNHUzd .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tJP8kNHUzd .item {
  padding: 0;
  margin: 0;
}
.cid-tJP8kNHUzd .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tJP8kNHUzd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJP8kNHUzd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tJP8kNHUzd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tJP8kNHUzd .mbr-section-title {
  color: #232323;
}
.cid-tJP9bz06jK {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tJP9bz06jK img,
.cid-tJP9bz06jK .item-img {
  width: 100%;
}
.cid-tJP9bz06jK .item:focus,
.cid-tJP9bz06jK span:focus {
  outline: none;
}
.cid-tJP9bz06jK .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tJP9bz06jK .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tJP9bz06jK .item {
  padding: 0;
  margin: 0;
}
.cid-tJP9bz06jK .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tJP9bz06jK .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJP9bz06jK .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tJP9bz06jK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tJP9bz06jK .mbr-section-title {
  color: #232323;
}
.cid-tJPa7ByyEA {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tJPa7ByyEA img,
.cid-tJPa7ByyEA .item-img {
  width: 100%;
}
.cid-tJPa7ByyEA .item:focus,
.cid-tJPa7ByyEA span:focus {
  outline: none;
}
.cid-tJPa7ByyEA .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tJPa7ByyEA .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tJPa7ByyEA .item {
  padding: 0;
  margin: 0;
}
.cid-tJPa7ByyEA .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tJPa7ByyEA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJPa7ByyEA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tJPa7ByyEA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tJPa7ByyEA .mbr-section-title {
  color: #232323;
}
.cid-tqoubuhKIB {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqoubuhKIB img,
.cid-tqoubuhKIB .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tqoubuhKIB .item:focus,
.cid-tqoubuhKIB span:focus {
  outline: none;
}
.cid-tqoubuhKIB .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tqoubuhKIB .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tqoubuhKIB .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqoubuhKIB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tqoubuhKIB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqoubuhKIB .mbr-section-title {
  color: #232323;
}
.cid-tJPcW5VGeE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tJPcW5VGeE img,
.cid-tJPcW5VGeE .item-img {
  width: 100%;
}
.cid-tJPcW5VGeE .item:focus,
.cid-tJPcW5VGeE span:focus {
  outline: none;
}
.cid-tJPcW5VGeE .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tJPcW5VGeE .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tJPcW5VGeE .item {
  padding: 0;
  margin: 0;
}
.cid-tJPcW5VGeE .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tJPcW5VGeE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJPcW5VGeE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tJPcW5VGeE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tJPcW5VGeE .mbr-section-title {
  color: #232323;
}
.cid-tqowKRGJdh {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tqowKRGJdh img,
.cid-tqowKRGJdh .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tqowKRGJdh .item:focus,
.cid-tqowKRGJdh span:focus {
  outline: none;
}
.cid-tqowKRGJdh .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tqowKRGJdh .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tqowKRGJdh .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqowKRGJdh .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tqowKRGJdh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqowKRGJdh .mbr-section-title {
  color: #232323;
}
.cid-tsmGmPsuAW {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tsmGmPsuAW img,
.cid-tsmGmPsuAW .item-img {
  width: 100%;
}
.cid-tsmGmPsuAW .item:focus,
.cid-tsmGmPsuAW span:focus {
  outline: none;
}
.cid-tsmGmPsuAW .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsmGmPsuAW .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsmGmPsuAW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsmGmPsuAW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsmGmPsuAW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsmGmPsuAW .mbr-section-title {
  color: #ffffff;
}
.cid-tsmGmPsuAW .mbr-text,
.cid-tsmGmPsuAW .mbr-section-btn {
  text-align: center;
}
.cid-tsmGmPsuAW .item-title {
  text-align: center;
}
.cid-tsmGmPsuAW .item-subtitle {
  text-align: left;
}
.cid-tsmJOx8mJk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsmJOx8mJk img,
.cid-tsmJOx8mJk .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tsmJOx8mJk .item:focus,
.cid-tsmJOx8mJk span:focus {
  outline: none;
}
.cid-tsmJOx8mJk .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsmJOx8mJk .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsmJOx8mJk .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsmJOx8mJk .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsmJOx8mJk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsmJOx8mJk .mbr-section-title {
  color: #ffffff;
}
.cid-tsmJOx8mJk .mbr-text,
.cid-tsmJOx8mJk .mbr-section-btn {
  text-align: center;
}
.cid-tsmJOx8mJk .item-title {
  text-align: center;
}
.cid-tsmJOx8mJk .item-subtitle {
  text-align: left;
}
.cid-tsmLwTvFvm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsmLwTvFvm img,
.cid-tsmLwTvFvm .item-img {
  width: 100%;
}
.cid-tsmLwTvFvm .item:focus,
.cid-tsmLwTvFvm span:focus {
  outline: none;
}
.cid-tsmLwTvFvm .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsmLwTvFvm .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsmLwTvFvm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsmLwTvFvm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsmLwTvFvm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsmLwTvFvm .mbr-section-title {
  color: #ffffff;
}
.cid-tsmLwTvFvm .mbr-text,
.cid-tsmLwTvFvm .mbr-section-btn {
  text-align: center;
}
.cid-tsmLwTvFvm .item-title {
  text-align: center;
}
.cid-tsmLwTvFvm .item-subtitle {
  text-align: left;
}
.cid-tsmNmbwLn9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsmNmbwLn9 img,
.cid-tsmNmbwLn9 .item-img {
  width: 100%;
}
.cid-tsmNmbwLn9 .item:focus,
.cid-tsmNmbwLn9 span:focus {
  outline: none;
}
.cid-tsmNmbwLn9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsmNmbwLn9 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsmNmbwLn9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsmNmbwLn9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsmNmbwLn9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsmNmbwLn9 .mbr-section-title {
  color: #ffffff;
}
.cid-tsmNmbwLn9 .mbr-text,
.cid-tsmNmbwLn9 .mbr-section-btn {
  text-align: center;
}
.cid-tsmNmbwLn9 .item-title {
  text-align: center;
}
.cid-tsmNmbwLn9 .item-subtitle {
  text-align: left;
}
.cid-tvcKgeOXRd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tvcKgeOXRd img,
.cid-tvcKgeOXRd .item-img {
  width: 100%;
}
.cid-tvcKgeOXRd .item:focus,
.cid-tvcKgeOXRd span:focus {
  outline: none;
}
.cid-tvcKgeOXRd .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tvcKgeOXRd .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvcKgeOXRd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvcKgeOXRd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvcKgeOXRd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvcKgeOXRd .mbr-section-title {
  color: #ffffff;
}
.cid-tvcKgeOXRd .mbr-text,
.cid-tvcKgeOXRd .mbr-section-btn {
  text-align: center;
}
.cid-tvcKgeOXRd .item-title {
  text-align: center;
}
.cid-tvcKgeOXRd .item-subtitle {
  text-align: left;
}
.cid-tuODteCkol {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuODteCkol img,
.cid-tuODteCkol .item-img {
  width: 100%;
}
.cid-tuODteCkol .item:focus,
.cid-tuODteCkol span:focus {
  outline: none;
}
.cid-tuODteCkol .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tuODteCkol .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tuODteCkol .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tuODteCkol .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tuODteCkol .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tuODteCkol .mbr-section-title {
  color: #ffffff;
}
.cid-tuODteCkol .mbr-text,
.cid-tuODteCkol .mbr-section-btn {
  text-align: center;
}
.cid-tuODteCkol .item-title {
  text-align: center;
}
.cid-tuODteCkol .item-subtitle {
  text-align: left;
}
.cid-tsmUZ6k1RA {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsmUZ6k1RA img,
.cid-tsmUZ6k1RA .item-img {
  width: 100%;
}
.cid-tsmUZ6k1RA .item:focus,
.cid-tsmUZ6k1RA span:focus {
  outline: none;
}
.cid-tsmUZ6k1RA .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsmUZ6k1RA .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsmUZ6k1RA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsmUZ6k1RA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsmUZ6k1RA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsmUZ6k1RA .mbr-section-title {
  color: #ffffff;
}
.cid-tsmUZ6k1RA .mbr-text,
.cid-tsmUZ6k1RA .mbr-section-btn {
  text-align: center;
}
.cid-tsmUZ6k1RA .item-title {
  text-align: center;
}
.cid-tsmUZ6k1RA .item-subtitle {
  text-align: left;
}
.cid-tuOMsEwIpL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuOMsEwIpL img,
.cid-tuOMsEwIpL .item-img {
  width: 100%;
}
.cid-tuOMsEwIpL .item:focus,
.cid-tuOMsEwIpL span:focus {
  outline: none;
}
.cid-tuOMsEwIpL .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tuOMsEwIpL .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tuOMsEwIpL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tuOMsEwIpL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tuOMsEwIpL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tuOMsEwIpL .mbr-section-title {
  color: #ffffff;
}
.cid-tuOMsEwIpL .mbr-text,
.cid-tuOMsEwIpL .mbr-section-btn {
  text-align: center;
}
.cid-tuOMsEwIpL .item-title {
  text-align: center;
}
.cid-tuOMsEwIpL .item-subtitle {
  text-align: left;
}
.cid-tULfBBDhFV {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tULfBBDhFV img,
.cid-tULfBBDhFV .item-img {
  width: 100%;
}
.cid-tULfBBDhFV .item:focus,
.cid-tULfBBDhFV span:focus {
  outline: none;
}
.cid-tULfBBDhFV .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tULfBBDhFV .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tULfBBDhFV .item {
  padding: 0;
  margin: 0;
}
.cid-tULfBBDhFV .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tULfBBDhFV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tULfBBDhFV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tULfBBDhFV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tULfBBDhFV .mbr-section-title {
  color: #232323;
}
.cid-tULhAZJu8R {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tULhAZJu8R img,
.cid-tULhAZJu8R .item-img {
  width: 100%;
}
.cid-tULhAZJu8R .item:focus,
.cid-tULhAZJu8R span:focus {
  outline: none;
}
.cid-tULhAZJu8R .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tULhAZJu8R .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tULhAZJu8R .item {
  padding: 0;
  margin: 0;
}
.cid-tULhAZJu8R .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tULhAZJu8R .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tULhAZJu8R .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tULhAZJu8R .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tULhAZJu8R .mbr-section-title {
  color: #232323;
}
.cid-tsmWHCQ8sL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsmWHCQ8sL img,
.cid-tsmWHCQ8sL .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tsmWHCQ8sL .item:focus,
.cid-tsmWHCQ8sL span:focus {
  outline: none;
}
.cid-tsmWHCQ8sL .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsmWHCQ8sL .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsmWHCQ8sL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsmWHCQ8sL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsmWHCQ8sL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsmWHCQ8sL .mbr-section-title {
  color: #ffffff;
}
.cid-tsmWHCQ8sL .mbr-text,
.cid-tsmWHCQ8sL .mbr-section-btn {
  text-align: center;
}
.cid-tsmWHCQ8sL .item-title {
  text-align: center;
}
.cid-tsmWHCQ8sL .item-subtitle {
  text-align: left;
}
.cid-tKRwSvpwz0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tKRwSvpwz0 img,
.cid-tKRwSvpwz0 .item-img {
  width: 100%;
}
.cid-tKRwSvpwz0 .item:focus,
.cid-tKRwSvpwz0 span:focus {
  outline: none;
}
.cid-tKRwSvpwz0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tKRwSvpwz0 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tKRwSvpwz0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKRwSvpwz0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tKRwSvpwz0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tKRwSvpwz0 .mbr-section-title {
  color: #ffffff;
}
.cid-tKRwSvpwz0 .mbr-text,
.cid-tKRwSvpwz0 .mbr-section-btn {
  text-align: center;
}
.cid-tKRwSvpwz0 .item-title {
  text-align: center;
}
.cid-tKRwSvpwz0 .item-subtitle {
  text-align: left;
}
.cid-tKRxxZiItr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tKRxxZiItr img,
.cid-tKRxxZiItr .item-img {
  width: 100%;
}
.cid-tKRxxZiItr .item:focus,
.cid-tKRxxZiItr span:focus {
  outline: none;
}
.cid-tKRxxZiItr .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tKRxxZiItr .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tKRxxZiItr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKRxxZiItr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tKRxxZiItr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tKRxxZiItr .mbr-section-title {
  color: #ffffff;
}
.cid-tKRxxZiItr .mbr-text,
.cid-tKRxxZiItr .mbr-section-btn {
  text-align: center;
}
.cid-tKRxxZiItr .item-title {
  text-align: center;
}
.cid-tKRxxZiItr .item-subtitle {
  text-align: left;
}
.cid-tKRCAuzAz4 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tKRCAuzAz4 img,
.cid-tKRCAuzAz4 .item-img {
  width: 100%;
}
.cid-tKRCAuzAz4 .item:focus,
.cid-tKRCAuzAz4 span:focus {
  outline: none;
}
.cid-tKRCAuzAz4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tKRCAuzAz4 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tKRCAuzAz4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKRCAuzAz4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tKRCAuzAz4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tKRCAuzAz4 .mbr-section-title {
  color: #ffffff;
}
.cid-tKRCAuzAz4 .mbr-text,
.cid-tKRCAuzAz4 .mbr-section-btn {
  text-align: center;
}
.cid-tKRCAuzAz4 .item-title {
  text-align: center;
}
.cid-tKRCAuzAz4 .item-subtitle {
  text-align: left;
}
.cid-tVq05o5jhr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tVq05o5jhr img,
.cid-tVq05o5jhr .item-img {
  width: 100%;
}
.cid-tVq05o5jhr .item:focus,
.cid-tVq05o5jhr span:focus {
  outline: none;
}
.cid-tVq05o5jhr .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tVq05o5jhr .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tVq05o5jhr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tVq05o5jhr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tVq05o5jhr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tVq05o5jhr .mbr-section-title {
  color: #ffffff;
}
.cid-tVq05o5jhr .mbr-text,
.cid-tVq05o5jhr .mbr-section-btn {
  text-align: center;
}
.cid-tVq05o5jhr .item-title {
  text-align: center;
}
.cid-tVq05o5jhr .item-subtitle {
  text-align: left;
}
.cid-tKRExVSZCF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tKRExVSZCF img,
.cid-tKRExVSZCF .item-img {
  width: 100%;
}
.cid-tKRExVSZCF .item:focus,
.cid-tKRExVSZCF span:focus {
  outline: none;
}
.cid-tKRExVSZCF .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tKRExVSZCF .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tKRExVSZCF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKRExVSZCF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tKRExVSZCF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tKRExVSZCF .mbr-section-title {
  color: #ffffff;
}
.cid-tKRExVSZCF .mbr-text,
.cid-tKRExVSZCF .mbr-section-btn {
  text-align: center;
}
.cid-tKRExVSZCF .item-title {
  text-align: center;
}
.cid-tKRExVSZCF .item-subtitle {
  text-align: left;
}
.cid-tKRFMSYYos {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tKRFMSYYos img,
.cid-tKRFMSYYos .item-img {
  width: 100%;
}
.cid-tKRFMSYYos .item:focus,
.cid-tKRFMSYYos span:focus {
  outline: none;
}
.cid-tKRFMSYYos .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tKRFMSYYos .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tKRFMSYYos .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKRFMSYYos .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tKRFMSYYos .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tKRFMSYYos .mbr-section-title {
  color: #ffffff;
}
.cid-tKRFMSYYos .mbr-text,
.cid-tKRFMSYYos .mbr-section-btn {
  text-align: center;
}
.cid-tKRFMSYYos .item-title {
  text-align: center;
}
.cid-tKRFMSYYos .item-subtitle {
  text-align: left;
}
.cid-tKRH4tRpA0 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tKRH4tRpA0 img,
.cid-tKRH4tRpA0 .item-img {
  width: 100%;
}
.cid-tKRH4tRpA0 .item:focus,
.cid-tKRH4tRpA0 span:focus {
  outline: none;
}
.cid-tKRH4tRpA0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tKRH4tRpA0 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tKRH4tRpA0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKRH4tRpA0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tKRH4tRpA0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tKRH4tRpA0 .mbr-section-title {
  color: #ffffff;
}
.cid-tKRH4tRpA0 .mbr-text,
.cid-tKRH4tRpA0 .mbr-section-btn {
  text-align: center;
}
.cid-tKRH4tRpA0 .item-title {
  text-align: center;
}
.cid-tKRH4tRpA0 .item-subtitle {
  text-align: left;
}
.cid-tKRIzGthvY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tKRIzGthvY img,
.cid-tKRIzGthvY .item-img {
  width: 100%;
}
.cid-tKRIzGthvY .item:focus,
.cid-tKRIzGthvY span:focus {
  outline: none;
}
.cid-tKRIzGthvY .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tKRIzGthvY .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tKRIzGthvY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tKRIzGthvY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tKRIzGthvY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tKRIzGthvY .mbr-section-title {
  color: #ffffff;
}
.cid-tKRIzGthvY .mbr-text,
.cid-tKRIzGthvY .mbr-section-btn {
  text-align: center;
}
.cid-tKRIzGthvY .item-title {
  text-align: center;
}
.cid-tKRIzGthvY .item-subtitle {
  text-align: left;
}
.cid-tsn03iVdxu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsn03iVdxu img,
.cid-tsn03iVdxu .item-img {
  width: 100%;
}
.cid-tsn03iVdxu .item:focus,
.cid-tsn03iVdxu span:focus {
  outline: none;
}
.cid-tsn03iVdxu .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsn03iVdxu .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsn03iVdxu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsn03iVdxu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsn03iVdxu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsn03iVdxu .mbr-section-title {
  color: #ffffff;
}
.cid-tsn03iVdxu .mbr-text,
.cid-tsn03iVdxu .mbr-section-btn {
  text-align: center;
}
.cid-tsn03iVdxu .item-title {
  text-align: center;
}
.cid-tsn03iVdxu .item-subtitle {
  text-align: left;
}
.cid-tsn3klPhYO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsn3klPhYO img,
.cid-tsn3klPhYO .item-img {
  width: 100%;
}
.cid-tsn3klPhYO .item:focus,
.cid-tsn3klPhYO span:focus {
  outline: none;
}
.cid-tsn3klPhYO .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsn3klPhYO .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsn3klPhYO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsn3klPhYO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsn3klPhYO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsn3klPhYO .mbr-section-title {
  color: #ffffff;
}
.cid-tsn3klPhYO .mbr-text,
.cid-tsn3klPhYO .mbr-section-btn {
  text-align: center;
}
.cid-tsn3klPhYO .item-title {
  text-align: center;
}
.cid-tsn3klPhYO .item-subtitle {
  text-align: left;
}
.cid-tuOTzbnrxf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuOTzbnrxf img,
.cid-tuOTzbnrxf .item-img {
  width: 100%;
}
.cid-tuOTzbnrxf .item:focus,
.cid-tuOTzbnrxf span:focus {
  outline: none;
}
.cid-tuOTzbnrxf .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tuOTzbnrxf .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tuOTzbnrxf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tuOTzbnrxf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tuOTzbnrxf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tuOTzbnrxf .mbr-section-title {
  color: #ffffff;
}
.cid-tuOTzbnrxf .mbr-text,
.cid-tuOTzbnrxf .mbr-section-btn {
  text-align: center;
}
.cid-tuOTzbnrxf .item-title {
  text-align: center;
}
.cid-tuOTzbnrxf .item-subtitle {
  text-align: left;
}
.cid-tw9eUO8TGU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tw9eUO8TGU img,
.cid-tw9eUO8TGU .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tw9eUO8TGU .item:focus,
.cid-tw9eUO8TGU span:focus {
  outline: none;
}
.cid-tw9eUO8TGU .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tw9eUO8TGU .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tw9eUO8TGU .item {
  padding: 0;
  margin: 0;
}
.cid-tw9eUO8TGU .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tw9eUO8TGU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tw9eUO8TGU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tw9eUO8TGU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tw9eUO8TGU .mbr-section-title {
  color: #232323;
}
.cid-tsn4YB3rJK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsn4YB3rJK img,
.cid-tsn4YB3rJK .item-img {
  width: 100%;
}
.cid-tsn4YB3rJK .item:focus,
.cid-tsn4YB3rJK span:focus {
  outline: none;
}
.cid-tsn4YB3rJK .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsn4YB3rJK .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsn4YB3rJK .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsn4YB3rJK .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsn4YB3rJK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsn4YB3rJK .mbr-section-title {
  color: #ffffff;
}
.cid-tsn4YB3rJK .mbr-text,
.cid-tsn4YB3rJK .mbr-section-btn {
  text-align: center;
}
.cid-tsn4YB3rJK .item-title {
  text-align: center;
}
.cid-tsn4YB3rJK .item-subtitle {
  text-align: left;
}
.cid-tsn6NeDRy7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsn6NeDRy7 img,
.cid-tsn6NeDRy7 .item-img {
  width: 100%;
}
.cid-tsn6NeDRy7 .item:focus,
.cid-tsn6NeDRy7 span:focus {
  outline: none;
}
.cid-tsn6NeDRy7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsn6NeDRy7 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsn6NeDRy7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsn6NeDRy7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsn6NeDRy7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsn6NeDRy7 .mbr-section-title {
  color: #ffffff;
}
.cid-tsn6NeDRy7 .mbr-text,
.cid-tsn6NeDRy7 .mbr-section-btn {
  text-align: center;
}
.cid-tsn6NeDRy7 .item-title {
  text-align: center;
}
.cid-tsn6NeDRy7 .item-subtitle {
  text-align: left;
}
.cid-tsnaa5bLOu {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsnaa5bLOu img,
.cid-tsnaa5bLOu .item-img {
  width: 100%;
}
.cid-tsnaa5bLOu .item:focus,
.cid-tsnaa5bLOu span:focus {
  outline: none;
}
.cid-tsnaa5bLOu .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsnaa5bLOu .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsnaa5bLOu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsnaa5bLOu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsnaa5bLOu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsnaa5bLOu .mbr-section-title {
  color: #ffffff;
}
.cid-tsnaa5bLOu .mbr-text,
.cid-tsnaa5bLOu .mbr-section-btn {
  text-align: center;
}
.cid-tsnaa5bLOu .item-title {
  text-align: center;
}
.cid-tsnaa5bLOu .item-subtitle {
  text-align: left;
}
.cid-tw9lrQ7ztV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tw9lrQ7ztV img,
.cid-tw9lrQ7ztV .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tw9lrQ7ztV .item:focus,
.cid-tw9lrQ7ztV span:focus {
  outline: none;
}
.cid-tw9lrQ7ztV .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tw9lrQ7ztV .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tw9lrQ7ztV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tw9lrQ7ztV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tw9lrQ7ztV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tw9lrQ7ztV .mbr-section-title {
  color: #ffffff;
}
.cid-tw9lrQ7ztV .mbr-text,
.cid-tw9lrQ7ztV .mbr-section-btn {
  text-align: center;
}
.cid-tw9lrQ7ztV .item-title {
  text-align: center;
}
.cid-tw9lrQ7ztV .item-subtitle {
  text-align: left;
}
.cid-tsndrEQw2f {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsndrEQw2f img,
.cid-tsndrEQw2f .item-img {
  width: 100%;
}
.cid-tsndrEQw2f .item:focus,
.cid-tsndrEQw2f span:focus {
  outline: none;
}
.cid-tsndrEQw2f .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsndrEQw2f .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsndrEQw2f .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsndrEQw2f .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsndrEQw2f .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsndrEQw2f .mbr-section-title {
  color: #ffffff;
}
.cid-tsndrEQw2f .mbr-text,
.cid-tsndrEQw2f .mbr-section-btn {
  text-align: center;
}
.cid-tsndrEQw2f .item-title {
  text-align: center;
}
.cid-tsndrEQw2f .item-subtitle {
  text-align: left;
}
.cid-tsngsmkTfq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsngsmkTfq img,
.cid-tsngsmkTfq .item-img {
  width: 100%;
}
.cid-tsngsmkTfq .item:focus,
.cid-tsngsmkTfq span:focus {
  outline: none;
}
.cid-tsngsmkTfq .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsngsmkTfq .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsngsmkTfq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsngsmkTfq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsngsmkTfq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsngsmkTfq .mbr-section-title {
  color: #ffffff;
}
.cid-tsngsmkTfq .mbr-text,
.cid-tsngsmkTfq .mbr-section-btn {
  text-align: center;
}
.cid-tsngsmkTfq .item-title {
  text-align: center;
}
.cid-tsngsmkTfq .item-subtitle {
  text-align: left;
}
.cid-tsnjj7QQtz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsnjj7QQtz img,
.cid-tsnjj7QQtz .item-img {
  width: 100%;
}
.cid-tsnjj7QQtz .item:focus,
.cid-tsnjj7QQtz span:focus {
  outline: none;
}
.cid-tsnjj7QQtz .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsnjj7QQtz .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsnjj7QQtz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsnjj7QQtz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsnjj7QQtz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsnjj7QQtz .mbr-section-title {
  color: #ffffff;
}
.cid-tsnjj7QQtz .mbr-text,
.cid-tsnjj7QQtz .mbr-section-btn {
  text-align: center;
}
.cid-tsnjj7QQtz .item-title {
  text-align: center;
}
.cid-tsnjj7QQtz .item-subtitle {
  text-align: left;
}
.cid-tsnluKZvvV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsnluKZvvV img,
.cid-tsnluKZvvV .item-img {
  width: 100%;
}
.cid-tsnluKZvvV .item:focus,
.cid-tsnluKZvvV span:focus {
  outline: none;
}
.cid-tsnluKZvvV .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsnluKZvvV .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsnluKZvvV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsnluKZvvV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsnluKZvvV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsnluKZvvV .mbr-section-title {
  color: #ffffff;
}
.cid-tsnluKZvvV .mbr-text,
.cid-tsnluKZvvV .mbr-section-btn {
  text-align: center;
}
.cid-tsnluKZvvV .item-title {
  text-align: center;
}
.cid-tsnluKZvvV .item-subtitle {
  text-align: left;
}
.cid-tuOYImj7VU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuOYImj7VU img,
.cid-tuOYImj7VU .item-img {
  width: 100%;
}
.cid-tuOYImj7VU .item:focus,
.cid-tuOYImj7VU span:focus {
  outline: none;
}
.cid-tuOYImj7VU .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tuOYImj7VU .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tuOYImj7VU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tuOYImj7VU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tuOYImj7VU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tuOYImj7VU .mbr-section-title {
  color: #ffffff;
}
.cid-tuOYImj7VU .mbr-text,
.cid-tuOYImj7VU .mbr-section-btn {
  text-align: center;
}
.cid-tuOYImj7VU .item-title {
  text-align: center;
}
.cid-tuOYImj7VU .item-subtitle {
  text-align: left;
}
.cid-tsnsvjExmv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsnsvjExmv img,
.cid-tsnsvjExmv .item-img {
  width: 100%;
}
.cid-tsnsvjExmv .item:focus,
.cid-tsnsvjExmv span:focus {
  outline: none;
}
.cid-tsnsvjExmv .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsnsvjExmv .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsnsvjExmv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsnsvjExmv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsnsvjExmv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsnsvjExmv .mbr-section-title {
  color: #ffffff;
}
.cid-tsnsvjExmv .mbr-text,
.cid-tsnsvjExmv .mbr-section-btn {
  text-align: center;
}
.cid-tsnsvjExmv .item-title {
  text-align: center;
}
.cid-tsnsvjExmv .item-subtitle {
  text-align: left;
}
.cid-tw9w8bM7y7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tw9w8bM7y7 img,
.cid-tw9w8bM7y7 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tw9w8bM7y7 .item:focus,
.cid-tw9w8bM7y7 span:focus {
  outline: none;
}
.cid-tw9w8bM7y7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tw9w8bM7y7 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tw9w8bM7y7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tw9w8bM7y7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tw9w8bM7y7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tw9w8bM7y7 .mbr-section-title {
  color: #ffffff;
}
.cid-tw9w8bM7y7 .mbr-text,
.cid-tw9w8bM7y7 .mbr-section-btn {
  text-align: center;
}
.cid-tw9w8bM7y7 .item-title {
  text-align: center;
}
.cid-tw9w8bM7y7 .item-subtitle {
  text-align: left;
}
.cid-tsEvbuO5v7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsEvbuO5v7 img,
.cid-tsEvbuO5v7 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tsEvbuO5v7 .item:focus,
.cid-tsEvbuO5v7 span:focus {
  outline: none;
}
.cid-tsEvbuO5v7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsEvbuO5v7 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsEvbuO5v7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsEvbuO5v7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsEvbuO5v7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsEvbuO5v7 .mbr-section-title {
  color: #ffffff;
}
.cid-tsEvbuO5v7 .mbr-text,
.cid-tsEvbuO5v7 .mbr-section-btn {
  text-align: center;
}
.cid-tsEvbuO5v7 .item-title {
  text-align: center;
}
.cid-tsEvbuO5v7 .item-subtitle {
  text-align: left;
}
.cid-tw9mPLfhs8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tw9mPLfhs8 img,
.cid-tw9mPLfhs8 .item-img {
  width: 100%;
}
.cid-tw9mPLfhs8 .item:focus,
.cid-tw9mPLfhs8 span:focus {
  outline: none;
}
.cid-tw9mPLfhs8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tw9mPLfhs8 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tw9mPLfhs8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tw9mPLfhs8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tw9mPLfhs8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tw9mPLfhs8 .mbr-section-title {
  color: #ffffff;
}
.cid-tw9mPLfhs8 .mbr-text,
.cid-tw9mPLfhs8 .mbr-section-btn {
  text-align: center;
}
.cid-tw9mPLfhs8 .item-title {
  text-align: center;
}
.cid-tw9mPLfhs8 .item-subtitle {
  text-align: left;
}
.cid-tsECJoF9Tx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsECJoF9Tx img,
.cid-tsECJoF9Tx .item-img {
  width: 100%;
}
.cid-tsECJoF9Tx .item:focus,
.cid-tsECJoF9Tx span:focus {
  outline: none;
}
.cid-tsECJoF9Tx .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsECJoF9Tx .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsECJoF9Tx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsECJoF9Tx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsECJoF9Tx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsECJoF9Tx .mbr-section-title {
  color: #ffffff;
}
.cid-tsECJoF9Tx .mbr-text,
.cid-tsECJoF9Tx .mbr-section-btn {
  text-align: center;
}
.cid-tsECJoF9Tx .item-title {
  text-align: center;
}
.cid-tsECJoF9Tx .item-subtitle {
  text-align: left;
}
.cid-tsJr3XB3Wl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsJr3XB3Wl img,
.cid-tsJr3XB3Wl .item-img {
  width: 100%;
}
.cid-tsJr3XB3Wl .item:focus,
.cid-tsJr3XB3Wl span:focus {
  outline: none;
}
.cid-tsJr3XB3Wl .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsJr3XB3Wl .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsJr3XB3Wl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsJr3XB3Wl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsJr3XB3Wl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsJr3XB3Wl .mbr-section-title {
  color: #ffffff;
}
.cid-tsJr3XB3Wl .mbr-text,
.cid-tsJr3XB3Wl .mbr-section-btn {
  text-align: center;
}
.cid-tsJr3XB3Wl .item-title {
  text-align: center;
}
.cid-tsJr3XB3Wl .item-subtitle {
  text-align: left;
}
.cid-tw9GD18Rv4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tw9GD18Rv4 img,
.cid-tw9GD18Rv4 .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tw9GD18Rv4 .item:focus,
.cid-tw9GD18Rv4 span:focus {
  outline: none;
}
.cid-tw9GD18Rv4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tw9GD18Rv4 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tw9GD18Rv4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tw9GD18Rv4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tw9GD18Rv4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tw9GD18Rv4 .mbr-section-title {
  color: #ffffff;
}
.cid-tw9GD18Rv4 .mbr-text,
.cid-tw9GD18Rv4 .mbr-section-btn {
  text-align: center;
}
.cid-tw9GD18Rv4 .item-title {
  text-align: center;
}
.cid-tw9GD18Rv4 .item-subtitle {
  text-align: left;
}
.cid-tuP5qzIzZq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuP5qzIzZq img,
.cid-tuP5qzIzZq .item-img {
  width: 100%;
}
.cid-tuP5qzIzZq .item:focus,
.cid-tuP5qzIzZq span:focus {
  outline: none;
}
.cid-tuP5qzIzZq .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tuP5qzIzZq .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tuP5qzIzZq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tuP5qzIzZq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tuP5qzIzZq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tuP5qzIzZq .mbr-section-title {
  color: #ffffff;
}
.cid-tuP5qzIzZq .mbr-text,
.cid-tuP5qzIzZq .mbr-section-btn {
  text-align: center;
}
.cid-tuP5qzIzZq .item-title {
  text-align: center;
}
.cid-tuP5qzIzZq .item-subtitle {
  text-align: left;
}
.cid-tsJyEm7Yth {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tsJyEm7Yth img,
.cid-tsJyEm7Yth .item-img {
  width: 100%;
}
.cid-tsJyEm7Yth .item:focus,
.cid-tsJyEm7Yth span:focus {
  outline: none;
}
.cid-tsJyEm7Yth .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsJyEm7Yth .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsJyEm7Yth .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsJyEm7Yth .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsJyEm7Yth .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsJyEm7Yth .mbr-section-title {
  color: #ffffff;
}
.cid-tsJyEm7Yth .mbr-text,
.cid-tsJyEm7Yth .mbr-section-btn {
  text-align: center;
}
.cid-tsJyEm7Yth .item-title {
  text-align: center;
}
.cid-tsJyEm7Yth .item-subtitle {
  text-align: left;
}
.cid-tsJDEChCNd {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tsJDEChCNd img,
.cid-tsJDEChCNd .item-img {
  width: 100%;
}
.cid-tsJDEChCNd .item:focus,
.cid-tsJDEChCNd span:focus {
  outline: none;
}
.cid-tsJDEChCNd .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tsJDEChCNd .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tsJDEChCNd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tsJDEChCNd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tsJDEChCNd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tsJDEChCNd .mbr-section-title {
  color: #ffffff;
}
.cid-tsJDEChCNd .mbr-text,
.cid-tsJDEChCNd .mbr-section-btn {
  text-align: center;
}
.cid-tsJDEChCNd .item-title {
  text-align: center;
}
.cid-tsJDEChCNd .item-subtitle {
  text-align: left;
}
.cid-tw9zZxCSRw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tw9zZxCSRw img,
.cid-tw9zZxCSRw .item-img {
  width: 100%;
}
.cid-tw9zZxCSRw .item:focus,
.cid-tw9zZxCSRw span:focus {
  outline: none;
}
.cid-tw9zZxCSRw .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tw9zZxCSRw .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tw9zZxCSRw .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tw9zZxCSRw .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tw9zZxCSRw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tw9zZxCSRw .mbr-section-title {
  color: #ffffff;
}
.cid-tw9zZxCSRw .mbr-text,
.cid-tw9zZxCSRw .mbr-section-btn {
  text-align: center;
}
.cid-tw9zZxCSRw .item-title {
  text-align: center;
}
.cid-tw9zZxCSRw .item-subtitle {
  text-align: left;
}
.cid-tuPdpToIpz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuPdpToIpz img,
.cid-tuPdpToIpz .item-img {
  width: 100%;
}
.cid-tuPdpToIpz .item:focus,
.cid-tuPdpToIpz span:focus {
  outline: none;
}
.cid-tuPdpToIpz .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tuPdpToIpz .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tuPdpToIpz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tuPdpToIpz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tuPdpToIpz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tuPdpToIpz .mbr-section-title {
  color: #ffffff;
}
.cid-tuPdpToIpz .mbr-text,
.cid-tuPdpToIpz .mbr-section-btn {
  text-align: center;
}
.cid-tuPdpToIpz .item-title {
  text-align: center;
}
.cid-tuPdpToIpz .item-subtitle {
  text-align: left;
}
.cid-tuPiuf4Ug9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuPiuf4Ug9 img,
.cid-tuPiuf4Ug9 .item-img {
  width: 100%;
}
.cid-tuPiuf4Ug9 .item:focus,
.cid-tuPiuf4Ug9 span:focus {
  outline: none;
}
.cid-tuPiuf4Ug9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tuPiuf4Ug9 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tuPiuf4Ug9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tuPiuf4Ug9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tuPiuf4Ug9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tuPiuf4Ug9 .mbr-section-title {
  color: #ffffff;
}
.cid-tuPiuf4Ug9 .mbr-text,
.cid-tuPiuf4Ug9 .mbr-section-btn {
  text-align: center;
}
.cid-tuPiuf4Ug9 .item-title {
  text-align: center;
}
.cid-tuPiuf4Ug9 .item-subtitle {
  text-align: left;
}
.cid-tw9D5t3enx {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tw9D5t3enx img,
.cid-tw9D5t3enx .item-img {
  width: 100%;
}
.cid-tw9D5t3enx .item:focus,
.cid-tw9D5t3enx span:focus {
  outline: none;
}
.cid-tw9D5t3enx .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tw9D5t3enx .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tw9D5t3enx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tw9D5t3enx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tw9D5t3enx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tw9D5t3enx .mbr-section-title {
  color: #ffffff;
}
.cid-tw9D5t3enx .mbr-text,
.cid-tw9D5t3enx .mbr-section-btn {
  text-align: center;
}
.cid-tw9D5t3enx .item-title {
  text-align: center;
}
.cid-tw9D5t3enx .item-subtitle {
  text-align: left;
}
.cid-tuPvfHsTPe {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tuPvfHsTPe img,
.cid-tuPvfHsTPe .item-img {
  width: 100%;
}
.cid-tuPvfHsTPe .item:focus,
.cid-tuPvfHsTPe span:focus {
  outline: none;
}
.cid-tuPvfHsTPe .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tuPvfHsTPe .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tuPvfHsTPe .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tuPvfHsTPe .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tuPvfHsTPe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tuPvfHsTPe .mbr-section-title {
  color: #ffffff;
}
.cid-tuPvfHsTPe .mbr-text,
.cid-tuPvfHsTPe .mbr-section-btn {
  text-align: center;
}
.cid-tuPvfHsTPe .item-title {
  text-align: center;
}
.cid-tuPvfHsTPe .item-subtitle {
  text-align: left;
}
.cid-tw9H4tJMPW {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tw9H4tJMPW img,
.cid-tw9H4tJMPW .item-img {
  width: 100%;
}
.cid-tw9H4tJMPW .item:focus,
.cid-tw9H4tJMPW span:focus {
  outline: none;
}
.cid-tw9H4tJMPW .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tw9H4tJMPW .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tw9H4tJMPW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tw9H4tJMPW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tw9H4tJMPW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tw9H4tJMPW .mbr-section-title {
  color: #ffffff;
}
.cid-tw9H4tJMPW .mbr-text,
.cid-tw9H4tJMPW .mbr-section-btn {
  text-align: center;
}
.cid-tw9H4tJMPW .item-title {
  text-align: center;
}
.cid-tw9H4tJMPW .item-subtitle {
  text-align: left;
}
.cid-tHPPvYVKuu {
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tHPPvYVKuu img,
.cid-tHPPvYVKuu .item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tHPPvYVKuu .item:focus,
.cid-tHPPvYVKuu span:focus {
  outline: none;
}
.cid-tHPPvYVKuu .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tHPPvYVKuu .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHPPvYVKuu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHPPvYVKuu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tHPPvYVKuu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHPPvYVKuu .mbr-section-title {
  color: #ffffff;
}
.cid-tHPPvYVKuu .mbr-text,
.cid-tHPPvYVKuu .mbr-section-btn {
  text-align: center;
}
.cid-tHPPvYVKuu .item-title {
  text-align: center;
}
.cid-tHPPvYVKuu .item-subtitle {
  text-align: left;
}
.cid-s48P1Icc8J {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-s48P1Icc8J .row-links {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .social-row {
  width: 100%;
  justify-content: center;
}
.cid-s48P1Icc8J .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-s48P1Icc8J .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-s48P1Icc8J .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-s48P1Icc8J .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-s48P1Icc8J .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-s48P1Icc8J .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s48P1Icc8J .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-s48P1Icc8J .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s48P1Icc8J .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s48P1Icc8J .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-s48P1Icc8J .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tUKTdzi4G7 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tUKTdzi4G7 img,
.cid-tUKTdzi4G7 .item-img {
  width: 100%;
}
.cid-tUKTdzi4G7 .item:focus,
.cid-tUKTdzi4G7 span:focus {
  outline: none;
}
.cid-tUKTdzi4G7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tUKTdzi4G7 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tUKTdzi4G7 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tUKTdzi4G7 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tUKTdzi4G7 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tUKTdzi4G7 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tUKTdzi4G7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tUKTdzi4G7 .mbr-section-title {
  color: #ffffff;
}
.cid-tUKTdzi4G7 .mbr-text,
.cid-tUKTdzi4G7 .mbr-section-btn {
  text-align: center;
}
.cid-tUKTdzi4G7 .item-title {
  text-align: center;
}
.cid-tUKTdzi4G7 .item-subtitle {
  text-align: left;
}
.cid-tUKTRwzhMg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-tUKTRwzhMg img,
.cid-tUKTRwzhMg .item-img {
  width: 100%;
}
.cid-tUKTRwzhMg .item:focus,
.cid-tUKTRwzhMg span:focus {
  outline: none;
}
.cid-tUKTRwzhMg .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tUKTRwzhMg .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tUKTRwzhMg .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tUKTRwzhMg .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tUKTRwzhMg .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tUKTRwzhMg .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tUKTRwzhMg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tUKTRwzhMg .mbr-section-title {
  color: #ffffff;
}
.cid-tUKTRwzhMg .mbr-text,
.cid-tUKTRwzhMg .mbr-section-btn {
  text-align: center;
}
.cid-tUKTRwzhMg .item-title {
  text-align: center;
}
.cid-tUKTRwzhMg .item-subtitle {
  text-align: left;
}
.cid-toeOk3QDXn {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-toeOk3QDXn img,
.cid-toeOk3QDXn .item-img {
  width: 100%;
}
.cid-toeOk3QDXn .item:focus,
.cid-toeOk3QDXn span:focus {
  outline: none;
}
.cid-toeOk3QDXn .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-toeOk3QDXn .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-toeOk3QDXn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-toeOk3QDXn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-toeOk3QDXn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-toeOk3QDXn .mbr-section-title {
  color: #ffffff;
}
.cid-toeOk3QDXn .mbr-text,
.cid-toeOk3QDXn .mbr-section-btn {
  text-align: center;
}
.cid-toeOk3QDXn .item-title {
  text-align: center;
}
.cid-toeOk3QDXn .item-subtitle {
  text-align: left;
}
.cid-toeQ9LoP3y {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-toeQ9LoP3y img,
.cid-toeQ9LoP3y .item-img {
  width: 100%;
}
.cid-toeQ9LoP3y .item:focus,
.cid-toeQ9LoP3y span:focus {
  outline: none;
}
.cid-toeQ9LoP3y .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-toeQ9LoP3y .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-toeQ9LoP3y .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-toeQ9LoP3y .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-toeQ9LoP3y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-toeQ9LoP3y .mbr-section-title {
  color: #ffffff;
}
.cid-toeQ9LoP3y .mbr-text,
.cid-toeQ9LoP3y .mbr-section-btn {
  text-align: center;
}
.cid-toeQ9LoP3y .item-title {
  text-align: center;
}
.cid-toeQ9LoP3y .item-subtitle {
  text-align: left;
}
.cid-toqxsBuQHw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-toqxsBuQHw img,
.cid-toqxsBuQHw .item-img {
  width: 100%;
}
.cid-toqxsBuQHw .item:focus,
.cid-toqxsBuQHw span:focus {
  outline: none;
}
.cid-toqxsBuQHw .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-toqxsBuQHw .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-toqxsBuQHw .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-toqxsBuQHw .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-toqxsBuQHw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-toqxsBuQHw .mbr-section-title {
  color: #ffffff;
}
.cid-toqxsBuQHw .mbr-text,
.cid-toqxsBuQHw .mbr-section-btn {
  text-align: center;
}
.cid-toqxsBuQHw .item-title {
  text-align: center;
}
.cid-toqxsBuQHw .item-subtitle {
  text-align: left;
}
.cid-toqAB7tWV6 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-toqAB7tWV6 img,
.cid-toqAB7tWV6 .item-img {
  width: 100%;
}
.cid-toqAB7tWV6 .item:focus,
.cid-toqAB7tWV6 span:focus {
  outline: none;
}
.cid-toqAB7tWV6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-toqAB7tWV6 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-toqAB7tWV6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-toqAB7tWV6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-toqAB7tWV6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-toqAB7tWV6 .mbr-section-title {
  color: #ffffff;
}
.cid-toqAB7tWV6 .mbr-text,
.cid-toqAB7tWV6 .mbr-section-btn {
  text-align: center;
}
.cid-toqAB7tWV6 .item-title {
  text-align: center;
}
.cid-toqAB7tWV6 .item-subtitle {
  text-align: left;
}
.cid-tp36gDSTyt {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tp36gDSTyt img,
.cid-tp36gDSTyt .item-img {
  width: 100%;
}
.cid-tp36gDSTyt .item:focus,
.cid-tp36gDSTyt span:focus {
  outline: none;
}
.cid-tp36gDSTyt .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tp36gDSTyt .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tp36gDSTyt .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tp36gDSTyt .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tp36gDSTyt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tp36gDSTyt .mbr-section-title {
  color: #ffffff;
}
.cid-tp36gDSTyt .mbr-text,
.cid-tp36gDSTyt .mbr-section-btn {
  text-align: center;
}
.cid-tp36gDSTyt .item-title {
  text-align: center;
}
.cid-tp36gDSTyt .item-subtitle {
  text-align: left;
}
.cid-tp37zQZCJ0 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tp37zQZCJ0 img,
.cid-tp37zQZCJ0 .item-img {
  width: 100%;
}
.cid-tp37zQZCJ0 .item:focus,
.cid-tp37zQZCJ0 span:focus {
  outline: none;
}
.cid-tp37zQZCJ0 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tp37zQZCJ0 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tp37zQZCJ0 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tp37zQZCJ0 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tp37zQZCJ0 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tp37zQZCJ0 .mbr-section-title {
  color: #ffffff;
}
.cid-tp37zQZCJ0 .mbr-text,
.cid-tp37zQZCJ0 .mbr-section-btn {
  text-align: center;
}
.cid-tp37zQZCJ0 .item-title {
  text-align: center;
}
.cid-tp37zQZCJ0 .item-subtitle {
  text-align: left;
}
.cid-tqWRMhY41t {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqWRMhY41t img,
.cid-tqWRMhY41t .item-img {
  width: 100%;
}
.cid-tqWRMhY41t .item:focus,
.cid-tqWRMhY41t span:focus {
  outline: none;
}
.cid-tqWRMhY41t .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tqWRMhY41t .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tqWRMhY41t .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqWRMhY41t .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tqWRMhY41t .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqWRMhY41t .mbr-section-title {
  color: #ffffff;
}
.cid-tqWRMhY41t .mbr-text,
.cid-tqWRMhY41t .mbr-section-btn {
  text-align: center;
}
.cid-tqWRMhY41t .item-title {
  text-align: center;
}
.cid-tqWRMhY41t .item-subtitle {
  text-align: left;
}
.cid-tqWV97rpXQ {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqWV97rpXQ img,
.cid-tqWV97rpXQ .item-img {
  width: 100%;
}
.cid-tqWV97rpXQ .item:focus,
.cid-tqWV97rpXQ span:focus {
  outline: none;
}
.cid-tqWV97rpXQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tqWV97rpXQ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tqWV97rpXQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqWV97rpXQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tqWV97rpXQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqWV97rpXQ .mbr-section-title {
  color: #ffffff;
}
.cid-tqWV97rpXQ .mbr-text,
.cid-tqWV97rpXQ .mbr-section-btn {
  text-align: center;
}
.cid-tqWV97rpXQ .item-title {
  text-align: center;
}
.cid-tqWV97rpXQ .item-subtitle {
  text-align: left;
}
.cid-tqWVai5fIK {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqWVai5fIK img,
.cid-tqWVai5fIK .item-img {
  width: 100%;
}
.cid-tqWVai5fIK .item:focus,
.cid-tqWVai5fIK span:focus {
  outline: none;
}
.cid-tqWVai5fIK .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tqWVai5fIK .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tqWVai5fIK .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqWVai5fIK .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tqWVai5fIK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqWVai5fIK .mbr-section-title {
  color: #ffffff;
}
.cid-tqWVai5fIK .mbr-text,
.cid-tqWVai5fIK .mbr-section-btn {
  text-align: center;
}
.cid-tqWVai5fIK .item-title {
  text-align: center;
}
.cid-tqWVai5fIK .item-subtitle {
  text-align: left;
}
.cid-tqWXfAGblt {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tqWXfAGblt img,
.cid-tqWXfAGblt .item-img {
  width: 100%;
}
.cid-tqWXfAGblt .item:focus,
.cid-tqWXfAGblt span:focus {
  outline: none;
}
.cid-tqWXfAGblt .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tqWXfAGblt .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tqWXfAGblt .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tqWXfAGblt .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tqWXfAGblt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tqWXfAGblt .mbr-section-title {
  color: #ffffff;
}
.cid-tqWXfAGblt .mbr-text,
.cid-tqWXfAGblt .mbr-section-btn {
  text-align: center;
}
.cid-tqWXfAGblt .item-title {
  text-align: center;
}
.cid-tqWXfAGblt .item-subtitle {
  text-align: left;
}
.cid-tr9byKHPmn {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tr9byKHPmn img,
.cid-tr9byKHPmn .item-img {
  width: 100%;
}
.cid-tr9byKHPmn .item:focus,
.cid-tr9byKHPmn span:focus {
  outline: none;
}
.cid-tr9byKHPmn .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tr9byKHPmn .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tr9byKHPmn .item {
  padding: 0;
  margin: 0;
}
.cid-tr9byKHPmn .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tr9byKHPmn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tr9byKHPmn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tr9byKHPmn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tr9byKHPmn .mbr-section-title {
  color: #ffffff;
}
.cid-tr9byKHPmn .mbr-text,
.cid-tr9byKHPmn .mbr-section-btn {
  text-align: center;
}
.cid-tr9byKHPmn .item-title {
  text-align: center;
}
.cid-tr9byKHPmn .item-subtitle {
  text-align: left;
}
.cid-tr9MFlFYMN {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tr9MFlFYMN img,
.cid-tr9MFlFYMN .item-img {
  width: 100%;
}
.cid-tr9MFlFYMN .item:focus,
.cid-tr9MFlFYMN span:focus {
  outline: none;
}
.cid-tr9MFlFYMN .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tr9MFlFYMN .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tr9MFlFYMN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tr9MFlFYMN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tr9MFlFYMN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tr9MFlFYMN .mbr-section-title {
  color: #ffffff;
}
.cid-tr9MFlFYMN .mbr-text,
.cid-tr9MFlFYMN .mbr-section-btn {
  text-align: center;
}
.cid-tr9MFlFYMN .item-title {
  text-align: center;
}
.cid-tr9MFlFYMN .item-subtitle {
  text-align: left;
}
.cid-ttk1mHrpRo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttk1mHrpRo img,
.cid-ttk1mHrpRo .item-img {
  width: 100%;
}
.cid-ttk1mHrpRo .item:focus,
.cid-ttk1mHrpRo span:focus {
  outline: none;
}
.cid-ttk1mHrpRo .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-ttk1mHrpRo .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ttk1mHrpRo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ttk1mHrpRo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ttk1mHrpRo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ttk1mHrpRo .mbr-section-title {
  color: #ffffff;
}
.cid-ttk1mHrpRo .mbr-text,
.cid-ttk1mHrpRo .mbr-section-btn {
  text-align: center;
}
.cid-ttk1mHrpRo .item-title {
  text-align: center;
}
.cid-ttk1mHrpRo .item-subtitle {
  text-align: left;
}
.cid-ttk5lYdeKv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttk5lYdeKv img,
.cid-ttk5lYdeKv .item-img {
  width: 100%;
}
.cid-ttk5lYdeKv .item:focus,
.cid-ttk5lYdeKv span:focus {
  outline: none;
}
.cid-ttk5lYdeKv .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-ttk5lYdeKv .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ttk5lYdeKv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ttk5lYdeKv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ttk5lYdeKv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ttk5lYdeKv .mbr-section-title {
  color: #ffffff;
}
.cid-ttk5lYdeKv .mbr-text,
.cid-ttk5lYdeKv .mbr-section-btn {
  text-align: center;
}
.cid-ttk5lYdeKv .item-title {
  text-align: center;
}
.cid-ttk5lYdeKv .item-subtitle {
  text-align: left;
}
.cid-ttCpa66uzv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ttCpa66uzv img,
.cid-ttCpa66uzv .item-img {
  width: 100%;
}
.cid-ttCpa66uzv .item:focus,
.cid-ttCpa66uzv span:focus {
  outline: none;
}
.cid-ttCpa66uzv .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-ttCpa66uzv .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ttCpa66uzv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ttCpa66uzv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ttCpa66uzv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ttCpa66uzv .mbr-section-title {
  color: #232323;
}
.cid-tVpTvqvWSa {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tVpTvqvWSa img,
.cid-tVpTvqvWSa .item-img {
  width: 100%;
}
.cid-tVpTvqvWSa .item:focus,
.cid-tVpTvqvWSa span:focus {
  outline: none;
}
.cid-tVpTvqvWSa .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-tVpTvqvWSa .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tVpTvqvWSa .item {
  padding: 0;
  margin: 0;
}
.cid-tVpTvqvWSa .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tVpTvqvWSa .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tVpTvqvWSa .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tVpTvqvWSa .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tVpTvqvWSa .mbr-section-title {
  color: #232323;
}
.cid-tVpXoikNB8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tVpXoikNB8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVpXoikNB8 .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-tVpXoikNB8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tVpXoikNB8 .row {
  flex-direction: row-reverse;
}
.cid-tVpXoikNB8 img {
  width: 100%;
}
