body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 3.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Roboto Condensed', 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: 'Roboto Condensed', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Roboto Condensed', 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: 2.88rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.52rem;
    font-size: calc( 1.91rem + (3.6 - 1.91) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.91rem + (3.6 - 1.91) * ((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*/
.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-tvow7gGESQ .navbar-dropdown {
  position: relative !important;
}
.cid-tvow7gGESQ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvow7gGESQ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tvow7gGESQ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tvow7gGESQ .dropdown-item:hover,
.cid-tvow7gGESQ .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tvow7gGESQ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tvow7gGESQ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tvow7gGESQ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tvow7gGESQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tvow7gGESQ .nav-link {
  position: relative;
}
.cid-tvow7gGESQ .container {
  display: flex;
  margin: auto;
}
.cid-tvow7gGESQ .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tvow7gGESQ .dropdown-menu,
.cid-tvow7gGESQ .navbar.opened {
  background: #ffffff !important;
}
.cid-tvow7gGESQ .nav-item:focus,
.cid-tvow7gGESQ .nav-link:focus {
  outline: none;
}
.cid-tvow7gGESQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tvow7gGESQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tvow7gGESQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tvow7gGESQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tvow7gGESQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tvow7gGESQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tvow7gGESQ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tvow7gGESQ .navbar.opened {
  transition: all 0.3s;
}
.cid-tvow7gGESQ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tvow7gGESQ .navbar .navbar-logo img {
  width: auto;
}
.cid-tvow7gGESQ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tvow7gGESQ .navbar.collapsed {
  justify-content: center;
}
.cid-tvow7gGESQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tvow7gGESQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tvow7gGESQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.8rem);
  }
}
.cid-tvow7gGESQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tvow7gGESQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tvow7gGESQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tvow7gGESQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tvow7gGESQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tvow7gGESQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tvow7gGESQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tvow7gGESQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tvow7gGESQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tvow7gGESQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tvow7gGESQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tvow7gGESQ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tvow7gGESQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tvow7gGESQ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tvow7gGESQ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tvow7gGESQ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tvow7gGESQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tvow7gGESQ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tvow7gGESQ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tvow7gGESQ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tvow7gGESQ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tvow7gGESQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tvow7gGESQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tvow7gGESQ .dropdown-item.active,
.cid-tvow7gGESQ .dropdown-item:active {
  background-color: transparent;
}
.cid-tvow7gGESQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tvow7gGESQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tvow7gGESQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tvow7gGESQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tvow7gGESQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tvow7gGESQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tvow7gGESQ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tvow7gGESQ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tvow7gGESQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tvow7gGESQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tvow7gGESQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tvow7gGESQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvow7gGESQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tvow7gGESQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tvow7gGESQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvow7gGESQ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tvow7gGESQ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tvow7gGESQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tvow7gGESQ .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tvow7gGESQ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tvow7gGESQ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tvow7gGESQ .navbar {
    height: 70px;
  }
  .cid-tvow7gGESQ .navbar.opened {
    height: auto;
  }
  .cid-tvow7gGESQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tvow84Pcxx {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #0c2e6c;
}
.cid-tvow84Pcxx .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvow84Pcxx .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-tvow84Pcxx .mbr-section-title {
  color: #ffffff;
}
.cid-uNfqAAHCIE {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #6ec7f2;
}
.cid-uNfqAAHCIE img,
.cid-uNfqAAHCIE .item-img {
  width: 100%;
}
.cid-uNfqAAHCIE .item:focus,
.cid-uNfqAAHCIE span:focus {
  outline: none;
}
.cid-uNfqAAHCIE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uNfqAAHCIE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uNfqAAHCIE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNfqAAHCIE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uNfqAAHCIE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uNfqAAHCIE .mbr-section-title {
  color: #232323;
}
.cid-uNfqAAHCIE .mbr-text,
.cid-uNfqAAHCIE .mbr-section-btn {
  text-align: left;
}
.cid-uNfqAAHCIE .item-title {
  text-align: left;
}
.cid-uNfqAAHCIE .item-subtitle {
  text-align: center;
}
.cid-uNfqAAHCIE .item-title DIV {
  text-align: left;
}
.cid-uG0dUMfDSI {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uG0dUMfDSI img,
.cid-uG0dUMfDSI .item-img {
  width: 100%;
}
.cid-uG0dUMfDSI .item:focus,
.cid-uG0dUMfDSI span:focus {
  outline: none;
}
.cid-uG0dUMfDSI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uG0dUMfDSI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uG0dUMfDSI .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uG0dUMfDSI .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uG0dUMfDSI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uG0dUMfDSI .mbr-section-title {
  color: #232323;
}
.cid-uG0dUMfDSI .mbr-text,
.cid-uG0dUMfDSI .mbr-section-btn {
  text-align: left;
}
.cid-uG0dUMfDSI .item-title {
  text-align: left;
}
.cid-uG0dUMfDSI .item-subtitle {
  text-align: left;
}
.cid-uIgaZqqaf4 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uIgaZqqaf4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgaZqqaf4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgaZqqaf4 .video-wrapper iframe {
  width: 100%;
}
.cid-uIgaZqqaf4 .mbr-section-title,
.cid-uIgaZqqaf4 .mbr-section-subtitle,
.cid-uIgaZqqaf4 .mbr-text {
  text-align: center;
}
.cid-uR1Gq0XIkH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uR1Gq0XIkH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR1Gq0XIkH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR1Gq0XIkH .video-wrapper iframe {
  width: 100%;
}
.cid-uR1Gq0XIkH .mbr-section-title,
.cid-uR1Gq0XIkH .mbr-section-subtitle,
.cid-uR1Gq0XIkH .mbr-text {
  text-align: center;
}
.cid-uc0RMLbLHD {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uc0RMLbLHD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uc0RMLbLHD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uc0RMLbLHD .video-wrapper iframe {
  width: 100%;
}
.cid-uc0RMLbLHD .mbr-section-title,
.cid-uc0RMLbLHD .mbr-section-subtitle,
.cid-uc0RMLbLHD .mbr-text {
  text-align: center;
}
.cid-tvowPmqMBx {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ff8a8a;
}
.cid-tvowPmqMBx img,
.cid-tvowPmqMBx .item-img {
  width: 100%;
}
.cid-tvowPmqMBx .item:focus,
.cid-tvowPmqMBx span:focus {
  outline: none;
}
.cid-tvowPmqMBx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvowPmqMBx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvowPmqMBx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvowPmqMBx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvowPmqMBx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvowPmqMBx .mbr-section-title {
  color: #232323;
}
.cid-tvowPmqMBx .mbr-text,
.cid-tvowPmqMBx .mbr-section-btn {
  text-align: left;
}
.cid-tvowPmqMBx .item-title {
  text-align: left;
}
.cid-tvowPmqMBx .item-subtitle {
  text-align: left;
}
.cid-tvowQQR3yd {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-tvowQQR3yd img,
.cid-tvowQQR3yd .item-img {
  width: 100%;
}
.cid-tvowQQR3yd .item:focus,
.cid-tvowQQR3yd span:focus {
  outline: none;
}
.cid-tvowQQR3yd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvowQQR3yd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvowQQR3yd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvowQQR3yd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvowQQR3yd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvowQQR3yd .mbr-section-title {
  color: #232323;
}
.cid-tvowQQR3yd .mbr-text,
.cid-tvowQQR3yd .mbr-section-btn {
  text-align: left;
}
.cid-tvowQQR3yd .item-title {
  text-align: left;
}
.cid-tvowQQR3yd .item-subtitle {
  text-align: left;
}
.cid-uOz4cIwLMz {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-uOz4cIwLMz img,
.cid-uOz4cIwLMz .item-img {
  width: 100%;
}
.cid-uOz4cIwLMz .item:focus,
.cid-uOz4cIwLMz span:focus {
  outline: none;
}
.cid-uOz4cIwLMz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOz4cIwLMz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOz4cIwLMz .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOz4cIwLMz .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOz4cIwLMz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOz4cIwLMz .mbr-section-title {
  color: #232323;
}
.cid-uOz4cIwLMz .mbr-text,
.cid-uOz4cIwLMz .mbr-section-btn {
  text-align: left;
}
.cid-uOz4cIwLMz .item-title {
  text-align: left;
}
.cid-uOz4cIwLMz .item-subtitle {
  text-align: left;
}
.cid-tvowQaGOsO {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ff6666;
}
.cid-tvowQaGOsO img,
.cid-tvowQaGOsO .item-img {
  width: 100%;
}
.cid-tvowQaGOsO .item:focus,
.cid-tvowQaGOsO span:focus {
  outline: none;
}
.cid-tvowQaGOsO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvowQaGOsO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvowQaGOsO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvowQaGOsO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvowQaGOsO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvowQaGOsO .mbr-section-title {
  color: #232323;
}
.cid-tvowQaGOsO .mbr-text,
.cid-tvowQaGOsO .mbr-section-btn {
  text-align: left;
}
.cid-tvowQaGOsO .item-title {
  text-align: left;
  color: #000000;
}
.cid-tvowQaGOsO .item-subtitle {
  text-align: left;
}
.cid-tvowRSHajD {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #155ddf;
}
.cid-tvowRSHajD img,
.cid-tvowRSHajD .item-img {
  width: 100%;
}
.cid-tvowRSHajD .item:focus,
.cid-tvowRSHajD span:focus {
  outline: none;
}
.cid-tvowRSHajD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvowRSHajD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvowRSHajD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvowRSHajD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvowRSHajD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvowRSHajD .mbr-section-title {
  color: #232323;
}
.cid-tvowRSHajD .mbr-text,
.cid-tvowRSHajD .mbr-section-btn {
  text-align: left;
}
.cid-tvowRSHajD .item-title {
  text-align: left;
}
.cid-tvowRSHajD .item-subtitle {
  text-align: left;
}
.cid-uFKYIyCzOm {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uFKYIyCzOm img,
.cid-uFKYIyCzOm .item-img {
  width: 100%;
}
.cid-uFKYIyCzOm .item:focus,
.cid-uFKYIyCzOm span:focus {
  outline: none;
}
.cid-uFKYIyCzOm .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uFKYIyCzOm .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uFKYIyCzOm .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFKYIyCzOm .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uFKYIyCzOm .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uFKYIyCzOm .mbr-section-title {
  color: #232323;
}
.cid-uFKYIyCzOm .mbr-text,
.cid-uFKYIyCzOm .mbr-section-btn {
  text-align: left;
}
.cid-uFKYIyCzOm .item-title {
  text-align: center;
}
.cid-uFKYIyCzOm .item-subtitle {
  text-align: left;
}
.cid-tvowcECP6P {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffb5b5;
}
.cid-tvowcECP6P img,
.cid-tvowcECP6P .item-img {
  width: 100%;
}
.cid-tvowcECP6P .item:focus,
.cid-tvowcECP6P span:focus {
  outline: none;
}
.cid-tvowcECP6P .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvowcECP6P .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvowcECP6P .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvowcECP6P .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvowcECP6P .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvowcECP6P .mbr-section-title {
  color: #232323;
}
.cid-tvowcECP6P .mbr-text,
.cid-tvowcECP6P .mbr-section-btn {
  text-align: left;
}
.cid-tvowcECP6P .item-title {
  text-align: left;
}
.cid-tvowcECP6P .item-subtitle {
  text-align: left;
}
.cid-uFIfdVkcDM {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uFIfdVkcDM img,
.cid-uFIfdVkcDM .item-img {
  width: 100%;
}
.cid-uFIfdVkcDM .item:focus,
.cid-uFIfdVkcDM span:focus {
  outline: none;
}
.cid-uFIfdVkcDM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uFIfdVkcDM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uFIfdVkcDM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFIfdVkcDM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uFIfdVkcDM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uFIfdVkcDM .mbr-section-title {
  color: #232323;
}
.cid-uFIfdVkcDM .mbr-text,
.cid-uFIfdVkcDM .mbr-section-btn {
  text-align: left;
}
.cid-uFIfdVkcDM .item-title {
  text-align: left;
}
.cid-uFIfdVkcDM .item-subtitle {
  text-align: left;
}
.cid-tvoxeSub2k .google-map {
  height: 25rem;
  position: relative;
}
.cid-tvoxeSub2k .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tvoxeSub2k .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tvoxeSub2k .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tvoxeSub2k .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tvoxfXZouy {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(0deg, #232323, #073b4c);
}
.cid-tvoxfXZouy .mbr-iconfont-social {
  font-size: 32px;
  color: #ffffff;
}
.cid-tvoxfXZouy .social-list a:focus {
  text-decoration: none;
}
.cid-tvoxfXZouy H2 {
  color: #ffffff;
}
.cid-tXYs3TybYT {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #4479d9;
}
.cid-tXYs3TybYT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tXYs3TybYT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tXYs3TybYT .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tXYs3TybYT .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tXYs3TybYT .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tXYs3TybYT .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tXYs3TybYT .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tXYs3TybYT .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tXYs3TybYT .carousel-control,
.cid-tXYs3TybYT .close {
  background: #1b1b1b;
}
.cid-tXYs3TybYT .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tXYs3TybYT .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tXYs3TybYT .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tXYs3TybYT .carousel-control-next span {
  margin-left: 5px;
}
.cid-tXYs3TybYT .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tXYs3TybYT .close::before {
  content: '\e91a';
}
.cid-tXYs3TybYT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tXYs3TybYT .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tXYs3TybYT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tXYs3TybYT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tXYs3TybYT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tXYs3TybYT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tXYs3TybYT .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tXYs3TybYT .carousel-indicators li.active,
.cid-tXYs3TybYT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tXYs3TybYT .carousel-indicators li::after,
.cid-tXYs3TybYT .carousel-indicators li::before {
  content: none;
}
.cid-tXYs3TybYT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tXYs3TybYT .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tXYs3TybYT .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tXYs3TybYT .carousel-indicators {
    display: none;
  }
}
.cid-tXYs3TybYT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tXYs3TybYT .carousel-inner > .active {
  display: block;
}
.cid-tXYs3TybYT .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tXYs3TybYT .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tXYs3TybYT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tXYs3TybYT .carousel-control,
  .cid-tXYs3TybYT .carousel-indicators,
  .cid-tXYs3TybYT .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tXYs3TybYT .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tXYs3TybYT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tXYs3TybYT .carousel-indicators .active,
.cid-tXYs3TybYT .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tXYs3TybYT .carousel-indicators .active {
  background: #fff;
}
.cid-tXYs3TybYT .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tXYs3TybYT .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tXYs3TybYT .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tXYs3TybYT .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tXYs3TybYT .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tXYs3TybYT .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tXYs3TybYT .carousel {
  width: 100%;
}
.cid-tXYs3TybYT .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tXYs3TybYT .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tXYs3TybYT .modal.fade .modal-dialog,
.cid-tXYs3TybYT .modal.in .modal-dialog {
  transform: none;
}
.cid-tXYs3TybYT .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tXYs3TybYT H6 {
  text-align: center;
}
.cid-u0kpleHGo6 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #4479d9;
}
.cid-u0kpleHGo6 img,
.cid-u0kpleHGo6 .item-img {
  width: 100%;
}
.cid-u0kpleHGo6 .item:focus,
.cid-u0kpleHGo6 span:focus {
  outline: none;
}
.cid-u0kpleHGo6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u0kpleHGo6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u0kpleHGo6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u0kpleHGo6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u0kpleHGo6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u0kpleHGo6 .mbr-section-title {
  color: #232323;
}
.cid-u0kpleHGo6 .mbr-text,
.cid-u0kpleHGo6 .mbr-section-btn {
  text-align: left;
}
.cid-u0kpleHGo6 .item-title {
  text-align: left;
}
.cid-u0kpleHGo6 .item-subtitle {
  text-align: left;
}
.cid-tvoDuu3zGc {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #8caff0;
}
.cid-tvoDuu3zGc img,
.cid-tvoDuu3zGc .item-img {
  width: 100%;
}
.cid-tvoDuu3zGc .item:focus,
.cid-tvoDuu3zGc span:focus {
  outline: none;
}
.cid-tvoDuu3zGc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvoDuu3zGc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvoDuu3zGc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvoDuu3zGc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvoDuu3zGc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvoDuu3zGc .mbr-section-title {
  color: #232323;
}
.cid-tvoDuu3zGc .mbr-text,
.cid-tvoDuu3zGc .mbr-section-btn {
  text-align: left;
}
.cid-tvoDuu3zGc .item-title {
  text-align: left;
}
.cid-tvoDuu3zGc .item-subtitle {
  text-align: left;
}
.cid-uNfvkYcnBs {
  padding-top: 8rem;
  padding-bottom: 10rem;
  background-color: #155ddf;
}
.cid-uNfvkYcnBs img,
.cid-uNfvkYcnBs .item-img {
  width: 100%;
}
.cid-uNfvkYcnBs .item:focus,
.cid-uNfvkYcnBs span:focus {
  outline: none;
}
.cid-uNfvkYcnBs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uNfvkYcnBs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uNfvkYcnBs .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uNfvkYcnBs .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uNfvkYcnBs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uNfvkYcnBs .mbr-section-title {
  color: #ffffff;
}
.cid-uNfvkYcnBs .mbr-text,
.cid-uNfvkYcnBs .mbr-section-btn {
  text-align: left;
}
.cid-uNfvkYcnBs .item-title {
  text-align: left;
}
.cid-uNfvkYcnBs .item-subtitle {
  text-align: center;
}
.cid-uNfvkYcnBs .item-title DIV {
  text-align: left;
}
.cid-uR1R0E9c01 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uR1R0E9c01 img,
.cid-uR1R0E9c01 .item-img {
  width: 100%;
}
.cid-uR1R0E9c01 .item:focus,
.cid-uR1R0E9c01 span:focus {
  outline: none;
}
.cid-uR1R0E9c01 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uR1R0E9c01 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uR1R0E9c01 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uR1R0E9c01 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uR1R0E9c01 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uR1R0E9c01 .mbr-section-title {
  color: #232323;
}
.cid-uR1R0E9c01 .mbr-text,
.cid-uR1R0E9c01 .mbr-section-btn {
  text-align: left;
}
.cid-uR1R0E9c01 .item-title {
  text-align: left;
}
.cid-uR1R0E9c01 .item-subtitle {
  text-align: left;
}
.cid-tZLSWom0or {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tZLSWom0or img,
.cid-tZLSWom0or .item-img {
  width: 100%;
}
.cid-tZLSWom0or .item:focus,
.cid-tZLSWom0or span:focus {
  outline: none;
}
.cid-tZLSWom0or .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tZLSWom0or .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tZLSWom0or .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tZLSWom0or .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tZLSWom0or .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tZLSWom0or .mbr-section-title {
  color: #232323;
}
.cid-tZLSWom0or .mbr-text,
.cid-tZLSWom0or .mbr-section-btn {
  text-align: left;
}
.cid-tZLSWom0or .item-title {
  text-align: left;
}
.cid-tZLSWom0or .item-subtitle {
  text-align: left;
}
.cid-tH6XIelFbT {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tH6XIelFbT img,
.cid-tH6XIelFbT .item-img {
  width: 100%;
}
.cid-tH6XIelFbT .item:focus,
.cid-tH6XIelFbT span:focus {
  outline: none;
}
.cid-tH6XIelFbT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tH6XIelFbT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tH6XIelFbT .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tH6XIelFbT .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tH6XIelFbT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tH6XIelFbT .mbr-section-title {
  color: #232323;
}
.cid-tH6XIelFbT .mbr-text,
.cid-tH6XIelFbT .mbr-section-btn {
  text-align: left;
}
.cid-tH6XIelFbT .item-title {
  text-align: left;
}
.cid-tH6XIelFbT .item-subtitle {
  text-align: left;
}
.cid-tCECDAEpm7 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tCECDAEpm7 img,
.cid-tCECDAEpm7 .item-img {
  width: 100%;
}
.cid-tCECDAEpm7 .item:focus,
.cid-tCECDAEpm7 span:focus {
  outline: none;
}
.cid-tCECDAEpm7 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tCECDAEpm7 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tCECDAEpm7 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tCECDAEpm7 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tCECDAEpm7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tCECDAEpm7 .mbr-section-title {
  color: #232323;
}
.cid-tCECDAEpm7 .mbr-text,
.cid-tCECDAEpm7 .mbr-section-btn {
  text-align: left;
}
.cid-tCECDAEpm7 .item-title {
  text-align: left;
}
.cid-tCECDAEpm7 .item-subtitle {
  text-align: left;
}
.cid-tvoFb0hETb {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tvoFb0hETb img,
.cid-tvoFb0hETb .item-img {
  width: 100%;
}
.cid-tvoFb0hETb .item:focus,
.cid-tvoFb0hETb span:focus {
  outline: none;
}
.cid-tvoFb0hETb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvoFb0hETb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvoFb0hETb .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvoFb0hETb .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvoFb0hETb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvoFb0hETb .mbr-section-title {
  color: #232323;
}
.cid-tvoFb0hETb .mbr-text,
.cid-tvoFb0hETb .mbr-section-btn {
  text-align: left;
}
.cid-tvoFb0hETb .item-title {
  text-align: left;
}
.cid-tvoFb0hETb .item-subtitle {
  text-align: left;
}
.cid-tvoFboeEN3 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tvoFboeEN3 img,
.cid-tvoFboeEN3 .item-img {
  width: 100%;
}
.cid-tvoFboeEN3 .item:focus,
.cid-tvoFboeEN3 span:focus {
  outline: none;
}
.cid-tvoFboeEN3 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvoFboeEN3 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvoFboeEN3 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvoFboeEN3 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvoFboeEN3 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvoFboeEN3 .mbr-section-title {
  color: #232323;
}
.cid-tvoFboeEN3 .mbr-text,
.cid-tvoFboeEN3 .mbr-section-btn {
  text-align: left;
}
.cid-tvoFboeEN3 .item-title {
  text-align: left;
}
.cid-tvoFboeEN3 .item-subtitle {
  text-align: left;
}
.cid-tvoFbXZaGa {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tvoFbXZaGa h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoFbXZaGa p {
  color: #767676;
  text-align: left;
}
.cid-tvoFbXZaGa .card-box {
  padding-top: 2rem;
}
.cid-tvoFbXZaGa .card-wrapper {
  height: 100%;
}
.cid-tvoFbXZaGa P {
  color: #232323;
}
.cid-tvoFdxCtHz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tvoFdxCtHz h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoFdxCtHz p {
  color: #767676;
  text-align: left;
}
.cid-tvoFdxCtHz .card-box {
  padding-top: 2rem;
}
.cid-tvoFdxCtHz .card-wrapper {
  height: 100%;
}
.cid-tvoFdxCtHz P {
  color: #232323;
}
.cid-tvoG3Yzuvb {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tvoG3Yzuvb h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoG3Yzuvb p {
  color: #767676;
  text-align: left;
}
.cid-tvoG3Yzuvb .card-box {
  padding-top: 2rem;
}
.cid-tvoG3Yzuvb .card-wrapper {
  height: 100%;
}
.cid-tvoG3Yzuvb P {
  color: #232323;
}
.cid-twy3tXnMXe {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-twy3tXnMXe img,
.cid-twy3tXnMXe .item-img {
  width: 100%;
}
.cid-twy3tXnMXe .item:focus,
.cid-twy3tXnMXe span:focus {
  outline: none;
}
.cid-twy3tXnMXe .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-twy3tXnMXe .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-twy3tXnMXe .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-twy3tXnMXe .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-twy3tXnMXe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-twy3tXnMXe .mbr-section-title {
  color: #232323;
}
.cid-twy3tXnMXe .mbr-text,
.cid-twy3tXnMXe .mbr-section-btn {
  text-align: left;
}
.cid-twy3tXnMXe .item-title {
  text-align: left;
}
.cid-twy3tXnMXe .item-subtitle {
  text-align: left;
}
.cid-tw3avFbLJR {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tw3avFbLJR img,
.cid-tw3avFbLJR .item-img {
  width: 100%;
}
.cid-tw3avFbLJR .item:focus,
.cid-tw3avFbLJR span:focus {
  outline: none;
}
.cid-tw3avFbLJR .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tw3avFbLJR .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tw3avFbLJR .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tw3avFbLJR .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tw3avFbLJR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tw3avFbLJR .mbr-section-title {
  color: #232323;
}
.cid-tw3avFbLJR .mbr-text,
.cid-tw3avFbLJR .mbr-section-btn {
  text-align: left;
}
.cid-tw3avFbLJR .item-title {
  text-align: left;
}
.cid-tw3avFbLJR .item-subtitle {
  text-align: left;
}
.cid-tvoIvVkBa8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoIvVkBa8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoIvVkBa8 p {
  color: #767676;
  text-align: left;
}
.cid-tvoIvVkBa8 .card-box {
  padding-top: 2rem;
}
.cid-tvoIvVkBa8 .card-wrapper {
  height: 100%;
}
.cid-tvoIvVkBa8 P {
  color: #232323;
}
.cid-tvoIwxHjmd {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoIwxHjmd h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoIwxHjmd p {
  color: #767676;
  text-align: left;
}
.cid-tvoIwxHjmd .card-box {
  padding-top: 2rem;
}
.cid-tvoIwxHjmd .card-wrapper {
  height: 100%;
}
.cid-tvoIwxHjmd P {
  color: #232323;
}
.cid-tvoIx8F2ao {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoIx8F2ao h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoIx8F2ao p {
  color: #767676;
  text-align: left;
}
.cid-tvoIx8F2ao .card-box {
  padding-top: 2rem;
}
.cid-tvoIx8F2ao .card-wrapper {
  height: 100%;
}
.cid-tvoIx8F2ao P {
  color: #232323;
}
.cid-tvoIxXVTlD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoIxXVTlD h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoIxXVTlD p {
  color: #767676;
  text-align: left;
}
.cid-tvoIxXVTlD .card-box {
  padding-top: 2rem;
}
.cid-tvoIxXVTlD .card-wrapper {
  height: 100%;
}
.cid-tvoIxXVTlD P {
  color: #232323;
}
.cid-tvoIyA5trC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoIyA5trC h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoIyA5trC p {
  color: #767676;
  text-align: left;
}
.cid-tvoIyA5trC .card-box {
  padding-top: 2rem;
}
.cid-tvoIyA5trC .card-wrapper {
  height: 100%;
}
.cid-tvoIyA5trC P {
  color: #232323;
}
.cid-tvoIzfp6oq {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoIzfp6oq h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoIzfp6oq p {
  color: #767676;
  text-align: left;
}
.cid-tvoIzfp6oq .card-box {
  padding-top: 2rem;
}
.cid-tvoIzfp6oq .card-wrapper {
  height: 100%;
}
.cid-tvoIzfp6oq P {
  color: #232323;
}
.cid-tvoIzWaYli {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoIzWaYli h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoIzWaYli p {
  color: #767676;
  text-align: left;
}
.cid-tvoIzWaYli .card-box {
  padding-top: 2rem;
}
.cid-tvoIzWaYli .card-wrapper {
  height: 100%;
}
.cid-tvoIzWaYli P {
  color: #232323;
}
.cid-tvoIAKEaIK {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoIAKEaIK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoIAKEaIK p {
  color: #767676;
  text-align: left;
}
.cid-tvoIAKEaIK .card-box {
  padding-top: 2rem;
}
.cid-tvoIAKEaIK .card-wrapper {
  height: 100%;
}
.cid-tvoIAKEaIK P {
  color: #232323;
}
.cid-tvoIBt6HR6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoIBt6HR6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoIBt6HR6 p {
  color: #767676;
  text-align: left;
}
.cid-tvoIBt6HR6 .card-box {
  padding-top: 2rem;
}
.cid-tvoIBt6HR6 .card-wrapper {
  height: 100%;
}
.cid-tvoIBt6HR6 P {
  color: #232323;
}
.cid-tvoID0mdHx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoID0mdHx h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoID0mdHx p {
  color: #767676;
  text-align: left;
}
.cid-tvoID0mdHx .card-box {
  padding-top: 2rem;
}
.cid-tvoID0mdHx .card-wrapper {
  height: 100%;
}
.cid-tvoID0mdHx P {
  color: #232323;
}
.cid-tvoIE011ht {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoIE011ht h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoIE011ht p {
  color: #767676;
  text-align: left;
}
.cid-tvoIE011ht .card-box {
  padding-top: 2rem;
}
.cid-tvoIE011ht .card-wrapper {
  height: 100%;
}
.cid-tvoIE011ht P {
  color: #232323;
}
.cid-tvoIF2UQvs {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoIF2UQvs h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoIF2UQvs p {
  color: #767676;
  text-align: left;
}
.cid-tvoIF2UQvs .card-box {
  padding-top: 2rem;
}
.cid-tvoIF2UQvs .card-wrapper {
  height: 100%;
}
.cid-tvoIF2UQvs P {
  color: #232323;
}
.cid-tvoIFO6E4e {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoIFO6E4e h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoIFO6E4e p {
  color: #767676;
  text-align: left;
}
.cid-tvoIFO6E4e .card-box {
  padding-top: 2rem;
}
.cid-tvoIFO6E4e .card-wrapper {
  height: 100%;
}
.cid-tvoIFO6E4e P {
  color: #232323;
}
.cid-tvoIGwYTr1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoIGwYTr1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoIGwYTr1 p {
  color: #767676;
  text-align: left;
}
.cid-tvoIGwYTr1 .card-box {
  padding-top: 2rem;
}
.cid-tvoIGwYTr1 .card-wrapper {
  height: 100%;
}
.cid-tvoIGwYTr1 P {
  color: #232323;
}
.cid-tvoIHtMEtg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoIHtMEtg h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoIHtMEtg p {
  color: #767676;
  text-align: left;
}
.cid-tvoIHtMEtg .card-box {
  padding-top: 2rem;
}
.cid-tvoIHtMEtg .card-wrapper {
  height: 100%;
}
.cid-tvoIHtMEtg P {
  color: #232323;
}
.cid-tvoIIqfwWT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoIIqfwWT h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoIIqfwWT p {
  color: #767676;
  text-align: left;
}
.cid-tvoIIqfwWT .card-box {
  padding-top: 2rem;
}
.cid-tvoIIqfwWT .card-wrapper {
  height: 100%;
}
.cid-tvoIIqfwWT P {
  color: #232323;
}
.cid-tvoKPFOEEN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoKPFOEEN h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoKPFOEEN p {
  color: #767676;
  text-align: left;
}
.cid-tvoKPFOEEN .card-box {
  padding-top: 2rem;
}
.cid-tvoKPFOEEN .card-wrapper {
  height: 100%;
}
.cid-tvoKPFOEEN P {
  color: #232323;
}
.cid-tvoKQWxdjL {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoKQWxdjL h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoKQWxdjL p {
  color: #767676;
  text-align: left;
}
.cid-tvoKQWxdjL .card-box {
  padding-top: 2rem;
}
.cid-tvoKQWxdjL .card-wrapper {
  height: 100%;
}
.cid-tvoKQWxdjL P {
  color: #232323;
}
.cid-tvoKTKd3IP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoKTKd3IP h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoKTKd3IP p {
  color: #767676;
  text-align: left;
}
.cid-tvoKTKd3IP .card-box {
  padding-top: 2rem;
}
.cid-tvoKTKd3IP .card-wrapper {
  height: 100%;
}
.cid-tvoKTKd3IP P {
  color: #232323;
}
.cid-tvoKWlK6pW {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoKWlK6pW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoKWlK6pW p {
  color: #767676;
  text-align: left;
}
.cid-tvoKWlK6pW .card-box {
  padding-top: 2rem;
}
.cid-tvoKWlK6pW .card-wrapper {
  height: 100%;
}
.cid-tvoKWlK6pW P {
  color: #232323;
}
.cid-tvoKYl9Dlo {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoKYl9Dlo h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoKYl9Dlo p {
  color: #767676;
  text-align: left;
}
.cid-tvoKYl9Dlo .card-box {
  padding-top: 2rem;
}
.cid-tvoKYl9Dlo .card-wrapper {
  height: 100%;
}
.cid-tvoKYl9Dlo P {
  color: #232323;
}
.cid-tvoL1lhkmF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoL1lhkmF h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoL1lhkmF p {
  color: #767676;
  text-align: left;
}
.cid-tvoL1lhkmF .card-box {
  padding-top: 2rem;
}
.cid-tvoL1lhkmF .card-wrapper {
  height: 100%;
}
.cid-tvoL1lhkmF P {
  color: #232323;
}
.cid-tvoL3kbfwN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoL3kbfwN h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoL3kbfwN p {
  color: #767676;
  text-align: left;
}
.cid-tvoL3kbfwN .card-box {
  padding-top: 2rem;
}
.cid-tvoL3kbfwN .card-wrapper {
  height: 100%;
}
.cid-tvoL3kbfwN P {
  color: #232323;
}
.cid-tvoL555TwQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoL555TwQ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoL555TwQ p {
  color: #767676;
  text-align: left;
}
.cid-tvoL555TwQ .card-box {
  padding-top: 2rem;
}
.cid-tvoL555TwQ .card-wrapper {
  height: 100%;
}
.cid-tvoL555TwQ P {
  color: #232323;
}
.cid-tvoL6SmfH2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoL6SmfH2 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoL6SmfH2 p {
  color: #767676;
  text-align: left;
}
.cid-tvoL6SmfH2 .card-box {
  padding-top: 2rem;
}
.cid-tvoL6SmfH2 .card-wrapper {
  height: 100%;
}
.cid-tvoL6SmfH2 P {
  color: #232323;
}
.cid-tvoL9PoMjt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoL9PoMjt h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoL9PoMjt p {
  color: #767676;
  text-align: left;
}
.cid-tvoL9PoMjt .card-box {
  padding-top: 2rem;
}
.cid-tvoL9PoMjt .card-wrapper {
  height: 100%;
}
.cid-tvoL9PoMjt P {
  color: #232323;
}
.cid-tvoLc4xuEz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoLc4xuEz h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoLc4xuEz p {
  color: #767676;
  text-align: left;
}
.cid-tvoLc4xuEz .card-box {
  padding-top: 2rem;
}
.cid-tvoLc4xuEz .card-wrapper {
  height: 100%;
}
.cid-tvoLc4xuEz P {
  color: #232323;
}
.cid-tvoLeb15bF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoLeb15bF h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoLeb15bF p {
  color: #767676;
  text-align: left;
}
.cid-tvoLeb15bF .card-box {
  padding-top: 2rem;
}
.cid-tvoLeb15bF .card-wrapper {
  height: 100%;
}
.cid-tvoLeb15bF P {
  color: #232323;
}
.cid-tvoNF9oBII {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoNF9oBII h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoNF9oBII p {
  color: #767676;
  text-align: left;
}
.cid-tvoNF9oBII .card-box {
  padding-top: 2rem;
}
.cid-tvoNF9oBII .card-wrapper {
  height: 100%;
}
.cid-tvoNF9oBII P {
  color: #232323;
}
.cid-urAuBEOZmT {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #155ddf;
}
.cid-urAuBEOZmT .mbr-fallback-image.disabled {
  display: none;
}
.cid-urAuBEOZmT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-urAuBEOZmT .mbr-text,
.cid-urAuBEOZmT .mbr-section-btn {
  color: #232323;
}
.cid-urAuBEOZmT .card-title,
.cid-urAuBEOZmT .card-box {
  color: #ffffff;
}
.cid-urAuBEOZmT .mbr-text,
.cid-urAuBEOZmT .link-wrap {
  color: #ffffff;
}
.cid-uRiA9hfUDl {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRiA9hfUDl img,
.cid-uRiA9hfUDl .item-img {
  width: 100%;
}
.cid-uRiA9hfUDl .item:focus,
.cid-uRiA9hfUDl span:focus {
  outline: none;
}
.cid-uRiA9hfUDl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uRiA9hfUDl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRiA9hfUDl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRiA9hfUDl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRiA9hfUDl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRiA9hfUDl .mbr-section-title {
  color: #232323;
}
.cid-uRiA9hfUDl .mbr-text,
.cid-uRiA9hfUDl .mbr-section-btn {
  text-align: left;
}
.cid-uRiA9hfUDl .item-title {
  text-align: left;
}
.cid-uRiA9hfUDl .item-subtitle {
  text-align: left;
}
.cid-uLROT9ixrC {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLROT9ixrC img,
.cid-uLROT9ixrC .item-img {
  width: 100%;
}
.cid-uLROT9ixrC .item:focus,
.cid-uLROT9ixrC span:focus {
  outline: none;
}
.cid-uLROT9ixrC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLROT9ixrC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLROT9ixrC .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLROT9ixrC .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLROT9ixrC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLROT9ixrC .mbr-section-title {
  color: #232323;
}
.cid-uLROT9ixrC .mbr-text,
.cid-uLROT9ixrC .mbr-section-btn {
  text-align: left;
}
.cid-uLROT9ixrC .item-title {
  text-align: left;
}
.cid-uLROT9ixrC .item-subtitle {
  text-align: left;
}
.cid-uAeVVb1RBE {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uAeVVb1RBE img,
.cid-uAeVVb1RBE .item-img {
  width: 100%;
}
.cid-uAeVVb1RBE .item:focus,
.cid-uAeVVb1RBE span:focus {
  outline: none;
}
.cid-uAeVVb1RBE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uAeVVb1RBE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uAeVVb1RBE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uAeVVb1RBE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uAeVVb1RBE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uAeVVb1RBE .mbr-section-title {
  color: #232323;
}
.cid-uAeVVb1RBE .mbr-text,
.cid-uAeVVb1RBE .mbr-section-btn {
  text-align: left;
}
.cid-uAeVVb1RBE .item-title {
  text-align: left;
}
.cid-uAeVVb1RBE .item-subtitle {
  text-align: left;
}
.cid-urAu4TpLIM {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-urAu4TpLIM img,
.cid-urAu4TpLIM .item-img {
  width: 100%;
}
.cid-urAu4TpLIM .item:focus,
.cid-urAu4TpLIM span:focus {
  outline: none;
}
.cid-urAu4TpLIM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-urAu4TpLIM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-urAu4TpLIM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-urAu4TpLIM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-urAu4TpLIM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-urAu4TpLIM .mbr-section-title {
  color: #232323;
}
.cid-urAu4TpLIM .mbr-text,
.cid-urAu4TpLIM .mbr-section-btn {
  text-align: left;
}
.cid-urAu4TpLIM .item-title {
  text-align: left;
}
.cid-urAu4TpLIM .item-subtitle {
  text-align: left;
}
.cid-uiPvaS9Dwh {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uiPvaS9Dwh img,
.cid-uiPvaS9Dwh .item-img {
  width: 100%;
}
.cid-uiPvaS9Dwh .item:focus,
.cid-uiPvaS9Dwh span:focus {
  outline: none;
}
.cid-uiPvaS9Dwh .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uiPvaS9Dwh .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uiPvaS9Dwh .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uiPvaS9Dwh .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uiPvaS9Dwh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uiPvaS9Dwh .mbr-section-title {
  color: #232323;
}
.cid-uiPvaS9Dwh .mbr-text,
.cid-uiPvaS9Dwh .mbr-section-btn {
  text-align: left;
}
.cid-uiPvaS9Dwh .item-title {
  text-align: left;
}
.cid-uiPvaS9Dwh .item-subtitle {
  text-align: left;
}
.cid-uaMU1x7pan {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uaMU1x7pan img,
.cid-uaMU1x7pan .item-img {
  width: 100%;
}
.cid-uaMU1x7pan .item:focus,
.cid-uaMU1x7pan span:focus {
  outline: none;
}
.cid-uaMU1x7pan .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uaMU1x7pan .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uaMU1x7pan .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaMU1x7pan .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uaMU1x7pan .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uaMU1x7pan .mbr-section-title {
  color: #232323;
}
.cid-uaMU1x7pan .mbr-text,
.cid-uaMU1x7pan .mbr-section-btn {
  text-align: left;
}
.cid-uaMU1x7pan .item-title {
  text-align: left;
}
.cid-uaMU1x7pan .item-subtitle {
  text-align: left;
}
.cid-u1ZU7ISw02 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u1ZU7ISw02 img,
.cid-u1ZU7ISw02 .item-img {
  width: 100%;
}
.cid-u1ZU7ISw02 .item:focus,
.cid-u1ZU7ISw02 span:focus {
  outline: none;
}
.cid-u1ZU7ISw02 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u1ZU7ISw02 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u1ZU7ISw02 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u1ZU7ISw02 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u1ZU7ISw02 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u1ZU7ISw02 .mbr-section-title {
  color: #232323;
}
.cid-u1ZU7ISw02 .mbr-text,
.cid-u1ZU7ISw02 .mbr-section-btn {
  text-align: left;
}
.cid-u1ZU7ISw02 .item-title {
  text-align: left;
}
.cid-u1ZU7ISw02 .item-subtitle {
  text-align: left;
}
.cid-tNT44cDEFc {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tNT44cDEFc img,
.cid-tNT44cDEFc .item-img {
  width: 100%;
}
.cid-tNT44cDEFc .item:focus,
.cid-tNT44cDEFc span:focus {
  outline: none;
}
.cid-tNT44cDEFc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tNT44cDEFc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tNT44cDEFc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNT44cDEFc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tNT44cDEFc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tNT44cDEFc .mbr-section-title {
  color: #232323;
}
.cid-tNT44cDEFc .mbr-text,
.cid-tNT44cDEFc .mbr-section-btn {
  text-align: left;
}
.cid-tNT44cDEFc .item-title {
  text-align: left;
}
.cid-tNT44cDEFc .item-subtitle {
  text-align: left;
}
.cid-tF6yEOEFrf {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tF6yEOEFrf img,
.cid-tF6yEOEFrf .item-img {
  width: 100%;
}
.cid-tF6yEOEFrf .item:focus,
.cid-tF6yEOEFrf span:focus {
  outline: none;
}
.cid-tF6yEOEFrf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tF6yEOEFrf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tF6yEOEFrf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tF6yEOEFrf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tF6yEOEFrf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tF6yEOEFrf .mbr-section-title {
  color: #232323;
}
.cid-tF6yEOEFrf .mbr-text,
.cid-tF6yEOEFrf .mbr-section-btn {
  text-align: left;
}
.cid-tF6yEOEFrf .item-title {
  text-align: left;
}
.cid-tF6yEOEFrf .item-subtitle {
  text-align: left;
}
.cid-tzkBrphFHi {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tzkBrphFHi img,
.cid-tzkBrphFHi .item-img {
  width: 100%;
}
.cid-tzkBrphFHi .item:focus,
.cid-tzkBrphFHi span:focus {
  outline: none;
}
.cid-tzkBrphFHi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tzkBrphFHi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tzkBrphFHi .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tzkBrphFHi .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tzkBrphFHi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tzkBrphFHi .mbr-section-title {
  color: #232323;
}
.cid-tzkBrphFHi .mbr-text,
.cid-tzkBrphFHi .mbr-section-btn {
  text-align: left;
}
.cid-tzkBrphFHi .item-title {
  text-align: left;
}
.cid-tzkBrphFHi .item-subtitle {
  text-align: left;
}
.cid-twvDB4Oknf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-twvDB4Oknf h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-twvDB4Oknf p {
  color: #767676;
  text-align: left;
}
.cid-twvDB4Oknf .card-box {
  padding-top: 2rem;
}
.cid-twvDB4Oknf .card-wrapper {
  height: 100%;
}
.cid-twvDB4Oknf P {
  color: #232323;
}
.cid-tvoQwNQg6S {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQwNQg6S h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQwNQg6S p {
  color: #767676;
  text-align: left;
}
.cid-tvoQwNQg6S .card-box {
  padding-top: 2rem;
}
.cid-tvoQwNQg6S .card-wrapper {
  height: 100%;
}
.cid-tvoQwNQg6S P {
  color: #232323;
}
.cid-tvoQykm3YK {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQykm3YK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQykm3YK p {
  color: #767676;
  text-align: left;
}
.cid-tvoQykm3YK .card-box {
  padding-top: 2rem;
}
.cid-tvoQykm3YK .card-wrapper {
  height: 100%;
}
.cid-tvoQykm3YK P {
  color: #232323;
}
.cid-tvoQzyf2a4 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQzyf2a4 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQzyf2a4 p {
  color: #767676;
  text-align: left;
}
.cid-tvoQzyf2a4 .card-box {
  padding-top: 2rem;
}
.cid-tvoQzyf2a4 .card-wrapper {
  height: 100%;
}
.cid-tvoQzyf2a4 P {
  color: #232323;
}
.cid-tvoQAdD795 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQAdD795 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQAdD795 p {
  color: #767676;
  text-align: left;
}
.cid-tvoQAdD795 .card-box {
  padding-top: 2rem;
}
.cid-tvoQAdD795 .card-wrapper {
  height: 100%;
}
.cid-tvoQAdD795 P {
  color: #232323;
}
.cid-tvoQB60aJN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQB60aJN h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQB60aJN p {
  color: #767676;
  text-align: left;
}
.cid-tvoQB60aJN .card-box {
  padding-top: 2rem;
}
.cid-tvoQB60aJN .card-wrapper {
  height: 100%;
}
.cid-tvoQB60aJN P {
  color: #232323;
}
.cid-tvoQBXYeQD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQBXYeQD h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQBXYeQD p {
  color: #767676;
  text-align: left;
}
.cid-tvoQBXYeQD .card-box {
  padding-top: 2rem;
}
.cid-tvoQBXYeQD .card-wrapper {
  height: 100%;
}
.cid-tvoQBXYeQD P {
  color: #232323;
}
.cid-tvoQDc9c4b {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQDc9c4b h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQDc9c4b p {
  color: #767676;
  text-align: left;
}
.cid-tvoQDc9c4b .card-box {
  padding-top: 2rem;
}
.cid-tvoQDc9c4b .card-wrapper {
  height: 100%;
}
.cid-tvoQDc9c4b P {
  color: #232323;
}
.cid-tvoQDXqcjz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQDXqcjz h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQDXqcjz p {
  color: #767676;
  text-align: left;
}
.cid-tvoQDXqcjz .card-box {
  padding-top: 2rem;
}
.cid-tvoQDXqcjz .card-wrapper {
  height: 100%;
}
.cid-tvoQDXqcjz P {
  color: #232323;
}
.cid-tvoQEP7XWc {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQEP7XWc h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQEP7XWc p {
  color: #767676;
  text-align: left;
}
.cid-tvoQEP7XWc .card-box {
  padding-top: 2rem;
}
.cid-tvoQEP7XWc .card-wrapper {
  height: 100%;
}
.cid-tvoQEP7XWc P {
  color: #232323;
}
.cid-tvoQGMhj81 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQGMhj81 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQGMhj81 p {
  color: #767676;
  text-align: left;
}
.cid-tvoQGMhj81 .card-box {
  padding-top: 2rem;
}
.cid-tvoQGMhj81 .card-wrapper {
  height: 100%;
}
.cid-tvoQGMhj81 P {
  color: #232323;
}
.cid-tvoQIh6U5M {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQIh6U5M h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQIh6U5M p {
  color: #767676;
  text-align: left;
}
.cid-tvoQIh6U5M .card-box {
  padding-top: 2rem;
}
.cid-tvoQIh6U5M .card-wrapper {
  height: 100%;
}
.cid-tvoQIh6U5M P {
  color: #232323;
}
.cid-tvoQJaGYzT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQJaGYzT h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQJaGYzT p {
  color: #767676;
  text-align: left;
}
.cid-tvoQJaGYzT .card-box {
  padding-top: 2rem;
}
.cid-tvoQJaGYzT .card-wrapper {
  height: 100%;
}
.cid-tvoQJaGYzT P {
  color: #232323;
}
.cid-tvoQJSnOhV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQJSnOhV h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQJSnOhV p {
  color: #767676;
  text-align: left;
}
.cid-tvoQJSnOhV .card-box {
  padding-top: 2rem;
}
.cid-tvoQJSnOhV .card-wrapper {
  height: 100%;
}
.cid-tvoQJSnOhV P {
  color: #232323;
}
.cid-tvoQKCyqBU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQKCyqBU h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQKCyqBU p {
  color: #767676;
  text-align: left;
}
.cid-tvoQKCyqBU .card-box {
  padding-top: 2rem;
}
.cid-tvoQKCyqBU .card-wrapper {
  height: 100%;
}
.cid-tvoQKCyqBU P {
  color: #232323;
}
.cid-tvoQLPbLrh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQLPbLrh h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQLPbLrh p {
  color: #767676;
  text-align: left;
}
.cid-tvoQLPbLrh .card-box {
  padding-top: 2rem;
}
.cid-tvoQLPbLrh .card-wrapper {
  height: 100%;
}
.cid-tvoQLPbLrh P {
  color: #232323;
}
.cid-tvoQMlIJdB {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQMlIJdB h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQMlIJdB p {
  color: #767676;
  text-align: left;
}
.cid-tvoQMlIJdB .card-box {
  padding-top: 2rem;
}
.cid-tvoQMlIJdB .card-wrapper {
  height: 100%;
}
.cid-tvoQMlIJdB P {
  color: #232323;
}
.cid-tvoQNba8az {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQNba8az h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQNba8az p {
  color: #767676;
  text-align: left;
}
.cid-tvoQNba8az .card-box {
  padding-top: 2rem;
}
.cid-tvoQNba8az .card-wrapper {
  height: 100%;
}
.cid-tvoQNba8az P {
  color: #232323;
}
.cid-tvoQO95Rqk {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQO95Rqk h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQO95Rqk p {
  color: #767676;
  text-align: left;
}
.cid-tvoQO95Rqk .card-box {
  padding-top: 2rem;
}
.cid-tvoQO95Rqk .card-wrapper {
  height: 100%;
}
.cid-tvoQO95Rqk P {
  color: #232323;
}
.cid-tvoQOUQws9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQOUQws9 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQOUQws9 p {
  color: #767676;
  text-align: left;
}
.cid-tvoQOUQws9 .card-box {
  padding-top: 2rem;
}
.cid-tvoQOUQws9 .card-wrapper {
  height: 100%;
}
.cid-tvoQOUQws9 P {
  color: #232323;
}
.cid-tvoQPH22SE {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQPH22SE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQPH22SE p {
  color: #767676;
  text-align: left;
}
.cid-tvoQPH22SE .card-box {
  padding-top: 2rem;
}
.cid-tvoQPH22SE .card-wrapper {
  height: 100%;
}
.cid-tvoQPH22SE P {
  color: #232323;
}
.cid-tvoQQpeMHF {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQQpeMHF h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQQpeMHF p {
  color: #767676;
  text-align: left;
}
.cid-tvoQQpeMHF .card-box {
  padding-top: 2rem;
}
.cid-tvoQQpeMHF .card-wrapper {
  height: 100%;
}
.cid-tvoQQpeMHF P {
  color: #232323;
}
.cid-tvoQR86lUG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoQR86lUG h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQR86lUG p {
  color: #767676;
  text-align: left;
}
.cid-tvoQR86lUG .card-box {
  padding-top: 2rem;
}
.cid-tvoQR86lUG .card-wrapper {
  height: 100%;
}
.cid-tvoQR86lUG P {
  color: #232323;
}
.cid-tvoQS3rL8P {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-tvoQS3rL8P .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvoQS3rL8P h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQS3rL8P p {
  color: #767676;
  text-align: left;
}
.cid-tvoQS3rL8P .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvoQS3rL8P .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvoQS3rL8P .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvoQS3rL8P P {
  color: #232323;
}
.cid-tvoQTjDQLF {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-tvoQTjDQLF .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvoQTjDQLF h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoQTjDQLF p {
  color: #767676;
  text-align: left;
}
.cid-tvoQTjDQLF .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvoQTjDQLF .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvoQTjDQLF .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvoQTjDQLF P {
  color: #232323;
}
.cid-tvoXJSuyyf {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #be2525;
}
.cid-tvoXJSuyyf .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvoXJSuyyf .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-uOkissuh7g {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #65c6d4;
}
.cid-uOkissuh7g img,
.cid-uOkissuh7g .item-img {
  width: 100%;
}
.cid-uOkissuh7g .item:focus,
.cid-uOkissuh7g span:focus {
  outline: none;
}
.cid-uOkissuh7g .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOkissuh7g .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOkissuh7g .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOkissuh7g .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOkissuh7g .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOkissuh7g .mbr-section-title {
  color: #232323;
}
.cid-uOkissuh7g .mbr-text,
.cid-uOkissuh7g .mbr-section-btn {
  text-align: left;
}
.cid-uOkissuh7g .item-title {
  text-align: left;
}
.cid-uOkissuh7g .item-subtitle {
  text-align: left;
}
.cid-uFKY1gtUJY {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uFKY1gtUJY img,
.cid-uFKY1gtUJY .item-img {
  width: 100%;
}
.cid-uFKY1gtUJY .item:focus,
.cid-uFKY1gtUJY span:focus {
  outline: none;
}
.cid-uFKY1gtUJY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uFKY1gtUJY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uFKY1gtUJY .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFKY1gtUJY .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uFKY1gtUJY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uFKY1gtUJY .mbr-section-title {
  color: #232323;
}
.cid-uFKY1gtUJY .mbr-text,
.cid-uFKY1gtUJY .mbr-section-btn {
  text-align: left;
}
.cid-uFKY1gtUJY .item-title {
  text-align: left;
}
.cid-uFKY1gtUJY .item-subtitle {
  text-align: left;
}
.cid-ux7tOmy51d {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ux7tOmy51d img,
.cid-ux7tOmy51d .item-img {
  width: 100%;
}
.cid-ux7tOmy51d .item:focus,
.cid-ux7tOmy51d span:focus {
  outline: none;
}
.cid-ux7tOmy51d .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ux7tOmy51d .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ux7tOmy51d .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ux7tOmy51d .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ux7tOmy51d .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ux7tOmy51d .mbr-section-title {
  color: #232323;
}
.cid-ux7tOmy51d .mbr-text,
.cid-ux7tOmy51d .mbr-section-btn {
  text-align: left;
}
.cid-ux7tOmy51d .item-title {
  text-align: left;
}
.cid-ux7tOmy51d .item-subtitle {
  text-align: left;
}
.cid-uoMxVpCtYt {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uoMxVpCtYt img,
.cid-uoMxVpCtYt .item-img {
  width: 100%;
}
.cid-uoMxVpCtYt .item:focus,
.cid-uoMxVpCtYt span:focus {
  outline: none;
}
.cid-uoMxVpCtYt .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uoMxVpCtYt .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uoMxVpCtYt .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uoMxVpCtYt .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uoMxVpCtYt .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uoMxVpCtYt .mbr-section-title {
  color: #232323;
}
.cid-uoMxVpCtYt .mbr-text,
.cid-uoMxVpCtYt .mbr-section-btn {
  text-align: left;
}
.cid-uoMxVpCtYt .item-title {
  text-align: left;
}
.cid-uoMxVpCtYt .item-subtitle {
  text-align: left;
}
.cid-ugqymooMag {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ugqymooMag img,
.cid-ugqymooMag .item-img {
  width: 100%;
}
.cid-ugqymooMag .item:focus,
.cid-ugqymooMag span:focus {
  outline: none;
}
.cid-ugqymooMag .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ugqymooMag .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ugqymooMag .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ugqymooMag .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ugqymooMag .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugqymooMag .mbr-section-title {
  color: #232323;
}
.cid-ugqymooMag .mbr-text,
.cid-ugqymooMag .mbr-section-btn {
  text-align: left;
}
.cid-ugqymooMag .item-title {
  text-align: left;
}
.cid-ugqymooMag .item-subtitle {
  text-align: left;
}
.cid-u7QAF2Qs2E {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u7QAF2Qs2E img,
.cid-u7QAF2Qs2E .item-img {
  width: 100%;
}
.cid-u7QAF2Qs2E .item:focus,
.cid-u7QAF2Qs2E span:focus {
  outline: none;
}
.cid-u7QAF2Qs2E .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u7QAF2Qs2E .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u7QAF2Qs2E .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u7QAF2Qs2E .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u7QAF2Qs2E .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u7QAF2Qs2E .mbr-section-title {
  color: #232323;
}
.cid-u7QAF2Qs2E .mbr-text,
.cid-u7QAF2Qs2E .mbr-section-btn {
  text-align: left;
}
.cid-u7QAF2Qs2E .item-title {
  text-align: left;
}
.cid-u7QAF2Qs2E .item-subtitle {
  text-align: left;
}
.cid-tWcaD0liWu {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWcaD0liWu img,
.cid-tWcaD0liWu .item-img {
  width: 100%;
}
.cid-tWcaD0liWu .item:focus,
.cid-tWcaD0liWu span:focus {
  outline: none;
}
.cid-tWcaD0liWu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tWcaD0liWu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tWcaD0liWu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tWcaD0liWu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tWcaD0liWu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tWcaD0liWu .mbr-section-title {
  color: #232323;
}
.cid-tWcaD0liWu .mbr-text,
.cid-tWcaD0liWu .mbr-section-btn {
  text-align: left;
}
.cid-tWcaD0liWu .item-title {
  text-align: left;
}
.cid-tWcaD0liWu .item-subtitle {
  text-align: left;
}
.cid-tNFxPHgUgd {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tNFxPHgUgd img,
.cid-tNFxPHgUgd .item-img {
  width: 100%;
}
.cid-tNFxPHgUgd .item:focus,
.cid-tNFxPHgUgd span:focus {
  outline: none;
}
.cid-tNFxPHgUgd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tNFxPHgUgd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tNFxPHgUgd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNFxPHgUgd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tNFxPHgUgd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tNFxPHgUgd .mbr-section-title {
  color: #232323;
}
.cid-tNFxPHgUgd .mbr-text,
.cid-tNFxPHgUgd .mbr-section-btn {
  text-align: left;
}
.cid-tNFxPHgUgd .item-title {
  text-align: left;
}
.cid-tNFxPHgUgd .item-subtitle {
  text-align: left;
}
.cid-tF6y7DvN7z {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tF6y7DvN7z img,
.cid-tF6y7DvN7z .item-img {
  width: 100%;
}
.cid-tF6y7DvN7z .item:focus,
.cid-tF6y7DvN7z span:focus {
  outline: none;
}
.cid-tF6y7DvN7z .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tF6y7DvN7z .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tF6y7DvN7z .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tF6y7DvN7z .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tF6y7DvN7z .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tF6y7DvN7z .mbr-section-title {
  color: #232323;
}
.cid-tF6y7DvN7z .mbr-text,
.cid-tF6y7DvN7z .mbr-section-btn {
  text-align: left;
}
.cid-tF6y7DvN7z .item-title {
  text-align: left;
}
.cid-tF6y7DvN7z .item-subtitle {
  text-align: left;
}
.cid-tzeSIU7lvx {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tzeSIU7lvx img,
.cid-tzeSIU7lvx .item-img {
  width: 100%;
}
.cid-tzeSIU7lvx .item:focus,
.cid-tzeSIU7lvx span:focus {
  outline: none;
}
.cid-tzeSIU7lvx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tzeSIU7lvx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tzeSIU7lvx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tzeSIU7lvx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tzeSIU7lvx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tzeSIU7lvx .mbr-section-title {
  color: #232323;
}
.cid-tzeSIU7lvx .mbr-text,
.cid-tzeSIU7lvx .mbr-section-btn {
  text-align: left;
}
.cid-tzeSIU7lvx .item-title {
  text-align: left;
}
.cid-tzeSIU7lvx .item-subtitle {
  text-align: left;
}
.cid-tvoXKxKlEr {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoXKxKlEr h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoXKxKlEr p {
  color: #767676;
  text-align: left;
}
.cid-tvoXKxKlEr .card-box {
  padding-top: 2rem;
}
.cid-tvoXKxKlEr .card-wrapper {
  height: 100%;
}
.cid-tvoXKxKlEr P {
  color: #232323;
}
.cid-tvoXL8pCdu {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoXL8pCdu h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoXL8pCdu p {
  color: #767676;
  text-align: left;
}
.cid-tvoXL8pCdu .card-box {
  padding-top: 2rem;
}
.cid-tvoXL8pCdu .card-wrapper {
  height: 100%;
}
.cid-tvoXL8pCdu P {
  color: #232323;
}
.cid-tvoXLvQ78B {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoXLvQ78B h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoXLvQ78B p {
  color: #767676;
  text-align: left;
}
.cid-tvoXLvQ78B .card-box {
  padding-top: 2rem;
}
.cid-tvoXLvQ78B .card-wrapper {
  height: 100%;
}
.cid-tvoXLvQ78B P {
  color: #232323;
}
.cid-tvoXMguAYJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoXMguAYJ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoXMguAYJ p {
  color: #767676;
  text-align: left;
}
.cid-tvoXMguAYJ .card-box {
  padding-top: 2rem;
}
.cid-tvoXMguAYJ .card-wrapper {
  height: 100%;
}
.cid-tvoXMguAYJ P {
  color: #232323;
}
.cid-tvoXN2oQ5T {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoXN2oQ5T h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoXN2oQ5T p {
  color: #767676;
  text-align: left;
}
.cid-tvoXN2oQ5T .card-box {
  padding-top: 2rem;
}
.cid-tvoXN2oQ5T .card-wrapper {
  height: 100%;
}
.cid-tvoXN2oQ5T P {
  color: #232323;
}
.cid-tvoXO4b2lX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoXO4b2lX h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoXO4b2lX p {
  color: #767676;
  text-align: left;
}
.cid-tvoXO4b2lX .card-box {
  padding-top: 2rem;
}
.cid-tvoXO4b2lX .card-wrapper {
  height: 100%;
}
.cid-tvoXO4b2lX P {
  color: #232323;
}
.cid-tvoXPxa35I {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoXPxa35I h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoXPxa35I p {
  color: #767676;
  text-align: left;
}
.cid-tvoXPxa35I .card-box {
  padding-top: 2rem;
}
.cid-tvoXPxa35I .card-wrapper {
  height: 100%;
}
.cid-tvoXPxa35I P {
  color: #232323;
}
.cid-tvoXQFO3P7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoXQFO3P7 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoXQFO3P7 p {
  color: #767676;
  text-align: left;
}
.cid-tvoXQFO3P7 .card-box {
  padding-top: 2rem;
}
.cid-tvoXQFO3P7 .card-wrapper {
  height: 100%;
}
.cid-tvoXQFO3P7 P {
  color: #232323;
}
.cid-tvoXRLRvAE {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoXRLRvAE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoXRLRvAE p {
  color: #767676;
  text-align: left;
}
.cid-tvoXRLRvAE .card-box {
  padding-top: 2rem;
}
.cid-tvoXRLRvAE .card-wrapper {
  height: 100%;
}
.cid-tvoXRLRvAE P {
  color: #232323;
}
.cid-tvoXTt4NF9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoXTt4NF9 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoXTt4NF9 p {
  color: #767676;
  text-align: left;
}
.cid-tvoXTt4NF9 .card-box {
  padding-top: 2rem;
}
.cid-tvoXTt4NF9 .card-wrapper {
  height: 100%;
}
.cid-tvoXTt4NF9 P {
  color: #232323;
}
.cid-tvoXUiSVjr {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoXUiSVjr h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoXUiSVjr p {
  color: #767676;
  text-align: left;
}
.cid-tvoXUiSVjr .card-box {
  padding-top: 2rem;
}
.cid-tvoXUiSVjr .card-wrapper {
  height: 100%;
}
.cid-tvoXUiSVjr P {
  color: #232323;
}
.cid-tvoXV7qOYZ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoXV7qOYZ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoXV7qOYZ p {
  color: #767676;
  text-align: left;
}
.cid-tvoXV7qOYZ .card-box {
  padding-top: 2rem;
}
.cid-tvoXV7qOYZ .card-wrapper {
  height: 100%;
}
.cid-tvoXV7qOYZ P {
  color: #232323;
}
.cid-tvoXW8n1Qx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoXW8n1Qx h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoXW8n1Qx p {
  color: #767676;
  text-align: left;
}
.cid-tvoXW8n1Qx .card-box {
  padding-top: 2rem;
}
.cid-tvoXW8n1Qx .card-wrapper {
  height: 100%;
}
.cid-tvoXW8n1Qx P {
  color: #232323;
}
.cid-tvoXXgGcyU {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoXXgGcyU h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoXXgGcyU p {
  color: #767676;
  text-align: left;
}
.cid-tvoXXgGcyU .card-box {
  padding-top: 2rem;
}
.cid-tvoXXgGcyU .card-wrapper {
  height: 100%;
}
.cid-tvoXXgGcyU P {
  color: #232323;
}
.cid-tvoXY3nOqB {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoXY3nOqB h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoXY3nOqB p {
  color: #767676;
  text-align: left;
}
.cid-tvoXY3nOqB .card-box {
  padding-top: 2rem;
}
.cid-tvoXY3nOqB .card-wrapper {
  height: 100%;
}
.cid-tvoXY3nOqB P {
  color: #232323;
}
.cid-tvoXYNTGB0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoXYNTGB0 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoXYNTGB0 p {
  color: #767676;
  text-align: left;
}
.cid-tvoXYNTGB0 .card-box {
  padding-top: 2rem;
}
.cid-tvoXYNTGB0 .card-wrapper {
  height: 100%;
}
.cid-tvoXYNTGB0 P {
  color: #232323;
}
.cid-tvoXZATr12 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoXZATr12 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoXZATr12 p {
  color: #767676;
  text-align: left;
}
.cid-tvoXZATr12 .card-box {
  padding-top: 2rem;
}
.cid-tvoXZATr12 .card-wrapper {
  height: 100%;
}
.cid-tvoXZATr12 P {
  color: #232323;
}
.cid-tvoY0wz9zh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoY0wz9zh h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoY0wz9zh p {
  color: #767676;
  text-align: left;
}
.cid-tvoY0wz9zh .card-box {
  padding-top: 2rem;
}
.cid-tvoY0wz9zh .card-wrapper {
  height: 100%;
}
.cid-tvoY0wz9zh P {
  color: #232323;
}
.cid-tvoY1qudX6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvoY1qudX6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvoY1qudX6 p {
  color: #767676;
  text-align: left;
}
.cid-tvoY1qudX6 .card-box {
  padding-top: 2rem;
}
.cid-tvoY1qudX6 .card-wrapper {
  height: 100%;
}
.cid-tvoY1qudX6 P {
  color: #232323;
}
.cid-tvoYKFO49n {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #e43f3f;
}
.cid-tvoYKFO49n .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvoYKFO49n .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-tvoYKFO49n .mbr-text,
.cid-tvoYKFO49n .mbr-section-btn {
  color: #ffffff;
}
.cid-tvoYKFO49n .mbr-section-title {
  color: #ffffff;
}
.cid-uLKQTgMcwx {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLKQTgMcwx img,
.cid-uLKQTgMcwx .item-img {
  width: 100%;
}
.cid-uLKQTgMcwx .item:focus,
.cid-uLKQTgMcwx span:focus {
  outline: none;
}
.cid-uLKQTgMcwx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLKQTgMcwx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLKQTgMcwx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLKQTgMcwx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLKQTgMcwx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLKQTgMcwx .mbr-section-title {
  color: #232323;
}
.cid-uLKQTgMcwx .mbr-text,
.cid-uLKQTgMcwx .mbr-section-btn {
  text-align: left;
}
.cid-uLKQTgMcwx .item-title {
  text-align: left;
}
.cid-uLKQTgMcwx .item-subtitle {
  text-align: left;
}
.cid-uCNUmKJZan {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uCNUmKJZan img,
.cid-uCNUmKJZan .item-img {
  width: 100%;
}
.cid-uCNUmKJZan .item:focus,
.cid-uCNUmKJZan span:focus {
  outline: none;
}
.cid-uCNUmKJZan .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uCNUmKJZan .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uCNUmKJZan .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uCNUmKJZan .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uCNUmKJZan .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uCNUmKJZan .mbr-section-title {
  color: #232323;
}
.cid-uCNUmKJZan .mbr-text,
.cid-uCNUmKJZan .mbr-section-btn {
  text-align: left;
}
.cid-uCNUmKJZan .item-title {
  text-align: left;
}
.cid-uCNUmKJZan .item-subtitle {
  text-align: left;
}
.cid-uudbH79iRc {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uudbH79iRc img,
.cid-uudbH79iRc .item-img {
  width: 100%;
}
.cid-uudbH79iRc .item:focus,
.cid-uudbH79iRc span:focus {
  outline: none;
}
.cid-uudbH79iRc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uudbH79iRc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uudbH79iRc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uudbH79iRc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uudbH79iRc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uudbH79iRc .mbr-section-title {
  color: #232323;
}
.cid-uudbH79iRc .mbr-text,
.cid-uudbH79iRc .mbr-section-btn {
  text-align: left;
}
.cid-uudbH79iRc .item-title {
  text-align: left;
}
.cid-uudbH79iRc .item-subtitle {
  text-align: left;
}
.cid-ulOrT3NTSX {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ulOrT3NTSX img,
.cid-ulOrT3NTSX .item-img {
  width: 100%;
}
.cid-ulOrT3NTSX .item:focus,
.cid-ulOrT3NTSX span:focus {
  outline: none;
}
.cid-ulOrT3NTSX .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ulOrT3NTSX .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ulOrT3NTSX .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ulOrT3NTSX .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ulOrT3NTSX .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ulOrT3NTSX .mbr-section-title {
  color: #232323;
}
.cid-ulOrT3NTSX .mbr-text,
.cid-ulOrT3NTSX .mbr-section-btn {
  text-align: left;
}
.cid-ulOrT3NTSX .item-title {
  text-align: left;
}
.cid-ulOrT3NTSX .item-subtitle {
  text-align: left;
}
.cid-udyv8HgLWH {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-udyv8HgLWH img,
.cid-udyv8HgLWH .item-img {
  width: 100%;
}
.cid-udyv8HgLWH .item:focus,
.cid-udyv8HgLWH span:focus {
  outline: none;
}
.cid-udyv8HgLWH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-udyv8HgLWH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-udyv8HgLWH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-udyv8HgLWH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-udyv8HgLWH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-udyv8HgLWH .mbr-section-title {
  color: #232323;
}
.cid-udyv8HgLWH .mbr-text,
.cid-udyv8HgLWH .mbr-section-btn {
  text-align: left;
}
.cid-udyv8HgLWH .item-title {
  text-align: left;
}
.cid-udyv8HgLWH .item-subtitle {
  text-align: left;
}
.cid-u4WoxjFNWs {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u4WoxjFNWs img,
.cid-u4WoxjFNWs .item-img {
  width: 100%;
}
.cid-u4WoxjFNWs .item:focus,
.cid-u4WoxjFNWs span:focus {
  outline: none;
}
.cid-u4WoxjFNWs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4WoxjFNWs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4WoxjFNWs .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4WoxjFNWs .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u4WoxjFNWs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4WoxjFNWs .mbr-section-title {
  color: #232323;
}
.cid-u4WoxjFNWs .mbr-text,
.cid-u4WoxjFNWs .mbr-section-btn {
  text-align: left;
}
.cid-u4WoxjFNWs .item-title {
  text-align: left;
}
.cid-u4WoxjFNWs .item-subtitle {
  text-align: left;
}
.cid-tWca4ptn3J {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWca4ptn3J img,
.cid-tWca4ptn3J .item-img {
  width: 100%;
}
.cid-tWca4ptn3J .item:focus,
.cid-tWca4ptn3J span:focus {
  outline: none;
}
.cid-tWca4ptn3J .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tWca4ptn3J .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tWca4ptn3J .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tWca4ptn3J .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tWca4ptn3J .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tWca4ptn3J .mbr-section-title {
  color: #232323;
}
.cid-tWca4ptn3J .mbr-text,
.cid-tWca4ptn3J .mbr-section-btn {
  text-align: left;
}
.cid-tWca4ptn3J .item-title {
  text-align: left;
}
.cid-tWca4ptn3J .item-subtitle {
  text-align: left;
}
.cid-tNHLYUtomJ {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tNHLYUtomJ img,
.cid-tNHLYUtomJ .item-img {
  width: 100%;
}
.cid-tNHLYUtomJ .item:focus,
.cid-tNHLYUtomJ span:focus {
  outline: none;
}
.cid-tNHLYUtomJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tNHLYUtomJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tNHLYUtomJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNHLYUtomJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tNHLYUtomJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tNHLYUtomJ .mbr-section-title {
  color: #232323;
}
.cid-tNHLYUtomJ .mbr-text,
.cid-tNHLYUtomJ .mbr-section-btn {
  text-align: left;
}
.cid-tNHLYUtomJ .item-title {
  text-align: left;
}
.cid-tNHLYUtomJ .item-subtitle {
  text-align: left;
}
.cid-tF6DYWBdOP {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tF6DYWBdOP img,
.cid-tF6DYWBdOP .item-img {
  width: 100%;
}
.cid-tF6DYWBdOP .item:focus,
.cid-tF6DYWBdOP span:focus {
  outline: none;
}
.cid-tF6DYWBdOP .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tF6DYWBdOP .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tF6DYWBdOP .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tF6DYWBdOP .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tF6DYWBdOP .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tF6DYWBdOP .mbr-section-title {
  color: #232323;
}
.cid-tF6DYWBdOP .mbr-text,
.cid-tF6DYWBdOP .mbr-section-btn {
  text-align: left;
}
.cid-tF6DYWBdOP .item-title {
  text-align: left;
}
.cid-tF6DYWBdOP .item-subtitle {
  text-align: left;
}
.cid-tz9CjoRKny {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tz9CjoRKny img,
.cid-tz9CjoRKny .item-img {
  width: 100%;
}
.cid-tz9CjoRKny .item:focus,
.cid-tz9CjoRKny span:focus {
  outline: none;
}
.cid-tz9CjoRKny .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tz9CjoRKny .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tz9CjoRKny .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tz9CjoRKny .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tz9CjoRKny .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tz9CjoRKny .mbr-section-title {
  color: #232323;
}
.cid-tz9CjoRKny .mbr-text,
.cid-tz9CjoRKny .mbr-section-btn {
  text-align: left;
}
.cid-tz9CjoRKny .item-title {
  text-align: left;
}
.cid-tz9CjoRKny .item-subtitle {
  text-align: left;
}
.cid-tvpfNlr2qN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpfNlr2qN h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfNlr2qN p {
  color: #767676;
  text-align: left;
}
.cid-tvpfNlr2qN .card-box {
  padding-top: 2rem;
}
.cid-tvpfNlr2qN .card-wrapper {
  height: 100%;
}
.cid-tvpfNlr2qN P {
  color: #232323;
}
.cid-tvpgACVt5k {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpgACVt5k h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpgACVt5k p {
  color: #767676;
  text-align: left;
}
.cid-tvpgACVt5k .card-box {
  padding-top: 2rem;
}
.cid-tvpgACVt5k .card-wrapper {
  height: 100%;
}
.cid-tvpgACVt5k P {
  color: #232323;
}
.cid-tvphX6oN9Q {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvphX6oN9Q h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvphX6oN9Q p {
  color: #767676;
  text-align: left;
}
.cid-tvphX6oN9Q .card-box {
  padding-top: 2rem;
}
.cid-tvphX6oN9Q .card-wrapper {
  height: 100%;
}
.cid-tvphX6oN9Q P {
  color: #232323;
}
.cid-tvpffQEAj0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpffQEAj0 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpffQEAj0 p {
  color: #767676;
  text-align: left;
}
.cid-tvpffQEAj0 .card-box {
  padding-top: 2rem;
}
.cid-tvpffQEAj0 .card-wrapper {
  height: 100%;
}
.cid-tvpffQEAj0 P {
  color: #232323;
}
.cid-tvpfgjPEK1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpfgjPEK1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfgjPEK1 p {
  color: #767676;
  text-align: left;
}
.cid-tvpfgjPEK1 .card-box {
  padding-top: 2rem;
}
.cid-tvpfgjPEK1 .card-wrapper {
  height: 100%;
}
.cid-tvpfgjPEK1 P {
  color: #232323;
}
.cid-tvpfhfJlYs {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpfhfJlYs h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfhfJlYs p {
  color: #767676;
  text-align: left;
}
.cid-tvpfhfJlYs .card-box {
  padding-top: 2rem;
}
.cid-tvpfhfJlYs .card-wrapper {
  height: 100%;
}
.cid-tvpfhfJlYs P {
  color: #232323;
}
.cid-tvpfhUraQ2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpfhUraQ2 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfhUraQ2 p {
  color: #767676;
  text-align: left;
}
.cid-tvpfhUraQ2 .card-box {
  padding-top: 2rem;
}
.cid-tvpfhUraQ2 .card-wrapper {
  height: 100%;
}
.cid-tvpfhUraQ2 P {
  color: #232323;
}
.cid-tvpfiAaDFN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpfiAaDFN h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfiAaDFN p {
  color: #767676;
  text-align: left;
}
.cid-tvpfiAaDFN .card-box {
  padding-top: 2rem;
}
.cid-tvpfiAaDFN .card-wrapper {
  height: 100%;
}
.cid-tvpfiAaDFN P {
  color: #232323;
}
.cid-tvpfjmHFem {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpfjmHFem h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfjmHFem p {
  color: #767676;
  text-align: left;
}
.cid-tvpfjmHFem .card-box {
  padding-top: 2rem;
}
.cid-tvpfjmHFem .card-wrapper {
  height: 100%;
}
.cid-tvpfjmHFem P {
  color: #232323;
}
.cid-tvpfk8BrAc {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpfk8BrAc h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfk8BrAc p {
  color: #767676;
  text-align: left;
}
.cid-tvpfk8BrAc .card-box {
  padding-top: 2rem;
}
.cid-tvpfk8BrAc .card-wrapper {
  height: 100%;
}
.cid-tvpfk8BrAc P {
  color: #232323;
}
.cid-tvpflk2Ze6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpflk2Ze6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpflk2Ze6 p {
  color: #767676;
  text-align: left;
}
.cid-tvpflk2Ze6 .card-box {
  padding-top: 2rem;
}
.cid-tvpflk2Ze6 .card-wrapper {
  height: 100%;
}
.cid-tvpflk2Ze6 P {
  color: #232323;
}
.cid-tvpfmihNDE {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpfmihNDE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfmihNDE p {
  color: #767676;
  text-align: left;
}
.cid-tvpfmihNDE .card-box {
  padding-top: 2rem;
}
.cid-tvpfmihNDE .card-wrapper {
  height: 100%;
}
.cid-tvpfmihNDE P {
  color: #232323;
}
.cid-tvpfncHyj4 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpfncHyj4 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfncHyj4 p {
  color: #767676;
  text-align: left;
}
.cid-tvpfncHyj4 .card-box {
  padding-top: 2rem;
}
.cid-tvpfncHyj4 .card-wrapper {
  height: 100%;
}
.cid-tvpfncHyj4 P {
  color: #232323;
}
.cid-tvpfoLfsb1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpfoLfsb1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfoLfsb1 p {
  color: #767676;
  text-align: left;
}
.cid-tvpfoLfsb1 .card-box {
  padding-top: 2rem;
}
.cid-tvpfoLfsb1 .card-wrapper {
  height: 100%;
}
.cid-tvpfoLfsb1 P {
  color: #232323;
}
.cid-tvpfppG82c {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpfppG82c h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfppG82c p {
  color: #767676;
  text-align: left;
}
.cid-tvpfppG82c .card-box {
  padding-top: 2rem;
}
.cid-tvpfppG82c .card-wrapper {
  height: 100%;
}
.cid-tvpfppG82c P {
  color: #232323;
}
.cid-tvpfq60p5Z {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-tvpfq60p5Z .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvpfq60p5Z h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfq60p5Z p {
  color: #767676;
  text-align: left;
}
.cid-tvpfq60p5Z .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvpfq60p5Z .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvpfq60p5Z .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvpfq60p5Z P {
  color: #232323;
}
.cid-tvpfqNhxdy {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-tvpfqNhxdy .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvpfqNhxdy h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfqNhxdy p {
  color: #767676;
  text-align: left;
}
.cid-tvpfqNhxdy .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvpfqNhxdy .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvpfqNhxdy .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvpfqNhxdy P {
  color: #232323;
}
.cid-tvpfrIiauP {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvpfrIiauP h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfrIiauP p {
  color: #767676;
  text-align: left;
}
.cid-tvpfrIiauP .card-box {
  padding-top: 2rem;
}
.cid-tvpfrIiauP .card-wrapper {
  height: 100%;
}
.cid-tvpfrIiauP P {
  color: #232323;
}
.cid-tvpfsq7PR7 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvpfsq7PR7 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfsq7PR7 p {
  color: #767676;
  text-align: left;
}
.cid-tvpfsq7PR7 .card-box {
  padding-top: 2rem;
}
.cid-tvpfsq7PR7 .card-wrapper {
  height: 100%;
}
.cid-tvpfsq7PR7 P {
  color: #232323;
}
.cid-tvpft6qrKT {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvpft6qrKT h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpft6qrKT p {
  color: #767676;
  text-align: left;
}
.cid-tvpft6qrKT .card-box {
  padding-top: 2rem;
}
.cid-tvpft6qrKT .card-wrapper {
  height: 100%;
}
.cid-tvpft6qrKT P {
  color: #232323;
}
.cid-tvpftT2Zjb {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvpftT2Zjb h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpftT2Zjb p {
  color: #767676;
  text-align: left;
}
.cid-tvpftT2Zjb .card-box {
  padding-top: 2rem;
}
.cid-tvpftT2Zjb .card-wrapper {
  height: 100%;
}
.cid-tvpftT2Zjb P {
  color: #232323;
}
.cid-tvpfvbDWDD {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvpfvbDWDD h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfvbDWDD p {
  color: #767676;
  text-align: left;
}
.cid-tvpfvbDWDD .card-box {
  padding-top: 2rem;
}
.cid-tvpfvbDWDD .card-wrapper {
  height: 100%;
}
.cid-tvpfvbDWDD P {
  color: #232323;
}
.cid-tvpfwIpeht {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvpfwIpeht h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfwIpeht p {
  color: #767676;
  text-align: left;
}
.cid-tvpfwIpeht .card-box {
  padding-top: 2rem;
}
.cid-tvpfwIpeht .card-wrapper {
  height: 100%;
}
.cid-tvpfwIpeht P {
  color: #232323;
}
.cid-tvpfxAD0tE {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvpfxAD0tE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpfxAD0tE p {
  color: #767676;
  text-align: left;
}
.cid-tvpfxAD0tE .card-box {
  padding-top: 2rem;
}
.cid-tvpfxAD0tE .card-wrapper {
  height: 100%;
}
.cid-tvpfxAD0tE P {
  color: #232323;
}
.cid-tvplptf9Ay {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tvplptf9Ay .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvplptf9Ay .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-tvpkmPv6Bi {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tvpkmPv6Bi img,
.cid-tvpkmPv6Bi .item-img {
  width: 100%;
}
.cid-tvpkmPv6Bi .item:focus,
.cid-tvpkmPv6Bi span:focus {
  outline: none;
}
.cid-tvpkmPv6Bi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvpkmPv6Bi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvpkmPv6Bi .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvpkmPv6Bi .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvpkmPv6Bi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvpkmPv6Bi .mbr-section-title {
  color: #232323;
}
.cid-tvpkmPv6Bi .mbr-text,
.cid-tvpkmPv6Bi .mbr-section-btn {
  text-align: left;
}
.cid-tvpkmPv6Bi .item-title {
  text-align: left;
}
.cid-tvpkmPv6Bi .item-subtitle {
  text-align: left;
}
.cid-tvpkoJg0tp {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpkoJg0tp h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpkoJg0tp p {
  color: #767676;
  text-align: left;
}
.cid-tvpkoJg0tp .card-box {
  padding-top: 2rem;
}
.cid-tvpkoJg0tp .card-wrapper {
  height: 100%;
}
.cid-tvpkoJg0tp P {
  color: #232323;
}
.cid-tvpkqoISfT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpkqoISfT h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpkqoISfT p {
  color: #767676;
  text-align: left;
}
.cid-tvpkqoISfT .card-box {
  padding-top: 2rem;
}
.cid-tvpkqoISfT .card-wrapper {
  height: 100%;
}
.cid-tvpkqoISfT P {
  color: #232323;
}
.cid-tvpkrlz4AO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpkrlz4AO h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpkrlz4AO p {
  color: #767676;
  text-align: left;
}
.cid-tvpkrlz4AO .card-box {
  padding-top: 2rem;
}
.cid-tvpkrlz4AO .card-wrapper {
  height: 100%;
}
.cid-tvpkrlz4AO P {
  color: #232323;
}
.cid-tvpksegl6p {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpksegl6p h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpksegl6p p {
  color: #767676;
  text-align: left;
}
.cid-tvpksegl6p .card-box {
  padding-top: 2rem;
}
.cid-tvpksegl6p .card-wrapper {
  height: 100%;
}
.cid-tvpksegl6p P {
  color: #232323;
}
.cid-tvpktia8sk {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpktia8sk h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpktia8sk p {
  color: #767676;
  text-align: left;
}
.cid-tvpktia8sk .card-box {
  padding-top: 2rem;
}
.cid-tvpktia8sk .card-wrapper {
  height: 100%;
}
.cid-tvpktia8sk P {
  color: #232323;
}
.cid-tvpku55znV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpku55znV h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpku55znV p {
  color: #767676;
  text-align: left;
}
.cid-tvpku55znV .card-box {
  padding-top: 2rem;
}
.cid-tvpku55znV .card-wrapper {
  height: 100%;
}
.cid-tvpku55znV P {
  color: #232323;
}
.cid-tvpkuOyGs4 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpkuOyGs4 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpkuOyGs4 p {
  color: #767676;
  text-align: left;
}
.cid-tvpkuOyGs4 .card-box {
  padding-top: 2rem;
}
.cid-tvpkuOyGs4 .card-wrapper {
  height: 100%;
}
.cid-tvpkuOyGs4 P {
  color: #232323;
}
.cid-tvpkvz9xf6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpkvz9xf6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpkvz9xf6 p {
  color: #767676;
  text-align: left;
}
.cid-tvpkvz9xf6 .card-box {
  padding-top: 2rem;
}
.cid-tvpkvz9xf6 .card-wrapper {
  height: 100%;
}
.cid-tvpkvz9xf6 P {
  color: #232323;
}
.cid-tvpkwmTowS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvpkwmTowS h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpkwmTowS p {
  color: #767676;
  text-align: left;
}
.cid-tvpkwmTowS .card-box {
  padding-top: 2rem;
}
.cid-tvpkwmTowS .card-wrapper {
  height: 100%;
}
.cid-tvpkwmTowS P {
  color: #232323;
}
.cid-tvpkyCY7Zw {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tvpkyCY7Zw .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvpkyCY7Zw h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpkyCY7Zw p {
  color: #767676;
  text-align: left;
}
.cid-tvpkyCY7Zw .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvpkyCY7Zw .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvpkyCY7Zw .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvpkyCY7Zw P {
  color: #232323;
}
.cid-tvpkCEGxP6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tvpkCEGxP6 .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvpkCEGxP6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvpkCEGxP6 p {
  color: #767676;
  text-align: left;
}
.cid-tvpkCEGxP6 .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvpkCEGxP6 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvpkCEGxP6 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvpkCEGxP6 P {
  color: #232323;
}
.cid-tvpn7rgULa {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tvpn7rgULa .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvpn7rgULa .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-tvpn8x1QaV {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tvpn8x1QaV img,
.cid-tvpn8x1QaV .item-img {
  width: 100%;
}
.cid-tvpn8x1QaV .item:focus,
.cid-tvpn8x1QaV span:focus {
  outline: none;
}
.cid-tvpn8x1QaV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvpn8x1QaV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvpn8x1QaV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvpn8x1QaV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvpn8x1QaV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvpn8x1QaV .mbr-section-title {
  color: #232323;
}
.cid-tvpn8x1QaV .mbr-text,
.cid-tvpn8x1QaV .mbr-section-btn {
  text-align: left;
}
.cid-tvpn8x1QaV .item-title {
  text-align: left;
}
.cid-tvpn8x1QaV .item-subtitle {
  text-align: left;
}
.cid-tvpn96KFUl {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tvpn96KFUl img,
.cid-tvpn96KFUl .item-img {
  width: 100%;
}
.cid-tvpn96KFUl .item:focus,
.cid-tvpn96KFUl span:focus {
  outline: none;
}
.cid-tvpn96KFUl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvpn96KFUl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvpn96KFUl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvpn96KFUl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvpn96KFUl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvpn96KFUl .mbr-section-title {
  color: #232323;
}
.cid-tvpn96KFUl .mbr-text,
.cid-tvpn96KFUl .mbr-section-btn {
  text-align: left;
}
.cid-tvpn96KFUl .item-title {
  text-align: left;
}
.cid-tvpn96KFUl .item-subtitle {
  text-align: left;
}
.cid-tvpnajh3ZA {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tvpnajh3ZA img,
.cid-tvpnajh3ZA .item-img {
  width: 100%;
}
.cid-tvpnajh3ZA .item:focus,
.cid-tvpnajh3ZA span:focus {
  outline: none;
}
.cid-tvpnajh3ZA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvpnajh3ZA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvpnajh3ZA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvpnajh3ZA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvpnajh3ZA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvpnajh3ZA .mbr-section-title {
  color: #232323;
}
.cid-tvpnajh3ZA .mbr-text,
.cid-tvpnajh3ZA .mbr-section-btn {
  text-align: left;
}
.cid-tvpnajh3ZA .item-title {
  text-align: left;
}
.cid-tvpnajh3ZA .item-subtitle {
  text-align: left;
}
.cid-tvpnbvdhL1 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tvpnbvdhL1 img,
.cid-tvpnbvdhL1 .item-img {
  width: 100%;
}
.cid-tvpnbvdhL1 .item:focus,
.cid-tvpnbvdhL1 span:focus {
  outline: none;
}
.cid-tvpnbvdhL1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvpnbvdhL1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvpnbvdhL1 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvpnbvdhL1 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvpnbvdhL1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvpnbvdhL1 .mbr-section-title {
  color: #232323;
}
.cid-tvpnbvdhL1 .mbr-text,
.cid-tvpnbvdhL1 .mbr-section-btn {
  text-align: left;
}
.cid-tvpnbvdhL1 .item-title {
  text-align: left;
}
.cid-tvpnbvdhL1 .item-subtitle {
  text-align: left;
}
.cid-tvpncHYEZl {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tvpncHYEZl img,
.cid-tvpncHYEZl .item-img {
  width: 100%;
}
.cid-tvpncHYEZl .item:focus,
.cid-tvpncHYEZl span:focus {
  outline: none;
}
.cid-tvpncHYEZl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvpncHYEZl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvpncHYEZl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvpncHYEZl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvpncHYEZl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvpncHYEZl .mbr-section-title {
  color: #232323;
}
.cid-tvpncHYEZl .mbr-text,
.cid-tvpncHYEZl .mbr-section-btn {
  text-align: left;
}
.cid-tvpncHYEZl .item-title {
  text-align: left;
}
.cid-tvpncHYEZl .item-subtitle {
  text-align: left;
}
.cid-tvpndC9nph {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tvpndC9nph img,
.cid-tvpndC9nph .item-img {
  width: 100%;
}
.cid-tvpndC9nph .item:focus,
.cid-tvpndC9nph span:focus {
  outline: none;
}
.cid-tvpndC9nph .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvpndC9nph .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvpndC9nph .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvpndC9nph .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvpndC9nph .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvpndC9nph .mbr-section-title {
  color: #232323;
}
.cid-tvpndC9nph .mbr-text,
.cid-tvpndC9nph .mbr-section-btn {
  text-align: left;
}
.cid-tvpndC9nph .item-title {
  text-align: left;
}
.cid-tvpndC9nph .item-subtitle {
  text-align: left;
}
.cid-tvpnexIvxC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvpnexIvxC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvpnexIvxC .row {
  flex-direction: row-reverse;
}
.cid-tvpnexIvxC img {
  width: 100%;
}
.cid-tvpnfpfOW2 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tvpnfpfOW2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tvpnfpfOW2 .row {
  flex-direction: row-reverse;
}
.cid-tvpnfpfOW2 img {
  width: 100%;
}
.cid-tvsIbh3s1C {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #81135e;
}
.cid-tvsIbh3s1C .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvsIbh3s1C .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-tvsIbh3s1C .mbr-section-title {
  color: #ffffff;
}
.cid-tvsIbh3s1C .mbr-text,
.cid-tvsIbh3s1C .mbr-section-btn {
  color: #ffffff;
}
.cid-uLE3tVa4bM {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLE3tVa4bM img,
.cid-uLE3tVa4bM .item-img {
  width: 100%;
}
.cid-uLE3tVa4bM .item:focus,
.cid-uLE3tVa4bM span:focus {
  outline: none;
}
.cid-uLE3tVa4bM .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLE3tVa4bM .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLE3tVa4bM .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLE3tVa4bM .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLE3tVa4bM .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLE3tVa4bM .mbr-section-title {
  color: #232323;
}
.cid-uLE3tVa4bM .mbr-text,
.cid-uLE3tVa4bM .mbr-section-btn {
  text-align: left;
}
.cid-uLE3tVa4bM .item-title {
  text-align: left;
}
.cid-uLE3tVa4bM .item-subtitle {
  text-align: left;
}
.cid-uCSomRhlux {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uCSomRhlux img,
.cid-uCSomRhlux .item-img {
  width: 100%;
}
.cid-uCSomRhlux .item:focus,
.cid-uCSomRhlux span:focus {
  outline: none;
}
.cid-uCSomRhlux .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uCSomRhlux .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uCSomRhlux .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uCSomRhlux .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uCSomRhlux .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uCSomRhlux .mbr-section-title {
  color: #232323;
}
.cid-uCSomRhlux .mbr-text,
.cid-uCSomRhlux .mbr-section-btn {
  text-align: left;
}
.cid-uCSomRhlux .item-title {
  text-align: left;
}
.cid-uCSomRhlux .item-subtitle {
  text-align: left;
}
.cid-uoL8M35fi6 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uoL8M35fi6 img,
.cid-uoL8M35fi6 .item-img {
  width: 100%;
}
.cid-uoL8M35fi6 .item:focus,
.cid-uoL8M35fi6 span:focus {
  outline: none;
}
.cid-uoL8M35fi6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uoL8M35fi6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uoL8M35fi6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uoL8M35fi6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uoL8M35fi6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uoL8M35fi6 .mbr-section-title {
  color: #232323;
}
.cid-uoL8M35fi6 .mbr-text,
.cid-uoL8M35fi6 .mbr-section-btn {
  text-align: left;
}
.cid-uoL8M35fi6 .item-title {
  text-align: left;
}
.cid-uoL8M35fi6 .item-subtitle {
  text-align: left;
}
.cid-u7QZIlhHfZ {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u7QZIlhHfZ img,
.cid-u7QZIlhHfZ .item-img {
  width: 100%;
}
.cid-u7QZIlhHfZ .item:focus,
.cid-u7QZIlhHfZ span:focus {
  outline: none;
}
.cid-u7QZIlhHfZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u7QZIlhHfZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u7QZIlhHfZ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u7QZIlhHfZ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u7QZIlhHfZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u7QZIlhHfZ .mbr-section-title {
  color: #232323;
}
.cid-u7QZIlhHfZ .mbr-text,
.cid-u7QZIlhHfZ .mbr-section-btn {
  text-align: left;
}
.cid-u7QZIlhHfZ .item-title {
  text-align: left;
}
.cid-u7QZIlhHfZ .item-subtitle {
  text-align: left;
}
.cid-tTvDbfMQfF {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tTvDbfMQfF img,
.cid-tTvDbfMQfF .item-img {
  width: 100%;
}
.cid-tTvDbfMQfF .item:focus,
.cid-tTvDbfMQfF span:focus {
  outline: none;
}
.cid-tTvDbfMQfF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tTvDbfMQfF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tTvDbfMQfF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tTvDbfMQfF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tTvDbfMQfF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tTvDbfMQfF .mbr-section-title {
  color: #232323;
}
.cid-tTvDbfMQfF .mbr-text,
.cid-tTvDbfMQfF .mbr-section-btn {
  text-align: left;
}
.cid-tTvDbfMQfF .item-title {
  text-align: left;
}
.cid-tTvDbfMQfF .item-subtitle {
  text-align: left;
}
.cid-tF6BbauJ7w {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tF6BbauJ7w img,
.cid-tF6BbauJ7w .item-img {
  width: 100%;
}
.cid-tF6BbauJ7w .item:focus,
.cid-tF6BbauJ7w span:focus {
  outline: none;
}
.cid-tF6BbauJ7w .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tF6BbauJ7w .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tF6BbauJ7w .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tF6BbauJ7w .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tF6BbauJ7w .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tF6BbauJ7w .mbr-section-title {
  color: #232323;
}
.cid-tF6BbauJ7w .mbr-text,
.cid-tF6BbauJ7w .mbr-section-btn {
  text-align: left;
}
.cid-tF6BbauJ7w .item-title {
  text-align: left;
}
.cid-tF6BbauJ7w .item-subtitle {
  text-align: left;
}
.cid-twxMZTwe9C {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-twxMZTwe9C img,
.cid-twxMZTwe9C .item-img {
  width: 100%;
}
.cid-twxMZTwe9C .item:focus,
.cid-twxMZTwe9C span:focus {
  outline: none;
}
.cid-twxMZTwe9C .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-twxMZTwe9C .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-twxMZTwe9C .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-twxMZTwe9C .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-twxMZTwe9C .mbr-section-btn {
  margin-top: auto !important;
}
.cid-twxMZTwe9C .mbr-section-title {
  color: #232323;
}
.cid-twxMZTwe9C .mbr-text,
.cid-twxMZTwe9C .mbr-section-btn {
  text-align: left;
}
.cid-twxMZTwe9C .item-title {
  text-align: left;
}
.cid-twxMZTwe9C .item-subtitle {
  text-align: left;
}
.cid-tvsIcsQynJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsIcsQynJ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsIcsQynJ p {
  color: #767676;
  text-align: left;
}
.cid-tvsIcsQynJ .card-box {
  padding-top: 2rem;
}
.cid-tvsIcsQynJ .card-wrapper {
  height: 100%;
}
.cid-tvsIcsQynJ P {
  color: #232323;
}
.cid-tvsId1CZVn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsId1CZVn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsId1CZVn p {
  color: #767676;
  text-align: left;
}
.cid-tvsId1CZVn .card-box {
  padding-top: 2rem;
}
.cid-tvsId1CZVn .card-wrapper {
  height: 100%;
}
.cid-tvsId1CZVn P {
  color: #232323;
}
.cid-tvsIdHGDfz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsIdHGDfz h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsIdHGDfz p {
  color: #767676;
  text-align: left;
}
.cid-tvsIdHGDfz .card-box {
  padding-top: 2rem;
}
.cid-tvsIdHGDfz .card-wrapper {
  height: 100%;
}
.cid-tvsIdHGDfz P {
  color: #232323;
}
.cid-tvsIeMYz2i {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsIeMYz2i h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsIeMYz2i p {
  color: #767676;
  text-align: left;
}
.cid-tvsIeMYz2i .card-box {
  padding-top: 2rem;
}
.cid-tvsIeMYz2i .card-wrapper {
  height: 100%;
}
.cid-tvsIeMYz2i P {
  color: #232323;
}
.cid-tvsIfw5kar {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsIfw5kar h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsIfw5kar p {
  color: #767676;
  text-align: left;
}
.cid-tvsIfw5kar .card-box {
  padding-top: 2rem;
}
.cid-tvsIfw5kar .card-wrapper {
  height: 100%;
}
.cid-tvsIfw5kar P {
  color: #232323;
}
.cid-tvsIhc0YSq {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsIhc0YSq h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsIhc0YSq p {
  color: #767676;
  text-align: left;
}
.cid-tvsIhc0YSq .card-box {
  padding-top: 2rem;
}
.cid-tvsIhc0YSq .card-wrapper {
  height: 100%;
}
.cid-tvsIhc0YSq P {
  color: #232323;
}
.cid-tvsIxqTd89 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsIxqTd89 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsIxqTd89 p {
  color: #767676;
  text-align: left;
}
.cid-tvsIxqTd89 .card-box {
  padding-top: 2rem;
}
.cid-tvsIxqTd89 .card-wrapper {
  height: 100%;
}
.cid-tvsIxqTd89 P {
  color: #232323;
}
.cid-tvsIimVOPw {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsIimVOPw h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsIimVOPw p {
  color: #767676;
  text-align: left;
}
.cid-tvsIimVOPw .card-box {
  padding-top: 2rem;
}
.cid-tvsIimVOPw .card-wrapper {
  height: 100%;
}
.cid-tvsIimVOPw P {
  color: #232323;
}
.cid-tvsIjaXAt6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsIjaXAt6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsIjaXAt6 p {
  color: #767676;
  text-align: left;
}
.cid-tvsIjaXAt6 .card-box {
  padding-top: 2rem;
}
.cid-tvsIjaXAt6 .card-wrapper {
  height: 100%;
}
.cid-tvsIjaXAt6 P {
  color: #232323;
}
.cid-tvsIk2T23n {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsIk2T23n h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsIk2T23n p {
  color: #767676;
  text-align: left;
}
.cid-tvsIk2T23n .card-box {
  padding-top: 2rem;
}
.cid-tvsIk2T23n .card-wrapper {
  height: 100%;
}
.cid-tvsIk2T23n P {
  color: #232323;
}
.cid-tvsIkR4Vtt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsIkR4Vtt h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsIkR4Vtt p {
  color: #767676;
  text-align: left;
}
.cid-tvsIkR4Vtt .card-box {
  padding-top: 2rem;
}
.cid-tvsIkR4Vtt .card-wrapper {
  height: 100%;
}
.cid-tvsIkR4Vtt P {
  color: #232323;
}
.cid-tvsIlN90QN {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvsIlN90QN h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsIlN90QN p {
  color: #767676;
  text-align: left;
}
.cid-tvsIlN90QN .card-box {
  padding-top: 2rem;
}
.cid-tvsIlN90QN .card-wrapper {
  height: 100%;
}
.cid-tvsIlN90QN P {
  color: #232323;
}
.cid-tvsImOvg5d {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvsImOvg5d h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsImOvg5d p {
  color: #767676;
  text-align: left;
}
.cid-tvsImOvg5d .card-box {
  padding-top: 2rem;
}
.cid-tvsImOvg5d .card-wrapper {
  height: 100%;
}
.cid-tvsImOvg5d P {
  color: #232323;
}
.cid-tvsInE5pnE {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvsInE5pnE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsInE5pnE p {
  color: #767676;
  text-align: left;
}
.cid-tvsInE5pnE .card-box {
  padding-top: 2rem;
}
.cid-tvsInE5pnE .card-wrapper {
  height: 100%;
}
.cid-tvsInE5pnE P {
  color: #232323;
}
.cid-tvsIoDxpBT {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvsIoDxpBT h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsIoDxpBT p {
  color: #767676;
  text-align: left;
}
.cid-tvsIoDxpBT .card-box {
  padding-top: 2rem;
}
.cid-tvsIoDxpBT .card-wrapper {
  height: 100%;
}
.cid-tvsIoDxpBT P {
  color: #232323;
}
.cid-tvsIpKt1l9 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvsIpKt1l9 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsIpKt1l9 p {
  color: #767676;
  text-align: left;
}
.cid-tvsIpKt1l9 .card-box {
  padding-top: 2rem;
}
.cid-tvsIpKt1l9 .card-wrapper {
  height: 100%;
}
.cid-tvsIpKt1l9 P {
  color: #232323;
}
.cid-tvsLq8F9IG {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tvsLq8F9IG .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvsLq8F9IG .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-tvsLqYUiOq {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsLqYUiOq h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsLqYUiOq p {
  color: #767676;
  text-align: left;
}
.cid-tvsLqYUiOq .card-box {
  padding-top: 2rem;
}
.cid-tvsLqYUiOq .card-wrapper {
  height: 100%;
}
.cid-tvsLqYUiOq P {
  color: #232323;
}
.cid-tvsLrsQIqv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsLrsQIqv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsLrsQIqv p {
  color: #767676;
  text-align: left;
}
.cid-tvsLrsQIqv .card-box {
  padding-top: 2rem;
}
.cid-tvsLrsQIqv .card-wrapper {
  height: 100%;
}
.cid-tvsLrsQIqv P {
  color: #232323;
}
.cid-tvsLrUM1cQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsLrUM1cQ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsLrUM1cQ p {
  color: #767676;
  text-align: left;
}
.cid-tvsLrUM1cQ .card-box {
  padding-top: 2rem;
}
.cid-tvsLrUM1cQ .card-wrapper {
  height: 100%;
}
.cid-tvsLrUM1cQ P {
  color: #232323;
}
.cid-tvsLsZZTqX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsLsZZTqX h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsLsZZTqX p {
  color: #767676;
  text-align: left;
}
.cid-tvsLsZZTqX .card-box {
  padding-top: 2rem;
}
.cid-tvsLsZZTqX .card-wrapper {
  height: 100%;
}
.cid-tvsLsZZTqX P {
  color: #232323;
}
.cid-tvsLuvT97d {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvsLuvT97d h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsLuvT97d p {
  color: #767676;
  text-align: left;
}
.cid-tvsLuvT97d .card-box {
  padding-top: 2rem;
}
.cid-tvsLuvT97d .card-wrapper {
  height: 100%;
}
.cid-tvsLuvT97d P {
  color: #232323;
}
.cid-tvsLvpbmpH {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsLvpbmpH h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsLvpbmpH p {
  color: #767676;
  text-align: left;
}
.cid-tvsLvpbmpH .card-box {
  padding-top: 2rem;
}
.cid-tvsLvpbmpH .card-wrapper {
  height: 100%;
}
.cid-tvsLvpbmpH P {
  color: #232323;
}
.cid-tvsLwglpuY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsLwglpuY h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsLwglpuY p {
  color: #767676;
  text-align: left;
}
.cid-tvsLwglpuY .card-box {
  padding-top: 2rem;
}
.cid-tvsLwglpuY .card-wrapper {
  height: 100%;
}
.cid-tvsLwglpuY P {
  color: #232323;
}
.cid-tvsLxaFJW3 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-tvsLxaFJW3 .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvsLxaFJW3 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsLxaFJW3 p {
  color: #767676;
  text-align: left;
}
.cid-tvsLxaFJW3 .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvsLxaFJW3 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvsLxaFJW3 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvsLxaFJW3 P {
  color: #232323;
}
.cid-tvsLy1Ua0O {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-tvsLy1Ua0O .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvsLy1Ua0O h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsLy1Ua0O p {
  color: #767676;
  text-align: left;
}
.cid-tvsLy1Ua0O .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvsLy1Ua0O .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvsLy1Ua0O .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvsLy1Ua0O P {
  color: #232323;
}
.cid-tvsLyLGis4 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-tvsLyLGis4 .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvsLyLGis4 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsLyLGis4 p {
  color: #767676;
  text-align: left;
}
.cid-tvsLyLGis4 .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvsLyLGis4 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvsLyLGis4 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvsLyLGis4 P {
  color: #232323;
}
.cid-tvsLzAIJYG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsLzAIJYG h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsLzAIJYG p {
  color: #767676;
  text-align: left;
}
.cid-tvsLzAIJYG .card-box {
  padding-top: 2rem;
}
.cid-tvsLzAIJYG .card-wrapper {
  height: 100%;
}
.cid-tvsLzAIJYG P {
  color: #232323;
}
.cid-tvsLAQpkIr {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-tvsLAQpkIr .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvsLAQpkIr h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsLAQpkIr p {
  color: #767676;
  text-align: left;
}
.cid-tvsLAQpkIr .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvsLAQpkIr .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvsLAQpkIr .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvsLAQpkIr P {
  color: #232323;
}
.cid-tvsLBFuGKj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsLBFuGKj h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsLBFuGKj p {
  color: #767676;
  text-align: left;
}
.cid-tvsLBFuGKj .card-box {
  padding-top: 2rem;
}
.cid-tvsLBFuGKj .card-wrapper {
  height: 100%;
}
.cid-tvsLBFuGKj P {
  color: #232323;
}
.cid-tvsLCIMJVA {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-tvsLCIMJVA .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvsLCIMJVA h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsLCIMJVA p {
  color: #767676;
  text-align: left;
}
.cid-tvsLCIMJVA .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvsLCIMJVA .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvsLCIMJVA .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvsLCIMJVA P {
  color: #232323;
}
.cid-tvsMYCKv5v {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #81135e;
}
.cid-tvsMYCKv5v .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvsMYCKv5v .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-tvsMYCKv5v .mbr-section-title {
  color: #fafafa;
}
.cid-tvsMYCKv5v .mbr-text,
.cid-tvsMYCKv5v .mbr-section-btn {
  color: #ffffff;
}
.cid-uLDVyoQP8V {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLDVyoQP8V img,
.cid-uLDVyoQP8V .item-img {
  width: 100%;
}
.cid-uLDVyoQP8V .item:focus,
.cid-uLDVyoQP8V span:focus {
  outline: none;
}
.cid-uLDVyoQP8V .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLDVyoQP8V .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLDVyoQP8V .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLDVyoQP8V .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLDVyoQP8V .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLDVyoQP8V .mbr-section-title {
  color: #232323;
}
.cid-uLDVyoQP8V .mbr-text,
.cid-uLDVyoQP8V .mbr-section-btn {
  text-align: left;
}
.cid-uLDVyoQP8V .item-title {
  text-align: left;
}
.cid-uLDVyoQP8V .item-subtitle {
  text-align: left;
}
.cid-uCOCfgo6h5 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uCOCfgo6h5 img,
.cid-uCOCfgo6h5 .item-img {
  width: 100%;
}
.cid-uCOCfgo6h5 .item:focus,
.cid-uCOCfgo6h5 span:focus {
  outline: none;
}
.cid-uCOCfgo6h5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uCOCfgo6h5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uCOCfgo6h5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uCOCfgo6h5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uCOCfgo6h5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uCOCfgo6h5 .mbr-section-title {
  color: #232323;
}
.cid-uCOCfgo6h5 .mbr-text,
.cid-uCOCfgo6h5 .mbr-section-btn {
  text-align: left;
}
.cid-uCOCfgo6h5 .item-title {
  text-align: left;
}
.cid-uCOCfgo6h5 .item-subtitle {
  text-align: left;
}
.cid-uu8SY9WF5Y {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uu8SY9WF5Y img,
.cid-uu8SY9WF5Y .item-img {
  width: 100%;
}
.cid-uu8SY9WF5Y .item:focus,
.cid-uu8SY9WF5Y span:focus {
  outline: none;
}
.cid-uu8SY9WF5Y .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uu8SY9WF5Y .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uu8SY9WF5Y .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uu8SY9WF5Y .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uu8SY9WF5Y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uu8SY9WF5Y .mbr-section-title {
  color: #232323;
}
.cid-uu8SY9WF5Y .mbr-text,
.cid-uu8SY9WF5Y .mbr-section-btn {
  text-align: left;
}
.cid-uu8SY9WF5Y .item-title {
  text-align: left;
}
.cid-uu8SY9WF5Y .item-subtitle {
  text-align: left;
}
.cid-ulxQdoIZ3d {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ulxQdoIZ3d img,
.cid-ulxQdoIZ3d .item-img {
  width: 100%;
}
.cid-ulxQdoIZ3d .item:focus,
.cid-ulxQdoIZ3d span:focus {
  outline: none;
}
.cid-ulxQdoIZ3d .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ulxQdoIZ3d .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ulxQdoIZ3d .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ulxQdoIZ3d .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ulxQdoIZ3d .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ulxQdoIZ3d .mbr-section-title {
  color: #232323;
}
.cid-ulxQdoIZ3d .mbr-text,
.cid-ulxQdoIZ3d .mbr-section-btn {
  text-align: left;
}
.cid-ulxQdoIZ3d .item-title {
  text-align: left;
}
.cid-ulxQdoIZ3d .item-subtitle {
  text-align: left;
}
.cid-udyxCA2BNo {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-udyxCA2BNo img,
.cid-udyxCA2BNo .item-img {
  width: 100%;
}
.cid-udyxCA2BNo .item:focus,
.cid-udyxCA2BNo span:focus {
  outline: none;
}
.cid-udyxCA2BNo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-udyxCA2BNo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-udyxCA2BNo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-udyxCA2BNo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-udyxCA2BNo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-udyxCA2BNo .mbr-section-title {
  color: #232323;
}
.cid-udyxCA2BNo .mbr-text,
.cid-udyxCA2BNo .mbr-section-btn {
  text-align: left;
}
.cid-udyxCA2BNo .item-title {
  text-align: left;
}
.cid-udyxCA2BNo .item-subtitle {
  text-align: left;
}
.cid-u4Wo7VgdI2 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u4Wo7VgdI2 img,
.cid-u4Wo7VgdI2 .item-img {
  width: 100%;
}
.cid-u4Wo7VgdI2 .item:focus,
.cid-u4Wo7VgdI2 span:focus {
  outline: none;
}
.cid-u4Wo7VgdI2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4Wo7VgdI2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4Wo7VgdI2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4Wo7VgdI2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u4Wo7VgdI2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4Wo7VgdI2 .mbr-section-title {
  color: #232323;
}
.cid-u4Wo7VgdI2 .mbr-text,
.cid-u4Wo7VgdI2 .mbr-section-btn {
  text-align: left;
}
.cid-u4Wo7VgdI2 .item-title {
  text-align: left;
}
.cid-u4Wo7VgdI2 .item-subtitle {
  text-align: left;
}
.cid-tWcaXwTDOW {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tWcaXwTDOW img,
.cid-tWcaXwTDOW .item-img {
  width: 100%;
}
.cid-tWcaXwTDOW .item:focus,
.cid-tWcaXwTDOW span:focus {
  outline: none;
}
.cid-tWcaXwTDOW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tWcaXwTDOW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tWcaXwTDOW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tWcaXwTDOW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tWcaXwTDOW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tWcaXwTDOW .mbr-section-title {
  color: #232323;
}
.cid-tWcaXwTDOW .mbr-text,
.cid-tWcaXwTDOW .mbr-section-btn {
  text-align: left;
}
.cid-tWcaXwTDOW .item-title {
  text-align: left;
}
.cid-tWcaXwTDOW .item-subtitle {
  text-align: left;
}
.cid-tQHP4AZRlw {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tQHP4AZRlw img,
.cid-tQHP4AZRlw .item-img {
  width: 100%;
}
.cid-tQHP4AZRlw .item:focus,
.cid-tQHP4AZRlw span:focus {
  outline: none;
}
.cid-tQHP4AZRlw .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tQHP4AZRlw .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tQHP4AZRlw .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tQHP4AZRlw .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tQHP4AZRlw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tQHP4AZRlw .mbr-section-title {
  color: #232323;
}
.cid-tQHP4AZRlw .mbr-text,
.cid-tQHP4AZRlw .mbr-section-btn {
  text-align: left;
}
.cid-tQHP4AZRlw .item-title {
  text-align: left;
}
.cid-tQHP4AZRlw .item-subtitle {
  text-align: left;
}
.cid-tF6Cl7wR1q {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tF6Cl7wR1q img,
.cid-tF6Cl7wR1q .item-img {
  width: 100%;
}
.cid-tF6Cl7wR1q .item:focus,
.cid-tF6Cl7wR1q span:focus {
  outline: none;
}
.cid-tF6Cl7wR1q .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tF6Cl7wR1q .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tF6Cl7wR1q .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tF6Cl7wR1q .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tF6Cl7wR1q .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tF6Cl7wR1q .mbr-section-title {
  color: #232323;
}
.cid-tF6Cl7wR1q .mbr-text,
.cid-tF6Cl7wR1q .mbr-section-btn {
  text-align: left;
}
.cid-tF6Cl7wR1q .item-title {
  text-align: left;
}
.cid-tF6Cl7wR1q .item-subtitle {
  text-align: left;
}
.cid-tww5ZbicNB {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tww5ZbicNB img,
.cid-tww5ZbicNB .item-img {
  width: 100%;
}
.cid-tww5ZbicNB .item:focus,
.cid-tww5ZbicNB span:focus {
  outline: none;
}
.cid-tww5ZbicNB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tww5ZbicNB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tww5ZbicNB .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tww5ZbicNB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tww5ZbicNB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tww5ZbicNB .mbr-section-title {
  color: #232323;
}
.cid-tww5ZbicNB .mbr-text,
.cid-tww5ZbicNB .mbr-section-btn {
  text-align: left;
}
.cid-tww5ZbicNB .item-title {
  text-align: left;
}
.cid-tww5ZbicNB .item-subtitle {
  text-align: left;
}
.cid-tvsMZohF4w {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsMZohF4w h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsMZohF4w p {
  color: #767676;
  text-align: left;
}
.cid-tvsMZohF4w .card-box {
  padding-top: 2rem;
}
.cid-tvsMZohF4w .card-wrapper {
  height: 100%;
}
.cid-tvsMZohF4w P {
  color: #232323;
}
.cid-tvsN08Ku2J {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsN08Ku2J h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsN08Ku2J p {
  color: #767676;
  text-align: left;
}
.cid-tvsN08Ku2J .card-box {
  padding-top: 2rem;
}
.cid-tvsN08Ku2J .card-wrapper {
  height: 100%;
}
.cid-tvsN08Ku2J P {
  color: #232323;
}
.cid-tvsN0X9id1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsN0X9id1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsN0X9id1 p {
  color: #767676;
  text-align: left;
}
.cid-tvsN0X9id1 .card-box {
  padding-top: 2rem;
}
.cid-tvsN0X9id1 .card-wrapper {
  height: 100%;
}
.cid-tvsN0X9id1 P {
  color: #232323;
}
.cid-tvsN1KEaYQ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsN1KEaYQ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsN1KEaYQ p {
  color: #767676;
  text-align: left;
}
.cid-tvsN1KEaYQ .card-box {
  padding-top: 2rem;
}
.cid-tvsN1KEaYQ .card-wrapper {
  height: 100%;
}
.cid-tvsN1KEaYQ P {
  color: #232323;
}
.cid-tvsN2HPULn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsN2HPULn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsN2HPULn p {
  color: #767676;
  text-align: left;
}
.cid-tvsN2HPULn .card-box {
  padding-top: 2rem;
}
.cid-tvsN2HPULn .card-wrapper {
  height: 100%;
}
.cid-tvsN2HPULn P {
  color: #232323;
}
.cid-tvsN3w6EZS {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsN3w6EZS h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsN3w6EZS p {
  color: #767676;
  text-align: left;
}
.cid-tvsN3w6EZS .card-box {
  padding-top: 2rem;
}
.cid-tvsN3w6EZS .card-wrapper {
  height: 100%;
}
.cid-tvsN3w6EZS P {
  color: #232323;
}
.cid-tvsN4mjlds {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsN4mjlds h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsN4mjlds p {
  color: #767676;
  text-align: left;
}
.cid-tvsN4mjlds .card-box {
  padding-top: 2rem;
}
.cid-tvsN4mjlds .card-wrapper {
  height: 100%;
}
.cid-tvsN4mjlds P {
  color: #232323;
}
.cid-tvsN5ghQCz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsN5ghQCz h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsN5ghQCz p {
  color: #767676;
  text-align: left;
}
.cid-tvsN5ghQCz .card-box {
  padding-top: 2rem;
}
.cid-tvsN5ghQCz .card-wrapper {
  height: 100%;
}
.cid-tvsN5ghQCz P {
  color: #232323;
}
.cid-tvsN6e5lsJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsN6e5lsJ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsN6e5lsJ p {
  color: #767676;
  text-align: left;
}
.cid-tvsN6e5lsJ .card-box {
  padding-top: 2rem;
}
.cid-tvsN6e5lsJ .card-wrapper {
  height: 100%;
}
.cid-tvsN6e5lsJ P {
  color: #232323;
}
.cid-tvsN749rWD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsN749rWD h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsN749rWD p {
  color: #767676;
  text-align: left;
}
.cid-tvsN749rWD .card-box {
  padding-top: 2rem;
}
.cid-tvsN749rWD .card-wrapper {
  height: 100%;
}
.cid-tvsN749rWD P {
  color: #232323;
}
.cid-tvsN7QtaJX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsN7QtaJX h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsN7QtaJX p {
  color: #767676;
  text-align: left;
}
.cid-tvsN7QtaJX .card-box {
  padding-top: 2rem;
}
.cid-tvsN7QtaJX .card-wrapper {
  height: 100%;
}
.cid-tvsN7QtaJX P {
  color: #232323;
}
.cid-tvsN8BygFt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsN8BygFt h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsN8BygFt p {
  color: #767676;
  text-align: left;
}
.cid-tvsN8BygFt .card-box {
  padding-top: 2rem;
}
.cid-tvsN8BygFt .card-wrapper {
  height: 100%;
}
.cid-tvsN8BygFt P {
  color: #232323;
}
.cid-tvsN9AhQkj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsN9AhQkj h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsN9AhQkj p {
  color: #767676;
  text-align: left;
}
.cid-tvsN9AhQkj .card-box {
  padding-top: 2rem;
}
.cid-tvsN9AhQkj .card-wrapper {
  height: 100%;
}
.cid-tvsN9AhQkj P {
  color: #232323;
}
.cid-tvsNamjKEG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsNamjKEG h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsNamjKEG p {
  color: #767676;
  text-align: left;
}
.cid-tvsNamjKEG .card-box {
  padding-top: 2rem;
}
.cid-tvsNamjKEG .card-wrapper {
  height: 100%;
}
.cid-tvsNamjKEG P {
  color: #232323;
}
.cid-tvsP25HSKF {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #4479d9;
}
.cid-tvsP25HSKF .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvsP25HSKF .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-tvsP25HSKF .mbr-section-title {
  color: #ffffff;
}
.cid-uRit5ZZBol {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uRit5ZZBol img,
.cid-uRit5ZZBol .item-img {
  width: 100%;
}
.cid-uRit5ZZBol .item:focus,
.cid-uRit5ZZBol span:focus {
  outline: none;
}
.cid-uRit5ZZBol .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uRit5ZZBol .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uRit5ZZBol .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uRit5ZZBol .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uRit5ZZBol .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uRit5ZZBol .mbr-section-title {
  color: #232323;
}
.cid-uRit5ZZBol .mbr-text,
.cid-uRit5ZZBol .mbr-section-btn {
  text-align: left;
}
.cid-uRit5ZZBol .item-title {
  text-align: left;
}
.cid-uRit5ZZBol .item-subtitle {
  text-align: left;
}
.cid-uFRADnTvun {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uFRADnTvun img,
.cid-uFRADnTvun .item-img {
  width: 100%;
}
.cid-uFRADnTvun .item:focus,
.cid-uFRADnTvun span:focus {
  outline: none;
}
.cid-uFRADnTvun .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uFRADnTvun .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uFRADnTvun .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFRADnTvun .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uFRADnTvun .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uFRADnTvun .mbr-section-title {
  color: #232323;
}
.cid-uFRADnTvun .mbr-text,
.cid-uFRADnTvun .mbr-section-btn {
  text-align: left;
}
.cid-uFRADnTvun .item-title {
  text-align: left;
}
.cid-uFRADnTvun .item-subtitle {
  text-align: left;
}
.cid-usIGFvLURA {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-usIGFvLURA img,
.cid-usIGFvLURA .item-img {
  width: 100%;
}
.cid-usIGFvLURA .item:focus,
.cid-usIGFvLURA span:focus {
  outline: none;
}
.cid-usIGFvLURA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-usIGFvLURA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-usIGFvLURA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-usIGFvLURA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-usIGFvLURA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-usIGFvLURA .mbr-section-title {
  color: #232323;
}
.cid-usIGFvLURA .mbr-text,
.cid-usIGFvLURA .mbr-section-btn {
  text-align: left;
}
.cid-usIGFvLURA .item-title {
  text-align: left;
}
.cid-usIGFvLURA .item-subtitle {
  text-align: left;
}
.cid-uoME8DQBSd {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uoME8DQBSd img,
.cid-uoME8DQBSd .item-img {
  width: 100%;
}
.cid-uoME8DQBSd .item:focus,
.cid-uoME8DQBSd span:focus {
  outline: none;
}
.cid-uoME8DQBSd .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uoME8DQBSd .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uoME8DQBSd .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uoME8DQBSd .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uoME8DQBSd .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uoME8DQBSd .mbr-section-title {
  color: #232323;
}
.cid-uoME8DQBSd .mbr-text,
.cid-uoME8DQBSd .mbr-section-btn {
  text-align: left;
}
.cid-uoME8DQBSd .item-title {
  text-align: left;
}
.cid-uoME8DQBSd .item-subtitle {
  text-align: left;
}
.cid-uiUwRLDeEO {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uiUwRLDeEO img,
.cid-uiUwRLDeEO .item-img {
  width: 100%;
}
.cid-uiUwRLDeEO .item:focus,
.cid-uiUwRLDeEO span:focus {
  outline: none;
}
.cid-uiUwRLDeEO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uiUwRLDeEO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uiUwRLDeEO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uiUwRLDeEO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uiUwRLDeEO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uiUwRLDeEO .mbr-section-title {
  color: #232323;
}
.cid-uiUwRLDeEO .mbr-text,
.cid-uiUwRLDeEO .mbr-section-btn {
  text-align: left;
}
.cid-uiUwRLDeEO .item-title {
  text-align: left;
}
.cid-uiUwRLDeEO .item-subtitle {
  text-align: left;
}
.cid-uc0zThm0lN {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uc0zThm0lN img,
.cid-uc0zThm0lN .item-img {
  width: 100%;
}
.cid-uc0zThm0lN .item:focus,
.cid-uc0zThm0lN span:focus {
  outline: none;
}
.cid-uc0zThm0lN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uc0zThm0lN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uc0zThm0lN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uc0zThm0lN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uc0zThm0lN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uc0zThm0lN .mbr-section-title {
  color: #232323;
}
.cid-uc0zThm0lN .mbr-text,
.cid-uc0zThm0lN .mbr-section-btn {
  text-align: left;
}
.cid-uc0zThm0lN .item-title {
  text-align: left;
}
.cid-uc0zThm0lN .item-subtitle {
  text-align: left;
}
.cid-uaGqVZBJOQ {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uaGqVZBJOQ img,
.cid-uaGqVZBJOQ .item-img {
  width: 100%;
}
.cid-uaGqVZBJOQ .item:focus,
.cid-uaGqVZBJOQ span:focus {
  outline: none;
}
.cid-uaGqVZBJOQ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uaGqVZBJOQ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uaGqVZBJOQ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaGqVZBJOQ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uaGqVZBJOQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uaGqVZBJOQ .mbr-section-title {
  color: #232323;
}
.cid-uaGqVZBJOQ .mbr-text,
.cid-uaGqVZBJOQ .mbr-section-btn {
  text-align: left;
}
.cid-uaGqVZBJOQ .item-title {
  text-align: left;
}
.cid-uaGqVZBJOQ .item-subtitle {
  text-align: left;
}
.cid-tQGDAXY9tU {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tQGDAXY9tU img,
.cid-tQGDAXY9tU .item-img {
  width: 100%;
}
.cid-tQGDAXY9tU .item:focus,
.cid-tQGDAXY9tU span:focus {
  outline: none;
}
.cid-tQGDAXY9tU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tQGDAXY9tU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tQGDAXY9tU .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tQGDAXY9tU .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tQGDAXY9tU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tQGDAXY9tU .mbr-section-title {
  color: #232323;
}
.cid-tQGDAXY9tU .mbr-text,
.cid-tQGDAXY9tU .mbr-section-btn {
  text-align: left;
}
.cid-tQGDAXY9tU .item-title {
  text-align: left;
}
.cid-tQGDAXY9tU .item-subtitle {
  text-align: left;
}
.cid-tCcxVQUqBb {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tCcxVQUqBb img,
.cid-tCcxVQUqBb .item-img {
  width: 100%;
}
.cid-tCcxVQUqBb .item:focus,
.cid-tCcxVQUqBb span:focus {
  outline: none;
}
.cid-tCcxVQUqBb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tCcxVQUqBb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tCcxVQUqBb .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tCcxVQUqBb .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tCcxVQUqBb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tCcxVQUqBb .mbr-section-title {
  color: #232323;
}
.cid-tCcxVQUqBb .mbr-text,
.cid-tCcxVQUqBb .mbr-section-btn {
  text-align: left;
}
.cid-tCcxVQUqBb .item-title {
  text-align: left;
}
.cid-tCcxVQUqBb .item-subtitle {
  text-align: left;
}
.cid-tzf9jMnur2 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tzf9jMnur2 img,
.cid-tzf9jMnur2 .item-img {
  width: 100%;
}
.cid-tzf9jMnur2 .item:focus,
.cid-tzf9jMnur2 span:focus {
  outline: none;
}
.cid-tzf9jMnur2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tzf9jMnur2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tzf9jMnur2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tzf9jMnur2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tzf9jMnur2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tzf9jMnur2 .mbr-section-title {
  color: #232323;
}
.cid-tzf9jMnur2 .mbr-text,
.cid-tzf9jMnur2 .mbr-section-btn {
  text-align: left;
}
.cid-tzf9jMnur2 .item-title {
  text-align: left;
}
.cid-tzf9jMnur2 .item-subtitle {
  text-align: left;
}
.cid-tNMegcIOVa {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tNMegcIOVa img,
.cid-tNMegcIOVa .item-img {
  width: 100%;
}
.cid-tNMegcIOVa .item:focus,
.cid-tNMegcIOVa span:focus {
  outline: none;
}
.cid-tNMegcIOVa .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tNMegcIOVa .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tNMegcIOVa .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tNMegcIOVa .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tNMegcIOVa .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tNMegcIOVa .mbr-section-title {
  color: #232323;
}
.cid-tNMegcIOVa .mbr-text,
.cid-tNMegcIOVa .mbr-section-btn {
  text-align: left;
}
.cid-tNMegcIOVa .item-title {
  text-align: left;
}
.cid-tNMegcIOVa .item-subtitle {
  text-align: left;
}
.cid-tvsP3MCyAk {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsP3MCyAk h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsP3MCyAk p {
  color: #767676;
  text-align: left;
}
.cid-tvsP3MCyAk .card-box {
  padding-top: 2rem;
}
.cid-tvsP3MCyAk .card-wrapper {
  height: 100%;
}
.cid-tvsP3MCyAk P {
  color: #232323;
}
.cid-tvsP4cGstK {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsP4cGstK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsP4cGstK p {
  color: #767676;
  text-align: left;
}
.cid-tvsP4cGstK .card-box {
  padding-top: 2rem;
}
.cid-tvsP4cGstK .card-wrapper {
  height: 100%;
}
.cid-tvsP4cGstK P {
  color: #232323;
}
.cid-tvsP5ea6YD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsP5ea6YD h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsP5ea6YD p {
  color: #767676;
  text-align: left;
}
.cid-tvsP5ea6YD .card-box {
  padding-top: 2rem;
}
.cid-tvsP5ea6YD .card-wrapper {
  height: 100%;
}
.cid-tvsP5ea6YD P {
  color: #232323;
}
.cid-tvsP5ZBdqX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsP5ZBdqX h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsP5ZBdqX p {
  color: #767676;
  text-align: left;
}
.cid-tvsP5ZBdqX .card-box {
  padding-top: 2rem;
}
.cid-tvsP5ZBdqX .card-wrapper {
  height: 100%;
}
.cid-tvsP5ZBdqX P {
  color: #232323;
}
.cid-tvsP6HYyJD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsP6HYyJD h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsP6HYyJD p {
  color: #767676;
  text-align: left;
}
.cid-tvsP6HYyJD .card-box {
  padding-top: 2rem;
}
.cid-tvsP6HYyJD .card-wrapper {
  height: 100%;
}
.cid-tvsP6HYyJD P {
  color: #232323;
}
.cid-tvsP7wfJ7u {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsP7wfJ7u h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsP7wfJ7u p {
  color: #767676;
  text-align: left;
}
.cid-tvsP7wfJ7u .card-box {
  padding-top: 2rem;
}
.cid-tvsP7wfJ7u .card-wrapper {
  height: 100%;
}
.cid-tvsP7wfJ7u P {
  color: #232323;
}
.cid-tvsP8vhReE {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsP8vhReE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsP8vhReE p {
  color: #767676;
  text-align: left;
}
.cid-tvsP8vhReE .card-box {
  padding-top: 2rem;
}
.cid-tvsP8vhReE .card-wrapper {
  height: 100%;
}
.cid-tvsP8vhReE P {
  color: #232323;
}
.cid-tvsP9hUO8E {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsP9hUO8E h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsP9hUO8E p {
  color: #767676;
  text-align: left;
}
.cid-tvsP9hUO8E .card-box {
  padding-top: 2rem;
}
.cid-tvsP9hUO8E .card-wrapper {
  height: 100%;
}
.cid-tvsP9hUO8E P {
  color: #232323;
}
.cid-tvsPa5DTi3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsPa5DTi3 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsPa5DTi3 p {
  color: #767676;
  text-align: left;
}
.cid-tvsPa5DTi3 .card-box {
  padding-top: 2rem;
}
.cid-tvsPa5DTi3 .card-wrapper {
  height: 100%;
}
.cid-tvsPa5DTi3 P {
  color: #232323;
}
.cid-tvsPaVwmnN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsPaVwmnN h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsPaVwmnN p {
  color: #767676;
  text-align: left;
}
.cid-tvsPaVwmnN .card-box {
  padding-top: 2rem;
}
.cid-tvsPaVwmnN .card-wrapper {
  height: 100%;
}
.cid-tvsPaVwmnN P {
  color: #232323;
}
.cid-tvsPbLv8pj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsPbLv8pj h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsPbLv8pj p {
  color: #767676;
  text-align: left;
}
.cid-tvsPbLv8pj .card-box {
  padding-top: 2rem;
}
.cid-tvsPbLv8pj .card-wrapper {
  height: 100%;
}
.cid-tvsPbLv8pj P {
  color: #232323;
}
.cid-tvsPcAV72v {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsPcAV72v h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsPcAV72v p {
  color: #767676;
  text-align: left;
}
.cid-tvsPcAV72v .card-box {
  padding-top: 2rem;
}
.cid-tvsPcAV72v .card-wrapper {
  height: 100%;
}
.cid-tvsPcAV72v P {
  color: #232323;
}
.cid-tvsQapiGkQ {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #be2525;
}
.cid-tvsQapiGkQ .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvsQapiGkQ .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-uFIekt807k {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uFIekt807k img,
.cid-uFIekt807k .item-img {
  width: 100%;
}
.cid-uFIekt807k .item:focus,
.cid-uFIekt807k span:focus {
  outline: none;
}
.cid-uFIekt807k .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uFIekt807k .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uFIekt807k .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFIekt807k .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uFIekt807k .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uFIekt807k .mbr-section-title {
  color: #232323;
}
.cid-uFIekt807k .mbr-text,
.cid-uFIekt807k .mbr-section-btn {
  text-align: left;
}
.cid-uFIekt807k .item-title {
  text-align: left;
}
.cid-uFIekt807k .item-subtitle {
  text-align: left;
}
.cid-uwKjWyodrv {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uwKjWyodrv img,
.cid-uwKjWyodrv .item-img {
  width: 100%;
}
.cid-uwKjWyodrv .item:focus,
.cid-uwKjWyodrv span:focus {
  outline: none;
}
.cid-uwKjWyodrv .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uwKjWyodrv .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uwKjWyodrv .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwKjWyodrv .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uwKjWyodrv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uwKjWyodrv .mbr-section-title {
  color: #232323;
}
.cid-uwKjWyodrv .mbr-text,
.cid-uwKjWyodrv .mbr-section-btn {
  text-align: left;
}
.cid-uwKjWyodrv .item-title {
  text-align: left;
}
.cid-uwKjWyodrv .item-subtitle {
  text-align: left;
}
.cid-uwKjvhL5sw {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uwKjvhL5sw img,
.cid-uwKjvhL5sw .item-img {
  width: 100%;
}
.cid-uwKjvhL5sw .item:focus,
.cid-uwKjvhL5sw span:focus {
  outline: none;
}
.cid-uwKjvhL5sw .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uwKjvhL5sw .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uwKjvhL5sw .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwKjvhL5sw .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uwKjvhL5sw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uwKjvhL5sw .mbr-section-title {
  color: #232323;
}
.cid-uwKjvhL5sw .mbr-text,
.cid-uwKjvhL5sw .mbr-section-btn {
  text-align: left;
}
.cid-uwKjvhL5sw .item-title {
  text-align: left;
}
.cid-uwKjvhL5sw .item-subtitle {
  text-align: left;
}
.cid-ulwQP0uJNb {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ulwQP0uJNb img,
.cid-ulwQP0uJNb .item-img {
  width: 100%;
}
.cid-ulwQP0uJNb .item:focus,
.cid-ulwQP0uJNb span:focus {
  outline: none;
}
.cid-ulwQP0uJNb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ulwQP0uJNb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ulwQP0uJNb .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ulwQP0uJNb .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ulwQP0uJNb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ulwQP0uJNb .mbr-section-title {
  color: #232323;
}
.cid-ulwQP0uJNb .mbr-text,
.cid-ulwQP0uJNb .mbr-section-btn {
  text-align: left;
}
.cid-ulwQP0uJNb .item-title {
  text-align: left;
}
.cid-ulwQP0uJNb .item-subtitle {
  text-align: left;
}
.cid-udAPT6qcvp {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-udAPT6qcvp img,
.cid-udAPT6qcvp .item-img {
  width: 100%;
}
.cid-udAPT6qcvp .item:focus,
.cid-udAPT6qcvp span:focus {
  outline: none;
}
.cid-udAPT6qcvp .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-udAPT6qcvp .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-udAPT6qcvp .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-udAPT6qcvp .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-udAPT6qcvp .mbr-section-btn {
  margin-top: auto !important;
}
.cid-udAPT6qcvp .mbr-section-title {
  color: #232323;
}
.cid-udAPT6qcvp .mbr-text,
.cid-udAPT6qcvp .mbr-section-btn {
  text-align: left;
}
.cid-udAPT6qcvp .item-title {
  text-align: left;
}
.cid-udAPT6qcvp .item-subtitle {
  text-align: left;
}
.cid-u1hus3uvUN {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u1hus3uvUN img,
.cid-u1hus3uvUN .item-img {
  width: 100%;
}
.cid-u1hus3uvUN .item:focus,
.cid-u1hus3uvUN span:focus {
  outline: none;
}
.cid-u1hus3uvUN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u1hus3uvUN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u1hus3uvUN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u1hus3uvUN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u1hus3uvUN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u1hus3uvUN .mbr-section-title {
  color: #232323;
}
.cid-u1hus3uvUN .mbr-text,
.cid-u1hus3uvUN .mbr-section-btn {
  text-align: left;
}
.cid-u1hus3uvUN .item-title {
  text-align: left;
}
.cid-u1hus3uvUN .item-subtitle {
  text-align: left;
}
.cid-tQTrEKMq5y {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tQTrEKMq5y img,
.cid-tQTrEKMq5y .item-img {
  width: 100%;
}
.cid-tQTrEKMq5y .item:focus,
.cid-tQTrEKMq5y span:focus {
  outline: none;
}
.cid-tQTrEKMq5y .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tQTrEKMq5y .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tQTrEKMq5y .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tQTrEKMq5y .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tQTrEKMq5y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tQTrEKMq5y .mbr-section-title {
  color: #232323;
}
.cid-tQTrEKMq5y .mbr-text,
.cid-tQTrEKMq5y .mbr-section-btn {
  text-align: left;
}
.cid-tQTrEKMq5y .item-title {
  text-align: left;
}
.cid-tQTrEKMq5y .item-subtitle {
  text-align: left;
}
.cid-tECf6k395U {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tECf6k395U img,
.cid-tECf6k395U .item-img {
  width: 100%;
}
.cid-tECf6k395U .item:focus,
.cid-tECf6k395U span:focus {
  outline: none;
}
.cid-tECf6k395U .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tECf6k395U .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tECf6k395U .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tECf6k395U .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tECf6k395U .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tECf6k395U .mbr-section-title {
  color: #232323;
}
.cid-tECf6k395U .mbr-text,
.cid-tECf6k395U .mbr-section-btn {
  text-align: left;
}
.cid-tECf6k395U .item-title {
  text-align: left;
}
.cid-tECf6k395U .item-subtitle {
  text-align: left;
}
.cid-twvF8vcUqO {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-twvF8vcUqO img,
.cid-twvF8vcUqO .item-img {
  width: 100%;
}
.cid-twvF8vcUqO .item:focus,
.cid-twvF8vcUqO span:focus {
  outline: none;
}
.cid-twvF8vcUqO .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-twvF8vcUqO .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-twvF8vcUqO .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-twvF8vcUqO .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-twvF8vcUqO .mbr-section-btn {
  margin-top: auto !important;
}
.cid-twvF8vcUqO .mbr-section-title {
  color: #232323;
}
.cid-twvF8vcUqO .mbr-text,
.cid-twvF8vcUqO .mbr-section-btn {
  text-align: left;
}
.cid-twvF8vcUqO .item-title {
  text-align: left;
}
.cid-twvF8vcUqO .item-subtitle {
  text-align: left;
}
.cid-tvsQaZRULF {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tvsQaZRULF img,
.cid-tvsQaZRULF .item-img {
  width: 100%;
}
.cid-tvsQaZRULF .item:focus,
.cid-tvsQaZRULF span:focus {
  outline: none;
}
.cid-tvsQaZRULF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvsQaZRULF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvsQaZRULF .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvsQaZRULF .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvsQaZRULF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvsQaZRULF .mbr-section-title {
  color: #232323;
}
.cid-tvsQaZRULF .mbr-text,
.cid-tvsQaZRULF .mbr-section-btn {
  text-align: left;
}
.cid-tvsQaZRULF .item-title {
  text-align: left;
}
.cid-tvsQaZRULF .item-subtitle {
  text-align: left;
}
.cid-tvsQcNxYfi {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tvsQcNxYfi img,
.cid-tvsQcNxYfi .item-img {
  width: 100%;
}
.cid-tvsQcNxYfi .item:focus,
.cid-tvsQcNxYfi span:focus {
  outline: none;
}
.cid-tvsQcNxYfi .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvsQcNxYfi .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvsQcNxYfi .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvsQcNxYfi .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvsQcNxYfi .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvsQcNxYfi .mbr-section-title {
  color: #232323;
}
.cid-tvsQcNxYfi .mbr-text,
.cid-tvsQcNxYfi .mbr-section-btn {
  text-align: left;
}
.cid-tvsQcNxYfi .item-title {
  text-align: left;
}
.cid-tvsQcNxYfi .item-subtitle {
  text-align: left;
}
.cid-tvsQdSSHfb {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tvsQdSSHfb img,
.cid-tvsQdSSHfb .item-img {
  width: 100%;
}
.cid-tvsQdSSHfb .item:focus,
.cid-tvsQdSSHfb span:focus {
  outline: none;
}
.cid-tvsQdSSHfb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvsQdSSHfb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvsQdSSHfb .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvsQdSSHfb .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvsQdSSHfb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvsQdSSHfb .mbr-section-title {
  color: #232323;
}
.cid-tvsQdSSHfb .mbr-text,
.cid-tvsQdSSHfb .mbr-section-btn {
  text-align: left;
}
.cid-tvsQdSSHfb .item-title {
  text-align: left;
}
.cid-tvsQdSSHfb .item-subtitle {
  text-align: left;
}
.cid-tvsQeTggwW {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tvsQeTggwW img,
.cid-tvsQeTggwW .item-img {
  width: 100%;
}
.cid-tvsQeTggwW .item:focus,
.cid-tvsQeTggwW span:focus {
  outline: none;
}
.cid-tvsQeTggwW .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tvsQeTggwW .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tvsQeTggwW .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tvsQeTggwW .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tvsQeTggwW .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tvsQeTggwW .mbr-section-title {
  color: #232323;
}
.cid-tvsQeTggwW .mbr-text,
.cid-tvsQeTggwW .mbr-section-btn {
  text-align: left;
}
.cid-tvsQeTggwW .item-title {
  text-align: left;
}
.cid-tvsQeTggwW .item-subtitle {
  text-align: left;
}
.cid-tvsSiyrGKF {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #145e27;
}
.cid-tvsSiyrGKF .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvsSiyrGKF .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-tvsSiyrGKF .mbr-section-title {
  color: #ffffff;
}
.cid-uQylNspVwc {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uQylNspVwc img,
.cid-uQylNspVwc .item-img {
  width: 100%;
}
.cid-uQylNspVwc .item:focus,
.cid-uQylNspVwc span:focus {
  outline: none;
}
.cid-uQylNspVwc .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uQylNspVwc .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uQylNspVwc .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uQylNspVwc .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uQylNspVwc .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uQylNspVwc .mbr-section-title {
  color: #232323;
}
.cid-uQylNspVwc .mbr-text,
.cid-uQylNspVwc .mbr-section-btn {
  text-align: left;
}
.cid-uQylNspVwc .item-title {
  text-align: left;
}
.cid-uQylNspVwc .item-subtitle {
  text-align: left;
}
.cid-uOoh3LtHex {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOoh3LtHex img,
.cid-uOoh3LtHex .item-img {
  width: 100%;
}
.cid-uOoh3LtHex .item:focus,
.cid-uOoh3LtHex span:focus {
  outline: none;
}
.cid-uOoh3LtHex .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOoh3LtHex .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOoh3LtHex .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOoh3LtHex .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOoh3LtHex .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOoh3LtHex .mbr-section-title {
  color: #232323;
}
.cid-uOoh3LtHex .mbr-text,
.cid-uOoh3LtHex .mbr-section-btn {
  text-align: left;
}
.cid-uOoh3LtHex .item-title {
  text-align: left;
}
.cid-uOoh3LtHex .item-subtitle {
  text-align: left;
}
.cid-uLtckwxgbB {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uLtckwxgbB img,
.cid-uLtckwxgbB .item-img {
  width: 100%;
}
.cid-uLtckwxgbB .item:focus,
.cid-uLtckwxgbB span:focus {
  outline: none;
}
.cid-uLtckwxgbB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLtckwxgbB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLtckwxgbB .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLtckwxgbB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLtckwxgbB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLtckwxgbB .mbr-section-title {
  color: #232323;
}
.cid-uLtckwxgbB .mbr-text,
.cid-uLtckwxgbB .mbr-section-btn {
  text-align: left;
}
.cid-uLtckwxgbB .item-title {
  text-align: left;
}
.cid-uLtckwxgbB .item-subtitle {
  text-align: left;
}
.cid-uIDfD99IY2 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uIDfD99IY2 img,
.cid-uIDfD99IY2 .item-img {
  width: 100%;
}
.cid-uIDfD99IY2 .item:focus,
.cid-uIDfD99IY2 span:focus {
  outline: none;
}
.cid-uIDfD99IY2 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uIDfD99IY2 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uIDfD99IY2 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIDfD99IY2 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uIDfD99IY2 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uIDfD99IY2 .mbr-section-title {
  color: #232323;
}
.cid-uIDfD99IY2 .mbr-text,
.cid-uIDfD99IY2 .mbr-section-btn {
  text-align: left;
}
.cid-uIDfD99IY2 .item-title {
  text-align: left;
}
.cid-uIDfD99IY2 .item-subtitle {
  text-align: left;
}
.cid-uFI3jfD6tr {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uFI3jfD6tr img,
.cid-uFI3jfD6tr .item-img {
  width: 100%;
}
.cid-uFI3jfD6tr .item:focus,
.cid-uFI3jfD6tr span:focus {
  outline: none;
}
.cid-uFI3jfD6tr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uFI3jfD6tr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uFI3jfD6tr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uFI3jfD6tr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uFI3jfD6tr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uFI3jfD6tr .mbr-section-title {
  color: #232323;
}
.cid-uFI3jfD6tr .mbr-text,
.cid-uFI3jfD6tr .mbr-section-btn {
  text-align: left;
}
.cid-uFI3jfD6tr .item-title {
  text-align: left;
}
.cid-uFI3jfD6tr .item-subtitle {
  text-align: left;
}
.cid-uzXd5a9BgN {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uzXd5a9BgN img,
.cid-uzXd5a9BgN .item-img {
  width: 100%;
}
.cid-uzXd5a9BgN .item:focus,
.cid-uzXd5a9BgN span:focus {
  outline: none;
}
.cid-uzXd5a9BgN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uzXd5a9BgN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uzXd5a9BgN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uzXd5a9BgN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uzXd5a9BgN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uzXd5a9BgN .mbr-section-title {
  color: #232323;
}
.cid-uzXd5a9BgN .mbr-text,
.cid-uzXd5a9BgN .mbr-section-btn {
  text-align: left;
}
.cid-uzXd5a9BgN .item-title {
  text-align: left;
}
.cid-uzXd5a9BgN .item-subtitle {
  text-align: left;
}
.cid-uwWuZQ7Zoq {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uwWuZQ7Zoq img,
.cid-uwWuZQ7Zoq .item-img {
  width: 100%;
}
.cid-uwWuZQ7Zoq .item:focus,
.cid-uwWuZQ7Zoq span:focus {
  outline: none;
}
.cid-uwWuZQ7Zoq .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uwWuZQ7Zoq .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uwWuZQ7Zoq .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uwWuZQ7Zoq .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uwWuZQ7Zoq .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uwWuZQ7Zoq .mbr-section-title {
  color: #232323;
}
.cid-uwWuZQ7Zoq .mbr-text,
.cid-uwWuZQ7Zoq .mbr-section-btn {
  text-align: left;
}
.cid-uwWuZQ7Zoq .item-title {
  text-align: left;
}
.cid-uwWuZQ7Zoq .item-subtitle {
  text-align: left;
}
.cid-utQVDqAnIo {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-utQVDqAnIo img,
.cid-utQVDqAnIo .item-img {
  width: 100%;
}
.cid-utQVDqAnIo .item:focus,
.cid-utQVDqAnIo span:focus {
  outline: none;
}
.cid-utQVDqAnIo .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-utQVDqAnIo .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-utQVDqAnIo .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-utQVDqAnIo .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-utQVDqAnIo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-utQVDqAnIo .mbr-section-title {
  color: #232323;
}
.cid-utQVDqAnIo .mbr-text,
.cid-utQVDqAnIo .mbr-section-btn {
  text-align: left;
}
.cid-utQVDqAnIo .item-title {
  text-align: left;
}
.cid-utQVDqAnIo .item-subtitle {
  text-align: left;
}
.cid-ure4gbJUgE {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ure4gbJUgE img,
.cid-ure4gbJUgE .item-img {
  width: 100%;
}
.cid-ure4gbJUgE .item:focus,
.cid-ure4gbJUgE span:focus {
  outline: none;
}
.cid-ure4gbJUgE .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ure4gbJUgE .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ure4gbJUgE .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ure4gbJUgE .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ure4gbJUgE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ure4gbJUgE .mbr-section-title {
  color: #232323;
}
.cid-ure4gbJUgE .mbr-text,
.cid-ure4gbJUgE .mbr-section-btn {
  text-align: left;
}
.cid-ure4gbJUgE .item-title {
  text-align: left;
}
.cid-ure4gbJUgE .item-subtitle {
  text-align: left;
}
.cid-uo1HoAxvYS {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uo1HoAxvYS img,
.cid-uo1HoAxvYS .item-img {
  width: 100%;
}
.cid-uo1HoAxvYS .item:focus,
.cid-uo1HoAxvYS span:focus {
  outline: none;
}
.cid-uo1HoAxvYS .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uo1HoAxvYS .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uo1HoAxvYS .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uo1HoAxvYS .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uo1HoAxvYS .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uo1HoAxvYS .mbr-section-title {
  color: #232323;
}
.cid-uo1HoAxvYS .mbr-text,
.cid-uo1HoAxvYS .mbr-section-btn {
  text-align: left;
}
.cid-uo1HoAxvYS .item-title {
  text-align: left;
}
.cid-uo1HoAxvYS .item-subtitle {
  text-align: left;
}
.cid-ulyC70ofuJ {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ulyC70ofuJ img,
.cid-ulyC70ofuJ .item-img {
  width: 100%;
}
.cid-ulyC70ofuJ .item:focus,
.cid-ulyC70ofuJ span:focus {
  outline: none;
}
.cid-ulyC70ofuJ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ulyC70ofuJ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ulyC70ofuJ .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ulyC70ofuJ .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ulyC70ofuJ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ulyC70ofuJ .mbr-section-title {
  color: #232323;
}
.cid-ulyC70ofuJ .mbr-text,
.cid-ulyC70ofuJ .mbr-section-btn {
  text-align: left;
}
.cid-ulyC70ofuJ .item-title {
  text-align: left;
}
.cid-ulyC70ofuJ .item-subtitle {
  text-align: left;
}
.cid-uiQ4mdp5hr {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uiQ4mdp5hr img,
.cid-uiQ4mdp5hr .item-img {
  width: 100%;
}
.cid-uiQ4mdp5hr .item:focus,
.cid-uiQ4mdp5hr span:focus {
  outline: none;
}
.cid-uiQ4mdp5hr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uiQ4mdp5hr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uiQ4mdp5hr .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uiQ4mdp5hr .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uiQ4mdp5hr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uiQ4mdp5hr .mbr-section-title {
  color: #232323;
}
.cid-uiQ4mdp5hr .mbr-text,
.cid-uiQ4mdp5hr .mbr-section-btn {
  text-align: left;
}
.cid-uiQ4mdp5hr .item-title {
  text-align: left;
}
.cid-uiQ4mdp5hr .item-subtitle {
  text-align: left;
}
.cid-ug9SeFEVsV {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ug9SeFEVsV img,
.cid-ug9SeFEVsV .item-img {
  width: 100%;
}
.cid-ug9SeFEVsV .item:focus,
.cid-ug9SeFEVsV span:focus {
  outline: none;
}
.cid-ug9SeFEVsV .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ug9SeFEVsV .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ug9SeFEVsV .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ug9SeFEVsV .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ug9SeFEVsV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ug9SeFEVsV .mbr-section-title {
  color: #232323;
}
.cid-ug9SeFEVsV .mbr-text,
.cid-ug9SeFEVsV .mbr-section-btn {
  text-align: left;
}
.cid-ug9SeFEVsV .item-title {
  text-align: left;
}
.cid-ug9SeFEVsV .item-subtitle {
  text-align: left;
}
.cid-uc0y0hGaft {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uc0y0hGaft img,
.cid-uc0y0hGaft .item-img {
  width: 100%;
}
.cid-uc0y0hGaft .item:focus,
.cid-uc0y0hGaft span:focus {
  outline: none;
}
.cid-uc0y0hGaft .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uc0y0hGaft .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uc0y0hGaft .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uc0y0hGaft .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uc0y0hGaft .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uc0y0hGaft .mbr-section-title {
  color: #232323;
}
.cid-uc0y0hGaft .mbr-text,
.cid-uc0y0hGaft .mbr-section-btn {
  text-align: left;
}
.cid-uc0y0hGaft .item-title {
  text-align: left;
}
.cid-uc0y0hGaft .item-subtitle {
  text-align: left;
}
.cid-uaAxtEo1mb {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uaAxtEo1mb img,
.cid-uaAxtEo1mb .item-img {
  width: 100%;
}
.cid-uaAxtEo1mb .item:focus,
.cid-uaAxtEo1mb span:focus {
  outline: none;
}
.cid-uaAxtEo1mb .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uaAxtEo1mb .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uaAxtEo1mb .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uaAxtEo1mb .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uaAxtEo1mb .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uaAxtEo1mb .mbr-section-title {
  color: #232323;
}
.cid-uaAxtEo1mb .mbr-text,
.cid-uaAxtEo1mb .mbr-section-btn {
  text-align: left;
}
.cid-uaAxtEo1mb .item-title {
  text-align: left;
}
.cid-uaAxtEo1mb .item-subtitle {
  text-align: left;
}
.cid-u7L0ly17ow {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u7L0ly17ow img,
.cid-u7L0ly17ow .item-img {
  width: 100%;
}
.cid-u7L0ly17ow .item:focus,
.cid-u7L0ly17ow span:focus {
  outline: none;
}
.cid-u7L0ly17ow .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u7L0ly17ow .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u7L0ly17ow .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u7L0ly17ow .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u7L0ly17ow .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u7L0ly17ow .mbr-section-title {
  color: #232323;
}
.cid-u7L0ly17ow .mbr-text,
.cid-u7L0ly17ow .mbr-section-btn {
  text-align: left;
}
.cid-u7L0ly17ow .item-title {
  text-align: left;
}
.cid-u7L0ly17ow .item-subtitle {
  text-align: left;
}
.cid-u4M1Ocag2H {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u4M1Ocag2H img,
.cid-u4M1Ocag2H .item-img {
  width: 100%;
}
.cid-u4M1Ocag2H .item:focus,
.cid-u4M1Ocag2H span:focus {
  outline: none;
}
.cid-u4M1Ocag2H .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u4M1Ocag2H .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u4M1Ocag2H .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u4M1Ocag2H .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u4M1Ocag2H .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u4M1Ocag2H .mbr-section-title {
  color: #232323;
}
.cid-u4M1Ocag2H .mbr-text,
.cid-u4M1Ocag2H .mbr-section-btn {
  text-align: left;
}
.cid-u4M1Ocag2H .item-title {
  text-align: left;
}
.cid-u4M1Ocag2H .item-subtitle {
  text-align: left;
}
.cid-u1aaFCRDZu {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u1aaFCRDZu img,
.cid-u1aaFCRDZu .item-img {
  width: 100%;
}
.cid-u1aaFCRDZu .item:focus,
.cid-u1aaFCRDZu span:focus {
  outline: none;
}
.cid-u1aaFCRDZu .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u1aaFCRDZu .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u1aaFCRDZu .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u1aaFCRDZu .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u1aaFCRDZu .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u1aaFCRDZu .mbr-section-title {
  color: #232323;
}
.cid-u1aaFCRDZu .mbr-text,
.cid-u1aaFCRDZu .mbr-section-btn {
  text-align: left;
}
.cid-u1aaFCRDZu .item-title {
  text-align: left;
}
.cid-u1aaFCRDZu .item-subtitle {
  text-align: left;
}
.cid-tYmliY8j1c {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tYmliY8j1c img,
.cid-tYmliY8j1c .item-img {
  width: 100%;
}
.cid-tYmliY8j1c .item:focus,
.cid-tYmliY8j1c span:focus {
  outline: none;
}
.cid-tYmliY8j1c .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tYmliY8j1c .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tYmliY8j1c .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYmliY8j1c .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tYmliY8j1c .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tYmliY8j1c .mbr-section-title {
  color: #232323;
}
.cid-tYmliY8j1c .mbr-text,
.cid-tYmliY8j1c .mbr-section-btn {
  text-align: left;
}
.cid-tYmliY8j1c .item-title {
  text-align: left;
}
.cid-tYmliY8j1c .item-subtitle {
  text-align: left;
}
.cid-tUydM6wOUN {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tUydM6wOUN img,
.cid-tUydM6wOUN .item-img {
  width: 100%;
}
.cid-tUydM6wOUN .item:focus,
.cid-tUydM6wOUN span:focus {
  outline: none;
}
.cid-tUydM6wOUN .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tUydM6wOUN .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tUydM6wOUN .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tUydM6wOUN .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tUydM6wOUN .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tUydM6wOUN .mbr-section-title {
  color: #232323;
}
.cid-tUydM6wOUN .mbr-text,
.cid-tUydM6wOUN .mbr-section-btn {
  text-align: left;
}
.cid-tUydM6wOUN .item-title {
  text-align: left;
}
.cid-tUydM6wOUN .item-subtitle {
  text-align: left;
}
.cid-tTa86cgEK4 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tTa86cgEK4 img,
.cid-tTa86cgEK4 .item-img {
  width: 100%;
}
.cid-tTa86cgEK4 .item:focus,
.cid-tTa86cgEK4 span:focus {
  outline: none;
}
.cid-tTa86cgEK4 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tTa86cgEK4 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tTa86cgEK4 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tTa86cgEK4 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tTa86cgEK4 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tTa86cgEK4 .mbr-section-title {
  color: #232323;
}
.cid-tTa86cgEK4 .mbr-text,
.cid-tTa86cgEK4 .mbr-section-btn {
  text-align: left;
}
.cid-tTa86cgEK4 .item-title {
  text-align: left;
}
.cid-tTa86cgEK4 .item-subtitle {
  text-align: left;
}
.cid-tPKaBxOrEK {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tPKaBxOrEK img,
.cid-tPKaBxOrEK .item-img {
  width: 100%;
}
.cid-tPKaBxOrEK .item:focus,
.cid-tPKaBxOrEK span:focus {
  outline: none;
}
.cid-tPKaBxOrEK .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tPKaBxOrEK .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tPKaBxOrEK .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tPKaBxOrEK .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tPKaBxOrEK .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tPKaBxOrEK .mbr-section-title {
  color: #232323;
}
.cid-tPKaBxOrEK .mbr-text,
.cid-tPKaBxOrEK .mbr-section-btn {
  text-align: left;
}
.cid-tPKaBxOrEK .item-title {
  text-align: left;
}
.cid-tPKaBxOrEK .item-subtitle {
  text-align: left;
}
.cid-tMVr68JINT {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tMVr68JINT img,
.cid-tMVr68JINT .item-img {
  width: 100%;
}
.cid-tMVr68JINT .item:focus,
.cid-tMVr68JINT span:focus {
  outline: none;
}
.cid-tMVr68JINT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tMVr68JINT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tMVr68JINT .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tMVr68JINT .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tMVr68JINT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tMVr68JINT .mbr-section-title {
  color: #232323;
}
.cid-tMVr68JINT .mbr-text,
.cid-tMVr68JINT .mbr-section-btn {
  text-align: left;
}
.cid-tMVr68JINT .item-title {
  text-align: left;
}
.cid-tMVr68JINT .item-subtitle {
  text-align: left;
}
.cid-tJmdkHvB0n {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tJmdkHvB0n img,
.cid-tJmdkHvB0n .item-img {
  width: 100%;
}
.cid-tJmdkHvB0n .item:focus,
.cid-tJmdkHvB0n span:focus {
  outline: none;
}
.cid-tJmdkHvB0n .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tJmdkHvB0n .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tJmdkHvB0n .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tJmdkHvB0n .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tJmdkHvB0n .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tJmdkHvB0n .mbr-section-title {
  color: #232323;
}
.cid-tJmdkHvB0n .mbr-text,
.cid-tJmdkHvB0n .mbr-section-btn {
  text-align: left;
}
.cid-tJmdkHvB0n .item-title {
  text-align: left;
}
.cid-tJmdkHvB0n .item-subtitle {
  text-align: left;
}
.cid-tH4KYjMUZT {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tH4KYjMUZT img,
.cid-tH4KYjMUZT .item-img {
  width: 100%;
}
.cid-tH4KYjMUZT .item:focus,
.cid-tH4KYjMUZT span:focus {
  outline: none;
}
.cid-tH4KYjMUZT .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tH4KYjMUZT .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tH4KYjMUZT .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tH4KYjMUZT .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tH4KYjMUZT .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tH4KYjMUZT .mbr-section-title {
  color: #232323;
}
.cid-tH4KYjMUZT .mbr-text,
.cid-tH4KYjMUZT .mbr-section-btn {
  text-align: left;
}
.cid-tH4KYjMUZT .item-title {
  text-align: left;
}
.cid-tH4KYjMUZT .item-subtitle {
  text-align: left;
}
.cid-tEwMis3JQl {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tEwMis3JQl img,
.cid-tEwMis3JQl .item-img {
  width: 100%;
}
.cid-tEwMis3JQl .item:focus,
.cid-tEwMis3JQl span:focus {
  outline: none;
}
.cid-tEwMis3JQl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tEwMis3JQl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tEwMis3JQl .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tEwMis3JQl .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tEwMis3JQl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tEwMis3JQl .mbr-section-title {
  color: #232323;
}
.cid-tEwMis3JQl .mbr-text,
.cid-tEwMis3JQl .mbr-section-btn {
  text-align: left;
}
.cid-tEwMis3JQl .item-title {
  text-align: left;
}
.cid-tEwMis3JQl .item-subtitle {
  text-align: left;
}
.cid-tC4UnTxQ2Y {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tC4UnTxQ2Y img,
.cid-tC4UnTxQ2Y .item-img {
  width: 100%;
}
.cid-tC4UnTxQ2Y .item:focus,
.cid-tC4UnTxQ2Y span:focus {
  outline: none;
}
.cid-tC4UnTxQ2Y .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tC4UnTxQ2Y .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tC4UnTxQ2Y .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tC4UnTxQ2Y .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tC4UnTxQ2Y .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tC4UnTxQ2Y .mbr-section-title {
  color: #232323;
}
.cid-tC4UnTxQ2Y .mbr-text,
.cid-tC4UnTxQ2Y .mbr-section-btn {
  text-align: left;
}
.cid-tC4UnTxQ2Y .item-title {
  text-align: left;
}
.cid-tC4UnTxQ2Y .item-subtitle {
  text-align: left;
}
.cid-ty3aYnRAqe {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-ty3aYnRAqe img,
.cid-ty3aYnRAqe .item-img {
  width: 100%;
}
.cid-ty3aYnRAqe .item:focus,
.cid-ty3aYnRAqe span:focus {
  outline: none;
}
.cid-ty3aYnRAqe .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ty3aYnRAqe .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ty3aYnRAqe .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ty3aYnRAqe .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ty3aYnRAqe .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ty3aYnRAqe .mbr-section-title {
  color: #232323;
}
.cid-ty3aYnRAqe .mbr-text,
.cid-ty3aYnRAqe .mbr-section-btn {
  text-align: left;
}
.cid-ty3aYnRAqe .item-title {
  text-align: left;
}
.cid-ty3aYnRAqe .item-subtitle {
  text-align: left;
}
.cid-tvsSjm12Kg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSjm12Kg h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSjm12Kg p {
  color: #767676;
  text-align: left;
}
.cid-tvsSjm12Kg .card-box {
  padding-top: 2rem;
}
.cid-tvsSjm12Kg .card-wrapper {
  height: 100%;
}
.cid-tvsSjm12Kg P {
  color: #232323;
}
.cid-tvsSjOHdYp {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSjOHdYp h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSjOHdYp p {
  color: #767676;
  text-align: left;
}
.cid-tvsSjOHdYp .card-box {
  padding-top: 2rem;
}
.cid-tvsSjOHdYp .card-wrapper {
  height: 100%;
}
.cid-tvsSjOHdYp P {
  color: #232323;
}
.cid-tvsSkjNwMa {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSkjNwMa h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSkjNwMa p {
  color: #767676;
  text-align: left;
}
.cid-tvsSkjNwMa .card-box {
  padding-top: 2rem;
}
.cid-tvsSkjNwMa .card-wrapper {
  height: 100%;
}
.cid-tvsSkjNwMa P {
  color: #232323;
}
.cid-tvsTU82LvJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsTU82LvJ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsTU82LvJ p {
  color: #767676;
  text-align: left;
}
.cid-tvsTU82LvJ .card-box {
  padding-top: 2rem;
}
.cid-tvsTU82LvJ .card-wrapper {
  height: 100%;
}
.cid-tvsTU82LvJ P {
  color: #232323;
}
.cid-tvsTSGNiUI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsTSGNiUI h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsTSGNiUI p {
  color: #767676;
  text-align: left;
}
.cid-tvsTSGNiUI .card-box {
  padding-top: 2rem;
}
.cid-tvsTSGNiUI .card-wrapper {
  height: 100%;
}
.cid-tvsTSGNiUI P {
  color: #232323;
}
.cid-tvsSl3hLwI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSl3hLwI h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSl3hLwI p {
  color: #767676;
  text-align: left;
}
.cid-tvsSl3hLwI .card-box {
  padding-top: 2rem;
}
.cid-tvsSl3hLwI .card-wrapper {
  height: 100%;
}
.cid-tvsSl3hLwI P {
  color: #232323;
}
.cid-tvsSm3NhgJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSm3NhgJ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSm3NhgJ p {
  color: #767676;
  text-align: left;
}
.cid-tvsSm3NhgJ .card-box {
  padding-top: 2rem;
}
.cid-tvsSm3NhgJ .card-wrapper {
  height: 100%;
}
.cid-tvsSm3NhgJ P {
  color: #232323;
}
.cid-tvsSmPKdty {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSmPKdty h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSmPKdty p {
  color: #767676;
  text-align: left;
}
.cid-tvsSmPKdty .card-box {
  padding-top: 2rem;
}
.cid-tvsSmPKdty .card-wrapper {
  height: 100%;
}
.cid-tvsSmPKdty P {
  color: #232323;
}
.cid-tvsSopSrHn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSopSrHn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSopSrHn p {
  color: #767676;
  text-align: left;
}
.cid-tvsSopSrHn .card-box {
  padding-top: 2rem;
}
.cid-tvsSopSrHn .card-wrapper {
  height: 100%;
}
.cid-tvsSopSrHn P {
  color: #232323;
}
.cid-tvsSpoMrDz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSpoMrDz h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSpoMrDz p {
  color: #767676;
  text-align: left;
}
.cid-tvsSpoMrDz .card-box {
  padding-top: 2rem;
}
.cid-tvsSpoMrDz .card-wrapper {
  height: 100%;
}
.cid-tvsSpoMrDz P {
  color: #232323;
}
.cid-tvsSqBcxfV {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSqBcxfV h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSqBcxfV p {
  color: #767676;
  text-align: left;
}
.cid-tvsSqBcxfV .card-box {
  padding-top: 2rem;
}
.cid-tvsSqBcxfV .card-wrapper {
  height: 100%;
}
.cid-tvsSqBcxfV P {
  color: #232323;
}
.cid-tvsSrmyzzM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSrmyzzM h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSrmyzzM p {
  color: #767676;
  text-align: left;
}
.cid-tvsSrmyzzM .card-box {
  padding-top: 2rem;
}
.cid-tvsSrmyzzM .card-wrapper {
  height: 100%;
}
.cid-tvsSrmyzzM P {
  color: #232323;
}
.cid-tvsSscVnRD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSscVnRD h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSscVnRD p {
  color: #767676;
  text-align: left;
}
.cid-tvsSscVnRD .card-box {
  padding-top: 2rem;
}
.cid-tvsSscVnRD .card-wrapper {
  height: 100%;
}
.cid-tvsSscVnRD P {
  color: #232323;
}
.cid-tvsStgY7Fn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsStgY7Fn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsStgY7Fn p {
  color: #767676;
  text-align: left;
}
.cid-tvsStgY7Fn .card-box {
  padding-top: 2rem;
}
.cid-tvsStgY7Fn .card-wrapper {
  height: 100%;
}
.cid-tvsStgY7Fn P {
  color: #232323;
}
.cid-tvsSucuVfR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSucuVfR h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSucuVfR p {
  color: #767676;
  text-align: left;
}
.cid-tvsSucuVfR .card-box {
  padding-top: 2rem;
}
.cid-tvsSucuVfR .card-wrapper {
  height: 100%;
}
.cid-tvsSucuVfR P {
  color: #232323;
}
.cid-tvsSuYoIx5 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSuYoIx5 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSuYoIx5 p {
  color: #767676;
  text-align: left;
}
.cid-tvsSuYoIx5 .card-box {
  padding-top: 2rem;
}
.cid-tvsSuYoIx5 .card-wrapper {
  height: 100%;
}
.cid-tvsSuYoIx5 P {
  color: #232323;
}
.cid-tvsSvIjErL {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSvIjErL h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSvIjErL p {
  color: #767676;
  text-align: left;
}
.cid-tvsSvIjErL .card-box {
  padding-top: 2rem;
}
.cid-tvsSvIjErL .card-wrapper {
  height: 100%;
}
.cid-tvsSvIjErL P {
  color: #232323;
}
.cid-tvsSwshRQX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSwshRQX h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSwshRQX p {
  color: #767676;
  text-align: left;
}
.cid-tvsSwshRQX .card-box {
  padding-top: 2rem;
}
.cid-tvsSwshRQX .card-wrapper {
  height: 100%;
}
.cid-tvsSwshRQX P {
  color: #232323;
}
.cid-tvsSxxAyvT {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSxxAyvT h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSxxAyvT p {
  color: #767676;
  text-align: left;
}
.cid-tvsSxxAyvT .card-box {
  padding-top: 2rem;
}
.cid-tvsSxxAyvT .card-wrapper {
  height: 100%;
}
.cid-tvsSxxAyvT P {
  color: #232323;
}
.cid-tvsSyhEg8r {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSyhEg8r h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSyhEg8r p {
  color: #767676;
  text-align: left;
}
.cid-tvsSyhEg8r .card-box {
  padding-top: 2rem;
}
.cid-tvsSyhEg8r .card-wrapper {
  height: 100%;
}
.cid-tvsSyhEg8r P {
  color: #232323;
}
.cid-tvsSzb1FKv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSzb1FKv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSzb1FKv p {
  color: #767676;
  text-align: left;
}
.cid-tvsSzb1FKv .card-box {
  padding-top: 2rem;
}
.cid-tvsSzb1FKv .card-wrapper {
  height: 100%;
}
.cid-tvsSzb1FKv P {
  color: #232323;
}
.cid-tvsSzZngdo {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSzZngdo h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSzZngdo p {
  color: #767676;
  text-align: left;
}
.cid-tvsSzZngdo .card-box {
  padding-top: 2rem;
}
.cid-tvsSzZngdo .card-wrapper {
  height: 100%;
}
.cid-tvsSzZngdo P {
  color: #232323;
}
.cid-tvsSBb8xF8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSBb8xF8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSBb8xF8 p {
  color: #767676;
  text-align: left;
}
.cid-tvsSBb8xF8 .card-box {
  padding-top: 2rem;
}
.cid-tvsSBb8xF8 .card-wrapper {
  height: 100%;
}
.cid-tvsSBb8xF8 P {
  color: #232323;
}
.cid-tvsSBWMrf8 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSBWMrf8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSBWMrf8 p {
  color: #767676;
  text-align: left;
}
.cid-tvsSBWMrf8 .card-box {
  padding-top: 2rem;
}
.cid-tvsSBWMrf8 .card-wrapper {
  height: 100%;
}
.cid-tvsSBWMrf8 P {
  color: #232323;
}
.cid-tvsSCRWeZa {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSCRWeZa h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSCRWeZa p {
  color: #767676;
  text-align: left;
}
.cid-tvsSCRWeZa .card-box {
  padding-top: 2rem;
}
.cid-tvsSCRWeZa .card-wrapper {
  height: 100%;
}
.cid-tvsSCRWeZa P {
  color: #232323;
}
.cid-tvsSDHY6Nc {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSDHY6Nc h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSDHY6Nc p {
  color: #767676;
  text-align: left;
}
.cid-tvsSDHY6Nc .card-box {
  padding-top: 2rem;
}
.cid-tvsSDHY6Nc .card-wrapper {
  height: 100%;
}
.cid-tvsSDHY6Nc P {
  color: #232323;
}
.cid-tvsSEAaUon {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSEAaUon h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSEAaUon p {
  color: #767676;
  text-align: left;
}
.cid-tvsSEAaUon .card-box {
  padding-top: 2rem;
}
.cid-tvsSEAaUon .card-wrapper {
  height: 100%;
}
.cid-tvsSEAaUon P {
  color: #232323;
}
.cid-tvsSGq4YP5 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSGq4YP5 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSGq4YP5 p {
  color: #767676;
  text-align: left;
}
.cid-tvsSGq4YP5 .card-box {
  padding-top: 2rem;
}
.cid-tvsSGq4YP5 .card-wrapper {
  height: 100%;
}
.cid-tvsSGq4YP5 P {
  color: #232323;
}
.cid-tvsSHxt7CG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSHxt7CG h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSHxt7CG p {
  color: #767676;
  text-align: left;
}
.cid-tvsSHxt7CG .card-box {
  padding-top: 2rem;
}
.cid-tvsSHxt7CG .card-wrapper {
  height: 100%;
}
.cid-tvsSHxt7CG P {
  color: #232323;
}
.cid-tvsSImAvvo {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSImAvvo h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSImAvvo p {
  color: #767676;
  text-align: left;
}
.cid-tvsSImAvvo .card-box {
  padding-top: 2rem;
}
.cid-tvsSImAvvo .card-wrapper {
  height: 100%;
}
.cid-tvsSImAvvo P {
  color: #232323;
}
.cid-tvsSJsiw2r {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSJsiw2r h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSJsiw2r p {
  color: #767676;
  text-align: left;
}
.cid-tvsSJsiw2r .card-box {
  padding-top: 2rem;
}
.cid-tvsSJsiw2r .card-wrapper {
  height: 100%;
}
.cid-tvsSJsiw2r P {
  color: #232323;
}
.cid-tvsSKbLlW0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSKbLlW0 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSKbLlW0 p {
  color: #767676;
  text-align: left;
}
.cid-tvsSKbLlW0 .card-box {
  padding-top: 2rem;
}
.cid-tvsSKbLlW0 .card-wrapper {
  height: 100%;
}
.cid-tvsSKbLlW0 P {
  color: #232323;
}
.cid-tvsSL6opa1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSL6opa1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSL6opa1 p {
  color: #767676;
  text-align: left;
}
.cid-tvsSL6opa1 .card-box {
  padding-top: 2rem;
}
.cid-tvsSL6opa1 .card-wrapper {
  height: 100%;
}
.cid-tvsSL6opa1 P {
  color: #232323;
}
.cid-tvsSLYOt86 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSLYOt86 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSLYOt86 p {
  color: #767676;
  text-align: left;
}
.cid-tvsSLYOt86 .card-box {
  padding-top: 2rem;
}
.cid-tvsSLYOt86 .card-wrapper {
  height: 100%;
}
.cid-tvsSLYOt86 P {
  color: #232323;
}
.cid-tvsSMQkVcm {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSMQkVcm h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSMQkVcm p {
  color: #767676;
  text-align: left;
}
.cid-tvsSMQkVcm .card-box {
  padding-top: 2rem;
}
.cid-tvsSMQkVcm .card-wrapper {
  height: 100%;
}
.cid-tvsSMQkVcm P {
  color: #232323;
}
.cid-tvsSNTnV6R {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSNTnV6R h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSNTnV6R p {
  color: #767676;
  text-align: left;
}
.cid-tvsSNTnV6R .card-box {
  padding-top: 2rem;
}
.cid-tvsSNTnV6R .card-wrapper {
  height: 100%;
}
.cid-tvsSNTnV6R P {
  color: #232323;
}
.cid-tvsSOMrb8a {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvsSOMrb8a h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvsSOMrb8a p {
  color: #767676;
  text-align: left;
}
.cid-tvsSOMrb8a .card-box {
  padding-top: 2rem;
}
.cid-tvsSOMrb8a .card-wrapper {
  height: 100%;
}
.cid-tvsSOMrb8a P {
  color: #232323;
}
.cid-tvsSPIMrx9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fcfcfa;
}
.cid-tvt09g64Xk {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #be2525;
}
.cid-tvt09g64Xk .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvt09g64Xk .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-tvt09g64Xk .mbr-text,
.cid-tvt09g64Xk .mbr-section-btn {
  color: #ffffff;
}
.cid-uta7qVtWq9 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #47b5ed;
}
.cid-uta7qVtWq9 img,
.cid-uta7qVtWq9 .item-img {
  width: 100%;
}
.cid-uta7qVtWq9 .item:focus,
.cid-uta7qVtWq9 span:focus {
  outline: none;
}
.cid-uta7qVtWq9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uta7qVtWq9 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uta7qVtWq9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uta7qVtWq9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uta7qVtWq9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uta7qVtWq9 .mbr-section-title {
  color: #232323;
}
.cid-uta7qVtWq9 .mbr-text,
.cid-uta7qVtWq9 .mbr-section-btn {
  text-align: left;
}
.cid-uta7qVtWq9 .item-title {
  text-align: left;
}
.cid-uta7qVtWq9 .item-subtitle {
  text-align: left;
}
.cid-ut612LRA95 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #6ec7f2;
}
.cid-ut612LRA95 img,
.cid-ut612LRA95 .item-img {
  width: 100%;
}
.cid-ut612LRA95 .item:focus,
.cid-ut612LRA95 span:focus {
  outline: none;
}
.cid-ut612LRA95 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ut612LRA95 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ut612LRA95 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ut612LRA95 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ut612LRA95 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ut612LRA95 .mbr-section-title {
  color: #232323;
}
.cid-ut612LRA95 .mbr-text,
.cid-ut612LRA95 .mbr-section-btn {
  text-align: left;
}
.cid-ut612LRA95 .item-title {
  text-align: left;
}
.cid-ut612LRA95 .item-subtitle {
  text-align: left;
}
.cid-uLFSXavWJs {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #98dee8;
}
.cid-uLFSXavWJs img,
.cid-uLFSXavWJs .item-img {
  width: 100%;
}
.cid-uLFSXavWJs .item:focus,
.cid-uLFSXavWJs span:focus {
  outline: none;
}
.cid-uLFSXavWJs .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uLFSXavWJs .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uLFSXavWJs .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uLFSXavWJs .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uLFSXavWJs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uLFSXavWJs .mbr-section-title {
  color: #232323;
}
.cid-uLFSXavWJs .mbr-text,
.cid-uLFSXavWJs .mbr-section-btn {
  text-align: left;
}
.cid-uLFSXavWJs .item-title {
  text-align: left;
}
.cid-uLFSXavWJs .item-subtitle {
  text-align: left;
}
.cid-tY8tAiqFti {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #9fdbf8;
}
.cid-tY8tAiqFti img,
.cid-tY8tAiqFti .item-img {
  width: 100%;
}
.cid-tY8tAiqFti .item:focus,
.cid-tY8tAiqFti span:focus {
  outline: none;
}
.cid-tY8tAiqFti .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tY8tAiqFti .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tY8tAiqFti .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tY8tAiqFti .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tY8tAiqFti .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tY8tAiqFti .mbr-section-title {
  color: #232323;
}
.cid-tY8tAiqFti .mbr-text,
.cid-tY8tAiqFti .mbr-section-btn {
  text-align: left;
}
.cid-tY8tAiqFti .item-title {
  text-align: left;
}
.cid-tY8tAiqFti .item-subtitle {
  text-align: left;
}
.cid-tBNwGRtqcB {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tBNwGRtqcB img,
.cid-tBNwGRtqcB .item-img {
  width: 100%;
}
.cid-tBNwGRtqcB .item:focus,
.cid-tBNwGRtqcB span:focus {
  outline: none;
}
.cid-tBNwGRtqcB .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tBNwGRtqcB .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tBNwGRtqcB .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tBNwGRtqcB .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tBNwGRtqcB .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tBNwGRtqcB .mbr-section-title {
  color: #232323;
}
.cid-tBNwGRtqcB .mbr-text,
.cid-tBNwGRtqcB .mbr-section-btn {
  text-align: left;
}
.cid-tBNwGRtqcB .item-title {
  text-align: left;
}
.cid-tBNwGRtqcB .item-subtitle {
  text-align: left;
}
.cid-tyHm2fmiup {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tyHm2fmiup img,
.cid-tyHm2fmiup .item-img {
  width: 100%;
}
.cid-tyHm2fmiup .item:focus,
.cid-tyHm2fmiup span:focus {
  outline: none;
}
.cid-tyHm2fmiup .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tyHm2fmiup .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tyHm2fmiup .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tyHm2fmiup .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tyHm2fmiup .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tyHm2fmiup .mbr-section-title {
  color: #232323;
}
.cid-tyHm2fmiup .mbr-text,
.cid-tyHm2fmiup .mbr-section-btn {
  text-align: left;
}
.cid-tyHm2fmiup .item-title {
  text-align: left;
}
.cid-tyHm2fmiup .item-subtitle {
  text-align: left;
}
.cid-tvt0caP4Xr {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-tvt0caP4Xr .card-img {
  background-color: #fff;
}
.cid-tvt0caP4Xr .card {
  align-self: stretch;
}
.cid-tvt0caP4Xr .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-tvt0caP4Xr h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvt0caP4Xr p {
  text-align: left;
}
.cid-tvt0caP4Xr .mbr-text {
  color: #232323;
}
.cid-tvt0caP4Xr .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvt0caP4Xr .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-tvt0caP4Xr .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-tvt0fyWCkt {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvt0fyWCkt h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvt0fyWCkt p {
  color: #767676;
  text-align: left;
}
.cid-tvt0fyWCkt .card-box {
  padding-top: 2rem;
}
.cid-tvt0fyWCkt .card-wrapper {
  height: 100%;
}
.cid-tvt0fyWCkt P {
  color: #232323;
}
.cid-tvt0gv0inc {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvt0gv0inc h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvt0gv0inc p {
  color: #767676;
  text-align: left;
}
.cid-tvt0gv0inc .card-box {
  padding-top: 2rem;
}
.cid-tvt0gv0inc .card-wrapper {
  height: 100%;
}
.cid-tvt0gv0inc P {
  color: #232323;
}
.cid-tvt0hFkQvB {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #efefef;
}
.cid-tvt0hFkQvB .card-img {
  background-color: #fff;
}
.cid-tvt0hFkQvB .card {
  align-self: stretch;
}
.cid-tvt0hFkQvB .card-box {
  padding: 2rem;
  background-color: #ffffff;
}
.cid-tvt0hFkQvB h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvt0hFkQvB p {
  text-align: left;
}
.cid-tvt0hFkQvB .mbr-text {
  color: #232323;
}
.cid-tvt0hFkQvB .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvt0hFkQvB .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-tvt0hFkQvB .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-tvtJejao6j {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #0c2e6c;
}
.cid-tvtJejao6j .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvtJejao6j .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-tvtJejao6j .mbr-section-title {
  color: #ffffff;
}
.cid-tvtJejao6j .mbr-text,
.cid-tvtJejao6j .mbr-section-btn {
  color: #ffffff;
}
.cid-tvtJeXhnMb {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvtJeXhnMb h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtJeXhnMb p {
  color: #767676;
  text-align: left;
}
.cid-tvtJeXhnMb .card-box {
  padding-top: 2rem;
}
.cid-tvtJeXhnMb .card-wrapper {
  height: 100%;
}
.cid-tvtJeXhnMb P {
  color: #232323;
}
.cid-tvtJfuYUa8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tvtJfuYUa8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtJfuYUa8 p {
  color: #767676;
  text-align: left;
}
.cid-tvtJfuYUa8 .card-box {
  padding-top: 2rem;
}
.cid-tvtJfuYUa8 .card-wrapper {
  height: 100%;
}
.cid-tvtJfuYUa8 P {
  color: #232323;
}
.cid-tvtJgbXnb4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tvtJgbXnb4 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtJgbXnb4 p {
  color: #767676;
  text-align: left;
}
.cid-tvtJgbXnb4 .card-box {
  padding-top: 2rem;
}
.cid-tvtJgbXnb4 .card-wrapper {
  height: 100%;
}
.cid-tvtJgbXnb4 P {
  color: #232323;
}
.cid-tvtJgYz0VA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tvtJgYz0VA h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtJgYz0VA p {
  color: #767676;
  text-align: left;
}
.cid-tvtJgYz0VA .card-box {
  padding-top: 2rem;
}
.cid-tvtJgYz0VA .card-wrapper {
  height: 100%;
}
.cid-tvtJgYz0VA P {
  color: #232323;
}
.cid-tvtJhSCEdm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tvtJhSCEdm h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtJhSCEdm p {
  color: #767676;
  text-align: left;
}
.cid-tvtJhSCEdm .card-box {
  padding-top: 2rem;
}
.cid-tvtJhSCEdm .card-wrapper {
  height: 100%;
}
.cid-tvtJhSCEdm P {
  color: #232323;
}
.cid-tvtJiEBmCl {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvtJiEBmCl h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtJiEBmCl p {
  color: #767676;
  text-align: left;
}
.cid-tvtJiEBmCl .card-box {
  padding-top: 2rem;
}
.cid-tvtJiEBmCl .card-wrapper {
  height: 100%;
}
.cid-tvtJiEBmCl P {
  color: #232323;
}
.cid-tvtJjD3YyW {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvtJjD3YyW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtJjD3YyW p {
  color: #767676;
  text-align: left;
}
.cid-tvtJjD3YyW .card-box {
  padding-top: 2rem;
}
.cid-tvtJjD3YyW .card-wrapper {
  height: 100%;
}
.cid-tvtJjD3YyW P {
  color: #232323;
}
.cid-tvtJksaoOp {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvtJksaoOp h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtJksaoOp p {
  color: #767676;
  text-align: left;
}
.cid-tvtJksaoOp .card-box {
  padding-top: 2rem;
}
.cid-tvtJksaoOp .card-wrapper {
  height: 100%;
}
.cid-tvtJksaoOp P {
  color: #232323;
}
.cid-tvtJlwngO3 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvtJlwngO3 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtJlwngO3 p {
  color: #767676;
  text-align: left;
}
.cid-tvtJlwngO3 .card-box {
  padding-top: 2rem;
}
.cid-tvtJlwngO3 .card-wrapper {
  height: 100%;
}
.cid-tvtJlwngO3 P {
  color: #232323;
}
.cid-tvtJnfRBop {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvtJnfRBop h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtJnfRBop p {
  color: #767676;
  text-align: left;
}
.cid-tvtJnfRBop .card-box {
  padding-top: 2rem;
}
.cid-tvtJnfRBop .card-wrapper {
  height: 100%;
}
.cid-tvtJnfRBop P {
  color: #232323;
}
.cid-tvtJoq8I5B {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvtJoq8I5B h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtJoq8I5B p {
  color: #767676;
  text-align: left;
}
.cid-tvtJoq8I5B .card-box {
  padding-top: 2rem;
}
.cid-tvtJoq8I5B .card-wrapper {
  height: 100%;
}
.cid-tvtJoq8I5B P {
  color: #232323;
}
.cid-tvtJpj1NfI {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvtJpj1NfI h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtJpj1NfI p {
  color: #767676;
  text-align: left;
}
.cid-tvtJpj1NfI .card-box {
  padding-top: 2rem;
}
.cid-tvtJpj1NfI .card-wrapper {
  height: 100%;
}
.cid-tvtJpj1NfI P {
  color: #232323;
}
.cid-tvtJq9ezbg {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvtJq9ezbg h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtJq9ezbg p {
  color: #767676;
  text-align: left;
}
.cid-tvtJq9ezbg .card-box {
  padding-top: 2rem;
}
.cid-tvtJq9ezbg .card-wrapper {
  height: 100%;
}
.cid-tvtJq9ezbg P {
  color: #232323;
}
.cid-tvtJr70ukc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tvtJr70ukc .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtJr70ukc h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtJr70ukc p {
  color: #767676;
  text-align: left;
}
.cid-tvtJr70ukc .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtJr70ukc .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtJr70ukc .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtJr70ukc P {
  color: #232323;
}
.cid-tvtJrYDxli {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tvtJrYDxli .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtJrYDxli h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtJrYDxli p {
  color: #767676;
  text-align: left;
}
.cid-tvtJrYDxli .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtJrYDxli .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtJrYDxli .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtJrYDxli P {
  color: #232323;
}
.cid-tvtJsOJmh6 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvtJsOJmh6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtJsOJmh6 p {
  color: #767676;
  text-align: left;
}
.cid-tvtJsOJmh6 .card-box {
  padding-top: 2rem;
}
.cid-tvtJsOJmh6 .card-wrapper {
  height: 100%;
}
.cid-tvtJsOJmh6 P {
  color: #232323;
}
.cid-tvtJtYOER7 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tvtJtYOER7 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtJtYOER7 p {
  color: #767676;
  text-align: left;
}
.cid-tvtJtYOER7 .card-box {
  padding-top: 2rem;
}
.cid-tvtJtYOER7 .card-wrapper {
  height: 100%;
}
.cid-tvtJtYOER7 P {
  color: #232323;
}
.cid-tvtMzFnWGL {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tvtMzFnWGL .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvtMzFnWGL .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-tvtMAJ8KnH {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvtMAJ8KnH h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMAJ8KnH p {
  color: #767676;
  text-align: left;
}
.cid-tvtMAJ8KnH .card-box {
  padding-top: 2rem;
}
.cid-tvtMAJ8KnH .card-wrapper {
  height: 100%;
}
.cid-tvtMAJ8KnH P {
  color: #232323;
}
.cid-tvtMBiRPdC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvtMBiRPdC h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMBiRPdC p {
  color: #767676;
  text-align: left;
}
.cid-tvtMBiRPdC .card-box {
  padding-top: 2rem;
}
.cid-tvtMBiRPdC .card-wrapper {
  height: 100%;
}
.cid-tvtMBiRPdC P {
  color: #232323;
}
.cid-tvtMJawn91 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvtMJawn91 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMJawn91 p {
  color: #767676;
  text-align: left;
}
.cid-tvtMJawn91 .card-box {
  padding-top: 2rem;
}
.cid-tvtMJawn91 .card-wrapper {
  height: 100%;
}
.cid-tvtMJawn91 P {
  color: #232323;
}
.cid-tvtMJUY254 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvtMJUY254 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMJUY254 p {
  color: #767676;
  text-align: left;
}
.cid-tvtMJUY254 .card-box {
  padding-top: 2rem;
}
.cid-tvtMJUY254 .card-wrapper {
  height: 100%;
}
.cid-tvtMJUY254 P {
  color: #232323;
}
.cid-tvtMKHNhxv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvtMKHNhxv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMKHNhxv p {
  color: #767676;
  text-align: left;
}
.cid-tvtMKHNhxv .card-box {
  padding-top: 2rem;
}
.cid-tvtMKHNhxv .card-wrapper {
  height: 100%;
}
.cid-tvtMKHNhxv P {
  color: #232323;
}
.cid-tvtMLs9LA4 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvtMLs9LA4 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMLs9LA4 p {
  color: #767676;
  text-align: left;
}
.cid-tvtMLs9LA4 .card-box {
  padding-top: 2rem;
}
.cid-tvtMLs9LA4 .card-wrapper {
  height: 100%;
}
.cid-tvtMLs9LA4 P {
  color: #232323;
}
.cid-tvtMMhIRHx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tvtMMhIRHx h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMMhIRHx p {
  color: #767676;
  text-align: left;
}
.cid-tvtMMhIRHx .card-box {
  padding-top: 2rem;
}
.cid-tvtMMhIRHx .card-wrapper {
  height: 100%;
}
.cid-tvtMMhIRHx P {
  color: #232323;
}
.cid-tvtMN0SXjl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fcfcfa;
}
.cid-tvtMN0SXjl .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtMN0SXjl h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMN0SXjl p {
  color: #767676;
  text-align: left;
}
.cid-tvtMN0SXjl .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtMN0SXjl .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtMN0SXjl .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtMN0SXjl P {
  color: #232323;
}
.cid-tvtMNN00wO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #fcfcfa;
}
.cid-tvtMNN00wO .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtMNN00wO h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMNN00wO p {
  color: #767676;
  text-align: left;
}
.cid-tvtMNN00wO .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtMNN00wO .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtMNN00wO .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtMNN00wO P {
  color: #232323;
}
.cid-tvtMOw9DlL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tvtMOw9DlL .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtMOw9DlL h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMOw9DlL p {
  color: #767676;
  text-align: left;
}
.cid-tvtMOw9DlL .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtMOw9DlL .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtMOw9DlL .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtMOw9DlL P {
  color: #232323;
}
.cid-tvtMPka7Ob {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tvtMPka7Ob .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtMPka7Ob h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMPka7Ob p {
  color: #767676;
  text-align: left;
}
.cid-tvtMPka7Ob .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtMPka7Ob .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtMPka7Ob .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtMPka7Ob P {
  color: #232323;
}
.cid-tvtMQ2rH9l {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tvtMQ2rH9l .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtMQ2rH9l h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMQ2rH9l p {
  color: #767676;
  text-align: left;
}
.cid-tvtMQ2rH9l .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtMQ2rH9l .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtMQ2rH9l .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtMQ2rH9l P {
  color: #232323;
}
.cid-tvtMQUPPKK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tvtMQUPPKK .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtMQUPPKK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMQUPPKK p {
  color: #767676;
  text-align: left;
}
.cid-tvtMQUPPKK .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtMQUPPKK .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtMQUPPKK .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtMQUPPKK P {
  color: #232323;
}
.cid-tvtMRDQQor {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tvtMRDQQor .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtMRDQQor h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMRDQQor p {
  color: #767676;
  text-align: left;
}
.cid-tvtMRDQQor .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtMRDQQor .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtMRDQQor .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtMRDQQor P {
  color: #232323;
}
.cid-tvtMSn9Ybl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tvtMSn9Ybl .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtMSn9Ybl h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMSn9Ybl p {
  color: #767676;
  text-align: left;
}
.cid-tvtMSn9Ybl .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtMSn9Ybl .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtMSn9Ybl .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtMSn9Ybl P {
  color: #232323;
}
.cid-tvtMT4DF82 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tvtMT4DF82 .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtMT4DF82 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMT4DF82 p {
  color: #767676;
  text-align: left;
}
.cid-tvtMT4DF82 .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtMT4DF82 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtMT4DF82 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtMT4DF82 P {
  color: #232323;
}
.cid-tvtMTTGo6A {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tvtMTTGo6A .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtMTTGo6A h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMTTGo6A p {
  color: #767676;
  text-align: left;
}
.cid-tvtMTTGo6A .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtMTTGo6A .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtMTTGo6A .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtMTTGo6A P {
  color: #232323;
}
.cid-tvtMUIkEJF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tvtMUIkEJF .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtMUIkEJF h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtMUIkEJF p {
  color: #767676;
  text-align: left;
}
.cid-tvtMUIkEJF .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtMUIkEJF .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtMUIkEJF .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtMUIkEJF P {
  color: #232323;
}
.cid-tvtO4vKxf9 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-tvtO4vKxf9 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvtO4vKxf9 .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-tvtO5vFasx {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tvtO5vFasx .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtO5vFasx h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtO5vFasx p {
  color: #767676;
  text-align: left;
}
.cid-tvtO5vFasx .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtO5vFasx .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtO5vFasx .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtO5vFasx P {
  color: #232323;
}
.cid-tvtO6aE97u {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tvtO6aE97u .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtO6aE97u h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtO6aE97u p {
  color: #767676;
  text-align: left;
}
.cid-tvtO6aE97u .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtO6aE97u .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtO6aE97u .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtO6aE97u P {
  color: #232323;
}
.cid-tvtO6SVi7d {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tvtO6SVi7d .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtO6SVi7d h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtO6SVi7d p {
  color: #767676;
  text-align: left;
}
.cid-tvtO6SVi7d .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtO6SVi7d .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtO6SVi7d .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtO6SVi7d P {
  color: #232323;
}
.cid-tvtO7BMomM {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tvtO7BMomM .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtO7BMomM h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtO7BMomM p {
  color: #767676;
  text-align: left;
}
.cid-tvtO7BMomM .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtO7BMomM .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtO7BMomM .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtO7BMomM P {
  color: #232323;
}
.cid-tvtO8nrQZ7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-tvtO8nrQZ7 .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-tvtO8nrQZ7 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tvtO8nrQZ7 p {
  color: #767676;
  text-align: left;
}
.cid-tvtO8nrQZ7 .card-wrapper {
  position: relative;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tvtO8nrQZ7 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tvtO8nrQZ7 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tvtO8nrQZ7 P {
  color: #232323;
}
.cid-tIiQFpBS35 {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-tIiQFpBS35 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tIiQFpBS35 .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-u8fY6NJ5oC {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-u8fY6NJ5oC img,
.cid-u8fY6NJ5oC .item-img {
  width: 100%;
}
.cid-u8fY6NJ5oC .item:focus,
.cid-u8fY6NJ5oC span:focus {
  outline: none;
}
.cid-u8fY6NJ5oC .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-u8fY6NJ5oC .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-u8fY6NJ5oC .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-u8fY6NJ5oC .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-u8fY6NJ5oC .mbr-section-btn {
  margin-top: auto !important;
}
.cid-u8fY6NJ5oC .mbr-section-title {
  color: #232323;
}
.cid-u8fY6NJ5oC .mbr-text,
.cid-u8fY6NJ5oC .mbr-section-btn {
  text-align: left;
}
.cid-u8fY6NJ5oC .item-title {
  text-align: left;
}
.cid-u8fY6NJ5oC .item-subtitle {
  text-align: left;
}
.cid-tOUQKyh6yW {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #155ddf;
}
.cid-tOUQKyh6yW .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tOUQKyh6yW .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-tOUQKyh6yW .mbr-section-title {
  color: #ffffff;
}
.cid-tOUQKyh6yW .mbr-text,
.cid-tOUQKyh6yW .mbr-section-btn {
  color: #ffffff;
}
.cid-ux2HkAdBrD {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #4479d9;
}
.cid-ux2HkAdBrD img,
.cid-ux2HkAdBrD .item-img {
  width: 100%;
}
.cid-ux2HkAdBrD .item:focus,
.cid-ux2HkAdBrD span:focus {
  outline: none;
}
.cid-ux2HkAdBrD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ux2HkAdBrD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ux2HkAdBrD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ux2HkAdBrD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ux2HkAdBrD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ux2HkAdBrD .mbr-section-title {
  color: #232323;
}
.cid-ux2HkAdBrD .mbr-text,
.cid-ux2HkAdBrD .mbr-section-btn {
  text-align: left;
}
.cid-ux2HkAdBrD .item-title {
  text-align: left;
}
.cid-ux2HkAdBrD .item-subtitle {
  text-align: left;
}
.cid-uIaTD6SnQT {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uIaTD6SnQT .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uIaTD6SnQT .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-uOjpabS7P5 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOjpabS7P5 img,
.cid-uOjpabS7P5 .item-img {
  width: 100%;
}
.cid-uOjpabS7P5 .item:focus,
.cid-uOjpabS7P5 span:focus {
  outline: none;
}
.cid-uOjpabS7P5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOjpabS7P5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOjpabS7P5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOjpabS7P5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOjpabS7P5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOjpabS7P5 .mbr-section-title {
  color: #232323;
}
.cid-uOjpabS7P5 .mbr-text,
.cid-uOjpabS7P5 .mbr-section-btn {
  text-align: left;
}
.cid-uOjpabS7P5 .item-title {
  text-align: left;
}
.cid-uOjpabS7P5 .item-subtitle {
  text-align: left;
}
.cid-uIaTQVCXtI {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uIaTQVCXtI img,
.cid-uIaTQVCXtI .item-img {
  width: 100%;
}
.cid-uIaTQVCXtI .item:focus,
.cid-uIaTQVCXtI span:focus {
  outline: none;
}
.cid-uIaTQVCXtI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uIaTQVCXtI .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uIaTQVCXtI .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uIaTQVCXtI .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uIaTQVCXtI .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uIaTQVCXtI .mbr-section-title {
  color: #232323;
}
.cid-uIaTQVCXtI .mbr-text,
.cid-uIaTQVCXtI .mbr-section-btn {
  text-align: left;
}
.cid-uIaTQVCXtI .item-title {
  text-align: left;
}
.cid-uIaTQVCXtI .item-subtitle {
  text-align: left;
}
.cid-tvpoIFIFVc {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #9fdbf8;
}
.cid-tvpoIFIFVc .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tvpoIFIFVc .image-wrap img {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.cid-uOnqieLKJ6 {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOnqieLKJ6 img,
.cid-uOnqieLKJ6 .item-img {
  width: 100%;
}
.cid-uOnqieLKJ6 .item:focus,
.cid-uOnqieLKJ6 span:focus {
  outline: none;
}
.cid-uOnqieLKJ6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOnqieLKJ6 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOnqieLKJ6 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOnqieLKJ6 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOnqieLKJ6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOnqieLKJ6 .mbr-section-title {
  color: #232323;
}
.cid-uOnqieLKJ6 .mbr-text,
.cid-uOnqieLKJ6 .mbr-section-btn {
  text-align: left;
}
.cid-uOnqieLKJ6 .item-title {
  text-align: left;
}
.cid-uOnqieLKJ6 .item-subtitle {
  text-align: left;
}
.cid-uOnqj8NzXn {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOnqj8NzXn img,
.cid-uOnqj8NzXn .item-img {
  width: 100%;
}
.cid-uOnqj8NzXn .item:focus,
.cid-uOnqj8NzXn span:focus {
  outline: none;
}
.cid-uOnqj8NzXn .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uOnqj8NzXn .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uOnqj8NzXn .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uOnqj8NzXn .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uOnqj8NzXn .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uOnqj8NzXn .mbr-section-title {
  color: #232323;
}
.cid-uOnqj8NzXn .mbr-text,
.cid-uOnqj8NzXn .mbr-section-btn {
  text-align: left;
}
.cid-uOnqj8NzXn .item-title {
  text-align: left;
}
.cid-uOnqj8NzXn .item-subtitle {
  text-align: left;
}
