body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6592e6;
  border-bottom-color: #6592e6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-utDZe3kS5N {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-utDZe3kS5N .mbr-fallback-image.disabled {
  display: none;
}
.cid-utDZe3kS5N .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-utDZe3kS5N .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utDZe3kS5N .row {
  flex-direction: row-reverse;
}
.cid-utDZe3kS5N img {
  width: 100%;
}
.cid-utDZe3kS5N .mbr-description {
  color: #4479d9;
  text-align: center;
}
.cid-utDUVHr0we {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-utDUVHr0we .mbr-fallback-image.disabled {
  display: none;
}
.cid-utDUVHr0we .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-utDUVHr0we .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utDUVHr0we .row {
  flex-direction: row-reverse;
}
.cid-utDUVHr0we img {
  width: 100%;
}
.cid-uXPpTL9Rqz {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uXPpTL9Rqz img,
.cid-uXPpTL9Rqz .item-img {
  width: 100%;
}
.cid-uXPpTL9Rqz .item:focus,
.cid-uXPpTL9Rqz span:focus {
  outline: none;
}
.cid-uXPpTL9Rqz .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uXPpTL9Rqz .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uXPpTL9Rqz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uXPpTL9Rqz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uXPpTL9Rqz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uXPpTL9Rqz .mbr-section-title {
  color: #232323;
}
.cid-uXeH5jVQn2 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uXeH5jVQn2 img,
.cid-uXeH5jVQn2 .item-img {
  width: 100%;
}
.cid-uXeH5jVQn2 .item:focus,
.cid-uXeH5jVQn2 span:focus {
  outline: none;
}
.cid-uXeH5jVQn2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uXeH5jVQn2 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uXeH5jVQn2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uXeH5jVQn2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uXeH5jVQn2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uXeH5jVQn2 .mbr-section-title {
  color: #232323;
}
.cid-uX3q2CYOzQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uX3q2CYOzQ img,
.cid-uX3q2CYOzQ .item-img {
  width: 100%;
}
.cid-uX3q2CYOzQ .item:focus,
.cid-uX3q2CYOzQ span:focus {
  outline: none;
}
.cid-uX3q2CYOzQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uX3q2CYOzQ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uX3q2CYOzQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uX3q2CYOzQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uX3q2CYOzQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uX3q2CYOzQ .mbr-section-title {
  color: #232323;
}
.cid-uW0HUUrY0Q {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uW0HUUrY0Q img,
.cid-uW0HUUrY0Q .item-img {
  width: 100%;
}
.cid-uW0HUUrY0Q .item:focus,
.cid-uW0HUUrY0Q span:focus {
  outline: none;
}
.cid-uW0HUUrY0Q .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uW0HUUrY0Q .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uW0HUUrY0Q .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uW0HUUrY0Q .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uW0HUUrY0Q .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uW0HUUrY0Q .mbr-section-title {
  color: #232323;
}
.cid-uVOzZn2q0l {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uVOzZn2q0l img,
.cid-uVOzZn2q0l .item-img {
  width: 100%;
}
.cid-uVOzZn2q0l .item:focus,
.cid-uVOzZn2q0l span:focus {
  outline: none;
}
.cid-uVOzZn2q0l .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uVOzZn2q0l .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uVOzZn2q0l .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVOzZn2q0l .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uVOzZn2q0l .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uVOzZn2q0l .mbr-section-title {
  color: #232323;
}
.cid-uVBe0zP4A3 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uVBe0zP4A3 img,
.cid-uVBe0zP4A3 .item-img {
  width: 100%;
}
.cid-uVBe0zP4A3 .item:focus,
.cid-uVBe0zP4A3 span:focus {
  outline: none;
}
.cid-uVBe0zP4A3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uVBe0zP4A3 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uVBe0zP4A3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uVBe0zP4A3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uVBe0zP4A3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uVBe0zP4A3 .mbr-section-title {
  color: #232323;
}
.cid-uV8zM9zhmq {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uV8zM9zhmq img,
.cid-uV8zM9zhmq .item-img {
  width: 100%;
}
.cid-uV8zM9zhmq .item:focus,
.cid-uV8zM9zhmq span:focus {
  outline: none;
}
.cid-uV8zM9zhmq .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uV8zM9zhmq .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uV8zM9zhmq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uV8zM9zhmq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uV8zM9zhmq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uV8zM9zhmq .mbr-section-title {
  color: #232323;
}
.cid-uV4HCiNICB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uV4HCiNICB img,
.cid-uV4HCiNICB .item-img {
  width: 100%;
}
.cid-uV4HCiNICB .item:focus,
.cid-uV4HCiNICB span:focus {
  outline: none;
}
.cid-uV4HCiNICB .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uV4HCiNICB .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uV4HCiNICB .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uV4HCiNICB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uV4HCiNICB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uV4HCiNICB .mbr-section-title {
  color: #232323;
}
.cid-uUYHNmxnYP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uUYHNmxnYP img,
.cid-uUYHNmxnYP .item-img {
  width: 100%;
}
.cid-uUYHNmxnYP .item:focus,
.cid-uUYHNmxnYP span:focus {
  outline: none;
}
.cid-uUYHNmxnYP .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uUYHNmxnYP .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uUYHNmxnYP .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUYHNmxnYP .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uUYHNmxnYP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uUYHNmxnYP .mbr-section-title {
  color: #232323;
}
.cid-uuLfwewIcY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uuLfwewIcY img,
.cid-uuLfwewIcY .item-img {
  width: 100%;
}
.cid-uuLfwewIcY .item:focus,
.cid-uuLfwewIcY span:focus {
  outline: none;
}
.cid-uuLfwewIcY .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uuLfwewIcY .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uuLfwewIcY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uuLfwewIcY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uuLfwewIcY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uuLfwewIcY .mbr-section-title {
  color: #232323;
}
.cid-uUYHtxjOsu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uUYHtxjOsu img,
.cid-uUYHtxjOsu .item-img {
  width: 100%;
}
.cid-uUYHtxjOsu .item:focus,
.cid-uUYHtxjOsu span:focus {
  outline: none;
}
.cid-uUYHtxjOsu .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uUYHtxjOsu .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uUYHtxjOsu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUYHtxjOsu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uUYHtxjOsu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uUYHtxjOsu .mbr-section-title {
  color: #232323;
}
.cid-uUYH6Y1Xhn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uUYH6Y1Xhn img,
.cid-uUYH6Y1Xhn .item-img {
  width: 100%;
}
.cid-uUYH6Y1Xhn .item:focus,
.cid-uUYH6Y1Xhn span:focus {
  outline: none;
}
.cid-uUYH6Y1Xhn .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uUYH6Y1Xhn .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uUYH6Y1Xhn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUYH6Y1Xhn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uUYH6Y1Xhn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uUYH6Y1Xhn .mbr-section-title {
  color: #232323;
}
.cid-uUYFYdwJ7U {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uUYFYdwJ7U .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUYFYdwJ7U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUYFYdwJ7U .video-wrapper iframe {
  width: 100%;
}
.cid-uUYFYdwJ7U .mbr-section-title,
.cid-uUYFYdwJ7U .mbr-section-subtitle,
.cid-uUYFYdwJ7U .mbr-text {
  text-align: center;
}
.cid-uU3COI567r {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uU3COI567r .mbr-fallback-image.disabled {
  display: none;
}
.cid-uU3COI567r .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uU3COI567r .video-wrapper iframe {
  width: 100%;
}
.cid-uU3COI567r .mbr-section-title,
.cid-uU3COI567r .mbr-section-subtitle,
.cid-uU3COI567r .mbr-text {
  text-align: center;
}
.cid-uU3COI567r .mbr-text {
  color: #ffffff;
}
.cid-uTPKUOysbx {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uTPKUOysbx img,
.cid-uTPKUOysbx .item-img {
  width: 100%;
}
.cid-uTPKUOysbx .item:focus,
.cid-uTPKUOysbx span:focus {
  outline: none;
}
.cid-uTPKUOysbx .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uTPKUOysbx .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uTPKUOysbx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uTPKUOysbx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uTPKUOysbx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uTPKUOysbx .mbr-section-title {
  color: #232323;
}
.cid-uTCbV3hAjS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uTCbV3hAjS img,
.cid-uTCbV3hAjS .item-img {
  width: 100%;
}
.cid-uTCbV3hAjS .item:focus,
.cid-uTCbV3hAjS span:focus {
  outline: none;
}
.cid-uTCbV3hAjS .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uTCbV3hAjS .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uTCbV3hAjS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uTCbV3hAjS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uTCbV3hAjS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uTCbV3hAjS .mbr-section-title {
  color: #232323;
}
.cid-uTyewvfV2Y {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uTyewvfV2Y img,
.cid-uTyewvfV2Y .item-img {
  width: 100%;
}
.cid-uTyewvfV2Y .item:focus,
.cid-uTyewvfV2Y span:focus {
  outline: none;
}
.cid-uTyewvfV2Y .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uTyewvfV2Y .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uTyewvfV2Y .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uTyewvfV2Y .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uTyewvfV2Y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uTyewvfV2Y .mbr-section-title {
  color: #232323;
}
.cid-uTkWaJlFcN {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uTkWaJlFcN img,
.cid-uTkWaJlFcN .item-img {
  width: 100%;
}
.cid-uTkWaJlFcN .item:focus,
.cid-uTkWaJlFcN span:focus {
  outline: none;
}
.cid-uTkWaJlFcN .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uTkWaJlFcN .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uTkWaJlFcN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uTkWaJlFcN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uTkWaJlFcN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uTkWaJlFcN .mbr-section-title {
  color: #232323;
}
.cid-uSYWJauUAR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uSYWJauUAR img,
.cid-uSYWJauUAR .item-img {
  width: 100%;
}
.cid-uSYWJauUAR .item:focus,
.cid-uSYWJauUAR span:focus {
  outline: none;
}
.cid-uSYWJauUAR .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uSYWJauUAR .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSYWJauUAR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSYWJauUAR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSYWJauUAR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSYWJauUAR .mbr-section-title {
  color: #232323;
}
.cid-uSFnpkqV8s {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uSFnpkqV8s img,
.cid-uSFnpkqV8s .item-img {
  width: 100%;
}
.cid-uSFnpkqV8s .item:focus,
.cid-uSFnpkqV8s span:focus {
  outline: none;
}
.cid-uSFnpkqV8s .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uSFnpkqV8s .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSFnpkqV8s .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSFnpkqV8s .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSFnpkqV8s .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSFnpkqV8s .mbr-section-title {
  color: #232323;
}
.cid-uSlUrN0o7g {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uSlUrN0o7g img,
.cid-uSlUrN0o7g .item-img {
  width: 100%;
}
.cid-uSlUrN0o7g .item:focus,
.cid-uSlUrN0o7g span:focus {
  outline: none;
}
.cid-uSlUrN0o7g .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uSlUrN0o7g .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uSlUrN0o7g .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uSlUrN0o7g .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uSlUrN0o7g .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uSlUrN0o7g .mbr-section-title {
  color: #232323;
}
.cid-uRWSwMEGGP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uRWSwMEGGP img,
.cid-uRWSwMEGGP .item-img {
  width: 100%;
}
.cid-uRWSwMEGGP .item:focus,
.cid-uRWSwMEGGP span:focus {
  outline: none;
}
.cid-uRWSwMEGGP .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRWSwMEGGP .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRWSwMEGGP .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRWSwMEGGP .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRWSwMEGGP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRWSwMEGGP .mbr-section-title {
  color: #232323;
}
.cid-uRVoIR15uZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uRVoIR15uZ img,
.cid-uRVoIR15uZ .item-img {
  width: 100%;
}
.cid-uRVoIR15uZ .item:focus,
.cid-uRVoIR15uZ span:focus {
  outline: none;
}
.cid-uRVoIR15uZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRVoIR15uZ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRVoIR15uZ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRVoIR15uZ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRVoIR15uZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRVoIR15uZ .mbr-section-title {
  color: #232323;
}
.cid-uRtwQZJEmY {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uRtwQZJEmY img,
.cid-uRtwQZJEmY .item-img {
  width: 100%;
}
.cid-uRtwQZJEmY .item:focus,
.cid-uRtwQZJEmY span:focus {
  outline: none;
}
.cid-uRtwQZJEmY .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRtwQZJEmY .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRtwQZJEmY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRtwQZJEmY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRtwQZJEmY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRtwQZJEmY .mbr-section-title {
  color: #232323;
}
.cid-uRhW1euyai {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uRhW1euyai img,
.cid-uRhW1euyai .item-img {
  width: 100%;
}
.cid-uRhW1euyai .item:focus,
.cid-uRhW1euyai span:focus {
  outline: none;
}
.cid-uRhW1euyai .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uRhW1euyai .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRhW1euyai .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRhW1euyai .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRhW1euyai .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRhW1euyai .mbr-section-title {
  color: #232323;
}
.cid-uR9OnSHPe4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uR9OnSHPe4 img,
.cid-uR9OnSHPe4 .item-img {
  width: 100%;
}
.cid-uR9OnSHPe4 .item:focus,
.cid-uR9OnSHPe4 span:focus {
  outline: none;
}
.cid-uR9OnSHPe4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uR9OnSHPe4 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uR9OnSHPe4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uR9OnSHPe4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uR9OnSHPe4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uR9OnSHPe4 .mbr-section-title {
  color: #232323;
}
.cid-uQTLWh2otm {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uQTLWh2otm img,
.cid-uQTLWh2otm .item-img {
  width: 100%;
}
.cid-uQTLWh2otm .item:focus,
.cid-uQTLWh2otm span:focus {
  outline: none;
}
.cid-uQTLWh2otm .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uQTLWh2otm .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uQTLWh2otm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQTLWh2otm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uQTLWh2otm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uQTLWh2otm .mbr-section-title {
  color: #232323;
}
.cid-uQMLkJTbRH {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uQMLkJTbRH img,
.cid-uQMLkJTbRH .item-img {
  width: 100%;
}
.cid-uQMLkJTbRH .item:focus,
.cid-uQMLkJTbRH span:focus {
  outline: none;
}
.cid-uQMLkJTbRH .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uQMLkJTbRH .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uQMLkJTbRH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQMLkJTbRH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uQMLkJTbRH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uQMLkJTbRH .mbr-section-title {
  color: #232323;
}
.cid-uQFsaXBJyD {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uQFsaXBJyD img,
.cid-uQFsaXBJyD .item-img {
  width: 100%;
}
.cid-uQFsaXBJyD .item:focus,
.cid-uQFsaXBJyD span:focus {
  outline: none;
}
.cid-uQFsaXBJyD .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uQFsaXBJyD .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uQFsaXBJyD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQFsaXBJyD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uQFsaXBJyD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uQFsaXBJyD .mbr-section-title {
  color: #232323;
}
.cid-uQrjgGlCYM {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uQrjgGlCYM img,
.cid-uQrjgGlCYM .item-img {
  width: 100%;
}
.cid-uQrjgGlCYM .item:focus,
.cid-uQrjgGlCYM span:focus {
  outline: none;
}
.cid-uQrjgGlCYM .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uQrjgGlCYM .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uQrjgGlCYM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQrjgGlCYM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uQrjgGlCYM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uQrjgGlCYM .mbr-section-title {
  color: #232323;
}
.cid-uQfRg2cNre {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uQfRg2cNre img,
.cid-uQfRg2cNre .item-img {
  width: 100%;
}
.cid-uQfRg2cNre .item:focus,
.cid-uQfRg2cNre span:focus {
  outline: none;
}
.cid-uQfRg2cNre .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uQfRg2cNre .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uQfRg2cNre .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQfRg2cNre .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uQfRg2cNre .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uQfRg2cNre .mbr-section-title {
  color: #232323;
}
.cid-uQ3EwXK2SS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uQ3EwXK2SS img,
.cid-uQ3EwXK2SS .item-img {
  width: 100%;
}
.cid-uQ3EwXK2SS .item:focus,
.cid-uQ3EwXK2SS span:focus {
  outline: none;
}
.cid-uQ3EwXK2SS .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uQ3EwXK2SS .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uQ3EwXK2SS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQ3EwXK2SS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uQ3EwXK2SS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uQ3EwXK2SS .mbr-section-title {
  color: #232323;
}
.cid-uPuexIApbJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uPuexIApbJ img,
.cid-uPuexIApbJ .item-img {
  width: 100%;
}
.cid-uPuexIApbJ .item:focus,
.cid-uPuexIApbJ span:focus {
  outline: none;
}
.cid-uPuexIApbJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uPuexIApbJ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPuexIApbJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uPuexIApbJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uPuexIApbJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPuexIApbJ .mbr-section-title {
  color: #232323;
}
.cid-uP7xd1dj2X {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uP7xd1dj2X img,
.cid-uP7xd1dj2X .item-img {
  width: 100%;
}
.cid-uP7xd1dj2X .item:focus,
.cid-uP7xd1dj2X span:focus {
  outline: none;
}
.cid-uP7xd1dj2X .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uP7xd1dj2X .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uP7xd1dj2X .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uP7xd1dj2X .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uP7xd1dj2X .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uP7xd1dj2X .mbr-section-title {
  color: #232323;
}
.cid-uODyOeZdYV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uODyOeZdYV img,
.cid-uODyOeZdYV .item-img {
  width: 100%;
}
.cid-uODyOeZdYV .item:focus,
.cid-uODyOeZdYV span:focus {
  outline: none;
}
.cid-uODyOeZdYV .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uODyOeZdYV .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uODyOeZdYV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uODyOeZdYV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uODyOeZdYV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uODyOeZdYV .mbr-section-title {
  color: #232323;
}
.cid-uOum453zhy {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uOum453zhy img,
.cid-uOum453zhy .item-img {
  width: 100%;
}
.cid-uOum453zhy .item:focus,
.cid-uOum453zhy span:focus {
  outline: none;
}
.cid-uOum453zhy .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uOum453zhy .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOum453zhy .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOum453zhy .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOum453zhy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOum453zhy .mbr-section-title {
  color: #232323;
}
.cid-uO0Gs9qapP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uO0Gs9qapP img,
.cid-uO0Gs9qapP .item-img {
  width: 100%;
}
.cid-uO0Gs9qapP .item:focus,
.cid-uO0Gs9qapP span:focus {
  outline: none;
}
.cid-uO0Gs9qapP .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uO0Gs9qapP .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uO0Gs9qapP .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uO0Gs9qapP .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uO0Gs9qapP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uO0Gs9qapP .mbr-section-title {
  color: #232323;
}
.cid-uNM4t8qgAp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uNM4t8qgAp img,
.cid-uNM4t8qgAp .item-img {
  width: 100%;
}
.cid-uNM4t8qgAp .item:focus,
.cid-uNM4t8qgAp span:focus {
  outline: none;
}
.cid-uNM4t8qgAp .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uNM4t8qgAp .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uNM4t8qgAp .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNM4t8qgAp .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uNM4t8qgAp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uNM4t8qgAp .mbr-section-title {
  color: #232323;
}
.cid-uNy2OOimRt {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uNy2OOimRt img,
.cid-uNy2OOimRt .item-img {
  width: 100%;
}
.cid-uNy2OOimRt .item:focus,
.cid-uNy2OOimRt span:focus {
  outline: none;
}
.cid-uNy2OOimRt .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uNy2OOimRt .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uNy2OOimRt .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNy2OOimRt .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uNy2OOimRt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uNy2OOimRt .mbr-section-title {
  color: #232323;
}
.cid-uNvRAqtaS7 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uNvRAqtaS7 img,
.cid-uNvRAqtaS7 .item-img {
  width: 100%;
}
.cid-uNvRAqtaS7 .item:focus,
.cid-uNvRAqtaS7 span:focus {
  outline: none;
}
.cid-uNvRAqtaS7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uNvRAqtaS7 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uNvRAqtaS7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNvRAqtaS7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uNvRAqtaS7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uNvRAqtaS7 .mbr-section-title {
  color: #232323;
}
.cid-uMPxtUHCyZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uMPxtUHCyZ img,
.cid-uMPxtUHCyZ .item-img {
  width: 100%;
}
.cid-uMPxtUHCyZ .item:focus,
.cid-uMPxtUHCyZ span:focus {
  outline: none;
}
.cid-uMPxtUHCyZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uMPxtUHCyZ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMPxtUHCyZ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMPxtUHCyZ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uMPxtUHCyZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMPxtUHCyZ .mbr-section-title {
  color: #232323;
}
.cid-uMzhnsm5pS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uMzhnsm5pS img,
.cid-uMzhnsm5pS .item-img {
  width: 100%;
}
.cid-uMzhnsm5pS .item:focus,
.cid-uMzhnsm5pS span:focus {
  outline: none;
}
.cid-uMzhnsm5pS .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uMzhnsm5pS .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMzhnsm5pS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMzhnsm5pS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uMzhnsm5pS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMzhnsm5pS .mbr-section-title {
  color: #232323;
}
.cid-uMxhsdjnmw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uMxhsdjnmw img,
.cid-uMxhsdjnmw .item-img {
  width: 100%;
}
.cid-uMxhsdjnmw .item:focus,
.cid-uMxhsdjnmw span:focus {
  outline: none;
}
.cid-uMxhsdjnmw .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uMxhsdjnmw .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uMxhsdjnmw .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uMxhsdjnmw .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uMxhsdjnmw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uMxhsdjnmw .mbr-section-title {
  color: #232323;
}
.cid-uLWkU8mp1M {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uLWkU8mp1M img,
.cid-uLWkU8mp1M .item-img {
  width: 100%;
}
.cid-uLWkU8mp1M .item:focus,
.cid-uLWkU8mp1M span:focus {
  outline: none;
}
.cid-uLWkU8mp1M .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uLWkU8mp1M .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLWkU8mp1M .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLWkU8mp1M .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLWkU8mp1M .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLWkU8mp1M .mbr-section-title {
  color: #232323;
}
.cid-uLxU3bO5pe {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uLxU3bO5pe img,
.cid-uLxU3bO5pe .item-img {
  width: 100%;
}
.cid-uLxU3bO5pe .item:focus,
.cid-uLxU3bO5pe span:focus {
  outline: none;
}
.cid-uLxU3bO5pe .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uLxU3bO5pe .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLxU3bO5pe .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLxU3bO5pe .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLxU3bO5pe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLxU3bO5pe .mbr-section-title {
  color: #232323;
}
.cid-uKiqqUDgNV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uKiqqUDgNV img,
.cid-uKiqqUDgNV .item-img {
  width: 100%;
}
.cid-uKiqqUDgNV .item:focus,
.cid-uKiqqUDgNV span:focus {
  outline: none;
}
.cid-uKiqqUDgNV .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uKiqqUDgNV .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uKiqqUDgNV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uKiqqUDgNV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uKiqqUDgNV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uKiqqUDgNV .mbr-section-title {
  color: #232323;
}
.cid-uJoH3q4dcL {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uJoH3q4dcL img,
.cid-uJoH3q4dcL .item-img {
  width: 100%;
}
.cid-uJoH3q4dcL .item:focus,
.cid-uJoH3q4dcL span:focus {
  outline: none;
}
.cid-uJoH3q4dcL .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJoH3q4dcL .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uJoH3q4dcL .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uJoH3q4dcL .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uJoH3q4dcL .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uJoH3q4dcL .mbr-section-title {
  color: #232323;
}
.cid-uIDFyW2Qn6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uIDFyW2Qn6 img,
.cid-uIDFyW2Qn6 .item-img {
  width: 100%;
}
.cid-uIDFyW2Qn6 .item:focus,
.cid-uIDFyW2Qn6 span:focus {
  outline: none;
}
.cid-uIDFyW2Qn6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uIDFyW2Qn6 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uIDFyW2Qn6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIDFyW2Qn6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uIDFyW2Qn6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uIDFyW2Qn6 .mbr-section-title {
  color: #232323;
}
.cid-uGwIE2zAxS {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uGwIE2zAxS img,
.cid-uGwIE2zAxS .item-img {
  width: 100%;
}
.cid-uGwIE2zAxS .item:focus,
.cid-uGwIE2zAxS span:focus {
  outline: none;
}
.cid-uGwIE2zAxS .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uGwIE2zAxS .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGwIE2zAxS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGwIE2zAxS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uGwIE2zAxS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGwIE2zAxS .mbr-section-title {
  color: #232323;
}
.cid-uGk9g7vzBi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uGk9g7vzBi img,
.cid-uGk9g7vzBi .item-img {
  width: 100%;
}
.cid-uGk9g7vzBi .item:focus,
.cid-uGk9g7vzBi span:focus {
  outline: none;
}
.cid-uGk9g7vzBi .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uGk9g7vzBi .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGk9g7vzBi .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uGk9g7vzBi .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uGk9g7vzBi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGk9g7vzBi .mbr-section-title {
  color: #232323;
}
.cid-uFLKA17L8X {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uFLKA17L8X img,
.cid-uFLKA17L8X .item-img {
  width: 100%;
}
.cid-uFLKA17L8X .item:focus,
.cid-uFLKA17L8X span:focus {
  outline: none;
}
.cid-uFLKA17L8X .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uFLKA17L8X .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uFLKA17L8X .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFLKA17L8X .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uFLKA17L8X .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uFLKA17L8X .mbr-section-title {
  color: #232323;
}
.cid-uFqvpVPqLu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uFqvpVPqLu img,
.cid-uFqvpVPqLu .item-img {
  width: 100%;
}
.cid-uFqvpVPqLu .item:focus,
.cid-uFqvpVPqLu span:focus {
  outline: none;
}
.cid-uFqvpVPqLu .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uFqvpVPqLu .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uFqvpVPqLu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFqvpVPqLu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uFqvpVPqLu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uFqvpVPqLu .mbr-section-title {
  color: #232323;
}
.cid-uFa8CaH9Pj {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uFa8CaH9Pj img,
.cid-uFa8CaH9Pj .item-img {
  width: 100%;
}
.cid-uFa8CaH9Pj .item:focus,
.cid-uFa8CaH9Pj span:focus {
  outline: none;
}
.cid-uFa8CaH9Pj .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uFa8CaH9Pj .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uFa8CaH9Pj .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFa8CaH9Pj .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uFa8CaH9Pj .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uFa8CaH9Pj .mbr-section-title {
  color: #232323;
}
.cid-uELEIUmhTn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uELEIUmhTn img,
.cid-uELEIUmhTn .item-img {
  width: 100%;
}
.cid-uELEIUmhTn .item:focus,
.cid-uELEIUmhTn span:focus {
  outline: none;
}
.cid-uELEIUmhTn .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uELEIUmhTn .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uELEIUmhTn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uELEIUmhTn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uELEIUmhTn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uELEIUmhTn .mbr-section-title {
  color: #232323;
}
.cid-uEKZrGQ744 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uEKZrGQ744 img,
.cid-uEKZrGQ744 .item-img {
  width: 100%;
}
.cid-uEKZrGQ744 .item:focus,
.cid-uEKZrGQ744 span:focus {
  outline: none;
}
.cid-uEKZrGQ744 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uEKZrGQ744 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uEKZrGQ744 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uEKZrGQ744 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uEKZrGQ744 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uEKZrGQ744 .mbr-section-title {
  color: #232323;
}
.cid-uE9YbhSoc6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uE9YbhSoc6 img,
.cid-uE9YbhSoc6 .item-img {
  width: 100%;
}
.cid-uE9YbhSoc6 .item:focus,
.cid-uE9YbhSoc6 span:focus {
  outline: none;
}
.cid-uE9YbhSoc6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uE9YbhSoc6 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uE9YbhSoc6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uE9YbhSoc6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uE9YbhSoc6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uE9YbhSoc6 .mbr-section-title {
  color: #232323;
}
.cid-utE4Kt3pKE {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-utE4Kt3pKE .mbr-fallback-image.disabled {
  display: none;
}
.cid-utE4Kt3pKE .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-utE4Kt3pKE .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-utE4Kt3pKE .row {
  flex-direction: row-reverse;
}
.cid-utE4Kt3pKE img {
  width: 100%;
}
.cid-uE9XmxKfKw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uE9XmxKfKw img,
.cid-uE9XmxKfKw .item-img {
  width: 100%;
}
.cid-uE9XmxKfKw .item:focus,
.cid-uE9XmxKfKw span:focus {
  outline: none;
}
.cid-uE9XmxKfKw .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uE9XmxKfKw .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uE9XmxKfKw .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uE9XmxKfKw .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uE9XmxKfKw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uE9XmxKfKw .mbr-section-title {
  color: #232323;
}
.cid-uDA939dV4Q {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uDA939dV4Q img,
.cid-uDA939dV4Q .item-img {
  width: 100%;
}
.cid-uDA939dV4Q .item:focus,
.cid-uDA939dV4Q span:focus {
  outline: none;
}
.cid-uDA939dV4Q .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uDA939dV4Q .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uDA939dV4Q .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uDA939dV4Q .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uDA939dV4Q .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uDA939dV4Q .mbr-section-title {
  color: #232323;
}
.cid-uDA8IM5WJQ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uDA8IM5WJQ img,
.cid-uDA8IM5WJQ .item-img {
  width: 100%;
}
.cid-uDA8IM5WJQ .item:focus,
.cid-uDA8IM5WJQ span:focus {
  outline: none;
}
.cid-uDA8IM5WJQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uDA8IM5WJQ .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uDA8IM5WJQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uDA8IM5WJQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uDA8IM5WJQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uDA8IM5WJQ .mbr-section-title {
  color: #232323;
}
.cid-uDA8qFWp95 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uDA8qFWp95 img,
.cid-uDA8qFWp95 .item-img {
  width: 100%;
}
.cid-uDA8qFWp95 .item:focus,
.cid-uDA8qFWp95 span:focus {
  outline: none;
}
.cid-uDA8qFWp95 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uDA8qFWp95 .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uDA8qFWp95 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uDA8qFWp95 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uDA8qFWp95 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uDA8qFWp95 .mbr-section-title {
  color: #232323;
}
.cid-uDA857FzjR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uDA857FzjR img,
.cid-uDA857FzjR .item-img {
  width: 100%;
}
.cid-uDA857FzjR .item:focus,
.cid-uDA857FzjR span:focus {
  outline: none;
}
.cid-uDA857FzjR .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uDA857FzjR .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uDA857FzjR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uDA857FzjR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uDA857FzjR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uDA857FzjR .mbr-section-title {
  color: #232323;
}
.cid-uDA6pTzM2W {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uDA6pTzM2W img,
.cid-uDA6pTzM2W .item-img {
  width: 100%;
}
.cid-uDA6pTzM2W .item:focus,
.cid-uDA6pTzM2W span:focus {
  outline: none;
}
.cid-uDA6pTzM2W .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uDA6pTzM2W .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uDA6pTzM2W .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uDA6pTzM2W .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uDA6pTzM2W .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uDA6pTzM2W .mbr-section-title {
  color: #232323;
}
.cid-uDA63rCfOB {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uDA63rCfOB img,
.cid-uDA63rCfOB .item-img {
  width: 100%;
}
.cid-uDA63rCfOB .item:focus,
.cid-uDA63rCfOB span:focus {
  outline: none;
}
.cid-uDA63rCfOB .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uDA63rCfOB .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uDA63rCfOB .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uDA63rCfOB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uDA63rCfOB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uDA63rCfOB .mbr-section-title {
  color: #232323;
}
.cid-uu2deqexzy {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uu2deqexzy img,
.cid-uu2deqexzy .item-img {
  width: 100%;
}
.cid-uu2deqexzy .item:focus,
.cid-uu2deqexzy span:focus {
  outline: none;
}
.cid-uu2deqexzy .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uu2deqexzy .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uu2deqexzy .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uu2deqexzy .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uu2deqexzy .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uu2deqexzy .mbr-section-title {
  color: #232323;
}
.cid-uDA4ii2s1x {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uDA4ii2s1x img,
.cid-uDA4ii2s1x .item-img {
  width: 100%;
}
.cid-uDA4ii2s1x .item:focus,
.cid-uDA4ii2s1x span:focus {
  outline: none;
}
.cid-uDA4ii2s1x .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uDA4ii2s1x .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uDA4ii2s1x .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uDA4ii2s1x .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uDA4ii2s1x .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uDA4ii2s1x .mbr-section-title {
  color: #232323;
}
.cid-uufOWAvbbA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uufOWAvbbA img,
.cid-uufOWAvbbA .item-img {
  width: 100%;
}
.cid-uufOWAvbbA .item:focus,
.cid-uufOWAvbbA span:focus {
  outline: none;
}
.cid-uufOWAvbbA .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uufOWAvbbA .item-wrapper {
  position: unset;
  border-radius: 4px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uufOWAvbbA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uufOWAvbbA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uufOWAvbbA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uufOWAvbbA .mbr-section-title {
  color: #232323;
}
.cid-utsQpMBxa1 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-utsQpMBxa1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-utsQpMBxa1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uUYP5qGxHc {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-uUYP5qGxHc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uUYP5qGxHc .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-uUYP5qGxHc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uUYP5qGxHc .row {
  flex-direction: row-reverse;
}
.cid-uUYP5qGxHc img {
  width: 100%;
}
