.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Noto Serif TC', serif;
  font-size: 3.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-2 {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2rem;
}
.display-4 {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'LXGW WenKai TC', handwriting;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Noto Sans TC', 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.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((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: #5c1f3d !important;
}
.bg-success {
  background-color: #fff7d4 !important;
}
.bg-info {
  background-color: #80385c !important;
}
.bg-warning {
  background-color: #fffef0 !important;
}
.bg-danger {
  background-color: #49351b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #5c1f3d !important;
  border-color: #5c1f3d !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: #1b0912 !important;
  border-color: #1b0912 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1b0912 !important;
  border-color: #1b0912 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-info,
.btn-info:active {
  background-color: #80385c !important;
  border-color: #80385c !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: #441e31 !important;
  border-color: #441e31 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #441e31 !important;
  border-color: #441e31 !important;
}
.btn-success,
.btn-success:active {
  background-color: #fff7d4 !important;
  border-color: #fff7d4 !important;
  color: #d4ad00 !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: #7d6600 !important;
  background-color: #ffe77d !important;
  border-color: #ffe77d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #d4ad00 !important;
  background-color: #ffe77d !important;
  border-color: #ffe77d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fffef0 !important;
  border-color: #fffef0 !important;
  color: #f0e000 !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: #998f00 !important;
  background-color: #fff899 !important;
  border-color: #fff899 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #f0e000 !important;
  background-color: #fff899 !important;
  border-color: #fff899 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #49351b !important;
  border-color: #49351b !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: #0a0704 !important;
  border-color: #0a0704 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0a0704 !important;
  border-color: #0a0704 !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: #5c1f3d;
  color: #5c1f3d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #1b0912 !important;
  background-color: transparent!important;
  border-color: #1b0912 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #5c1f3d !important;
  border-color: #5c1f3d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #80385c;
  color: #80385c;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #441e31 !important;
  background-color: transparent!important;
  border-color: #441e31 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #80385c !important;
  border-color: #80385c !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #fff7d4;
  color: #fff7d4;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffe77d !important;
  background-color: transparent!important;
  border-color: #ffe77d !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #d4ad00 !important;
  background-color: #fff7d4 !important;
  border-color: #fff7d4 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #fffef0;
  color: #fffef0;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #fff899 !important;
  background-color: transparent!important;
  border-color: #fff899 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #f0e000 !important;
  background-color: #fffef0 !important;
  border-color: #fffef0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #49351b;
  color: #49351b;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #0a0704 !important;
  background-color: transparent!important;
  border-color: #0a0704 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #49351b !important;
  border-color: #49351b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #5c1f3d !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #fff7d4 !important;
}
.text-info {
  color: #80385c !important;
}
.text-warning {
  color: #fffef0 !important;
}
.text-danger {
  color: #49351b !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #10050a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ffe46e !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #391929 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #fff78a !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #000000 !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: #5c1f3d;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #80385c;
}
.alert-warning {
  background-color: #fffef0;
}
.alert-danger {
  background-color: #49351b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #5c1f3d;
  border-color: #5c1f3d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #5c1f3d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #bb3f7c;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c3759c;
}
.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: #ceaa7b;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #5c1f3d !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #5c1f3d;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #5c1f3d;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #5c1f3d;
}
.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: #5c1f3d;
  border-bottom-color: #5c1f3d;
}
.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: #5c1f3d !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: #ffffff !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='%235c1f3d' %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-tFx0MP4vC1 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tFx0MP4vC1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFx0MP4vC1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tFx0MP4vC1 .image-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-tFx0MP4vC1 img {
  width: 100%;
  padding: 0;
}
.cid-tFx0MP4vC1 .text-wrapper {
  padding: 0rem 1rem 1rem 1rem;
}
@media (min-width: 992px) {
  .cid-tFx0MP4vC1 .image-wrapper {
    padding-bottom: 2rem;
  }
  .cid-tFx0MP4vC1 img {
    width: 100%;
    padding: 0;
  }
  .cid-tFx0MP4vC1 .text-wrapper {
    padding: 0 1rem 1rem 1rem;
  }
}
.cid-tFx0MP4vC1 .mbr-description {
  text-align: center;
  color: #000000;
}
.cid-tFx0MP4vC1 .mbr-text {
  color: #000000;
}
.cid-tFx0MP4vC1 .mbr-section-title {
  color: #990000;
}
.cid-tFx0MP4vC1 .p-redsub {
  color: #990000;
  font-weight: bold;
}
.cid-tFx0MP4vC1 .p-indent {
  text-indent: 2em;
}
.cid-tFx0MP4vC1 .mbr-section-subtitle {
  text-align: left;
  color: #990000;
}
.cid-tFx0QFGRkV {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tFx0QFGRkV img,
.cid-tFx0QFGRkV .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-tFx0QFGRkV .item:focus,
.cid-tFx0QFGRkV span:focus {
  outline: none;
}
.cid-tFx0QFGRkV .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-tFx0QFGRkV .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tFx0QFGRkV .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-tFx0QFGRkV .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-tFx0QFGRkV .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tFx0QFGRkV .mbr-section-title {
  color: #232323;
}
.cid-tFx0QFGRkV .mbr-text,
.cid-tFx0QFGRkV .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-tFx0QFGRkV .item-title {
  text-align: left;
}
.cid-tFx0QFGRkV .item-subtitle {
  text-align: left;
}
.cid-uBeUBf1jLI {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fadbdb;
}
.cid-uBeUBf1jLI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBeUBf1jLI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBeUBf1jLI .image-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-uBeUBf1jLI img {
  width: 100%;
  padding: 0;
}
.cid-uBeUBf1jLI .text-wrapper {
  padding: 0rem 1rem 1rem 1rem;
}
@media (min-width: 992px) {
  .cid-uBeUBf1jLI .image-wrapper {
    padding-bottom: 2rem;
  }
  .cid-uBeUBf1jLI img {
    width: 100%;
    padding: 0;
  }
  .cid-uBeUBf1jLI .text-wrapper {
    padding: 0 1rem 1rem 1rem;
  }
}
.cid-uBeUBf1jLI .mbr-description {
  text-align: center;
  color: #000000;
}
.cid-uBeUBf1jLI .mbr-text {
  color: #000000;
}
.cid-uBeUBf1jLI .mbr-section-title {
  color: #990000;
}
.cid-uBeUBf1jLI .p-redsub {
  color: #990000;
  font-weight: bold;
}
.cid-uBeUBf1jLI .p-indent {
  text-indent: 2em;
}
.cid-uBeUBf1jLI .mbr-section-subtitle {
  text-align: left;
  color: #990000;
}
.cid-tFx0XShwjj {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-twXq58bu5j {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
  overflow: hidden;
}
.cid-twXq58bu5j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uGTA5wXGpF {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGTA5wXGpF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGTA5wXGpF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uGTA5wXGpF .image-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-uGTA5wXGpF img {
  width: 100%;
  padding: 0;
}
.cid-uGTA5wXGpF .text-wrapper {
  padding: 0rem 1rem 1rem 1rem;
}
@media (min-width: 992px) {
  .cid-uGTA5wXGpF .image-wrapper {
    padding-bottom: 2rem;
  }
  .cid-uGTA5wXGpF img {
    width: 100%;
    padding: 0;
  }
  .cid-uGTA5wXGpF .text-wrapper {
    padding: 0 1rem 1rem 1rem;
  }
}
.cid-uGTA5wXGpF .mbr-description {
  text-align: center;
  color: #000000;
}
.cid-uGTA5wXGpF .mbr-text {
  color: #000000;
}
.cid-uGTA5wXGpF .mbr-section-title {
  color: #990000;
}
.cid-uGTA5wXGpF .p-redsub {
  color: #990000;
  font-weight: bold;
}
.cid-uGTA5wXGpF .p-indent {
  text-indent: 2em;
}
.cid-uGTA5wXGpF .mbr-section-subtitle {
  text-align: left;
  color: #990000;
}
.cid-uGTA6jspj8 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGTA6jspj8 img,
.cid-uGTA6jspj8 .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uGTA6jspj8 .item:focus,
.cid-uGTA6jspj8 span:focus {
  outline: none;
}
.cid-uGTA6jspj8 .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-uGTA6jspj8 .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGTA6jspj8 .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uGTA6jspj8 .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uGTA6jspj8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGTA6jspj8 .mbr-section-title {
  color: #232323;
}
.cid-uGTA6jspj8 .mbr-text,
.cid-uGTA6jspj8 .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uGTA6jspj8 .item-title {
  text-align: left;
}
.cid-uGTA6jspj8 .item-subtitle {
  text-align: left;
}
.cid-uGTA70rUcm {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fadbdb;
}
.cid-uGTA70rUcm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGTA70rUcm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uGTA70rUcm .image-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-uGTA70rUcm img {
  width: 100%;
  padding: 0;
}
.cid-uGTA70rUcm .text-wrapper {
  padding: 0rem 1rem 1rem 1rem;
}
@media (min-width: 992px) {
  .cid-uGTA70rUcm .image-wrapper {
    padding-bottom: 2rem;
  }
  .cid-uGTA70rUcm img {
    width: 100%;
    padding: 0;
  }
  .cid-uGTA70rUcm .text-wrapper {
    padding: 0 1rem 1rem 1rem;
  }
}
.cid-uGTA70rUcm .mbr-description {
  text-align: center;
  color: #000000;
}
.cid-uGTA70rUcm .mbr-text {
  color: #000000;
}
.cid-uGTA70rUcm .mbr-section-title {
  color: #990000;
}
.cid-uGTA70rUcm .p-redsub {
  color: #990000;
  font-weight: bold;
}
.cid-uGTA70rUcm .p-in2 {
  text-indent: 2em;
}
.cid-uGTA70rUcm .p-in2-fayu {
  text-indent: 2em;
}
@media (max-width: 991px) {
  .cid-uGTA70rUcm .p-in2-fayu {
    text-indent: 0em;
  }
}
.cid-uGTA70rUcm .mbr-section-subtitle {
  text-align: left;
  color: #990000;
}
.cid-uGTA7UhheL {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fadbdb;
}
.cid-uGTA7UhheL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGTA7UhheL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uGTA7UhheL .image-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-uGTA7UhheL img {
  width: 100%;
  padding: 0;
}
.cid-uGTA7UhheL .text-wrapper {
  padding: 0rem 1rem 1rem 1rem;
}
@media (min-width: 992px) {
  .cid-uGTA7UhheL .image-wrapper {
    padding-bottom: 2rem;
  }
  .cid-uGTA7UhheL img {
    width: 100%;
    padding: 0;
  }
  .cid-uGTA7UhheL .text-wrapper {
    padding: 0 1rem 1rem 1rem;
  }
}
.cid-uGTA7UhheL .mbr-description {
  text-align: center;
  color: #000000;
}
.cid-uGTA7UhheL .mbr-text {
  color: #000000;
}
.cid-uGTA7UhheL .mbr-section-title {
  color: #990000;
}
.cid-uGTA7UhheL .p-redsub {
  color: #990000;
  font-weight: bold;
}
.cid-uGTA7UhheL .p-in2 {
  text-indent: 2em;
}
.cid-uGTA7UhheL .p-in2-fayu {
  text-indent: 2em;
}
@media (max-width: 991px) {
  .cid-uGTA7UhheL .p-in2-fayu {
    text-indent: 0em;
  }
}
.cid-uGTA7UhheL .mbr-section-subtitle {
  text-align: left;
  color: #990000;
}
.cid-uGTA7UhheL .line-fayu {
  color: #990000;
}
.cid-tFx0XShwjj {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-twXq58bu5j {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
  overflow: hidden;
}
.cid-twXq58bu5j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uGTB8YeNAI {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGTB8YeNAI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGTB8YeNAI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uGTB8YeNAI .image-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-uGTB8YeNAI img {
  width: 100%;
  padding: 0;
}
.cid-uGTB8YeNAI .text-wrapper {
  padding: 0rem 1rem 1rem 1rem;
}
@media (min-width: 992px) {
  .cid-uGTB8YeNAI .image-wrapper {
    padding-bottom: 2rem;
  }
  .cid-uGTB8YeNAI img {
    width: 100%;
    padding: 0;
  }
  .cid-uGTB8YeNAI .text-wrapper {
    padding: 0 1rem 1rem 1rem;
  }
}
.cid-uGTB8YeNAI .mbr-description {
  text-align: center;
  color: #000000;
}
.cid-uGTB8YeNAI .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uGTB8YeNAI .mbr-section-title {
  color: #990000;
}
.cid-uGTB8YeNAI .p-redsub {
  color: #990000;
  font-weight: bold;
}
.cid-uGTB8YeNAI .p-indent {
  text-indent: 2em;
}
.cid-uGTB8YeNAI .mbr-section-subtitle {
  text-align: left;
  color: #990000;
}
.cid-uGTB9FkeoR {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGTB9FkeoR img,
.cid-uGTB9FkeoR .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uGTB9FkeoR .item:focus,
.cid-uGTB9FkeoR span:focus {
  outline: none;
}
.cid-uGTB9FkeoR .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-uGTB9FkeoR .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGTB9FkeoR .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uGTB9FkeoR .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uGTB9FkeoR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGTB9FkeoR .mbr-section-title {
  color: #232323;
}
.cid-uGTB9FkeoR .mbr-text,
.cid-uGTB9FkeoR .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uGTB9FkeoR .item-title {
  text-align: left;
}
.cid-uGTB9FkeoR .item-subtitle {
  text-align: left;
}
.cid-tFx0XShwjj {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-twXq58bu5j {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
  overflow: hidden;
}
.cid-twXq58bu5j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uGTCi8nX14 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGTCi8nX14 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGTCi8nX14 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uGTCi8nX14 .image-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-uGTCi8nX14 img {
  width: 100%;
  padding: 0;
}
.cid-uGTCi8nX14 .text-wrapper {
  padding: 0rem 1rem 1rem 1rem;
}
@media (min-width: 992px) {
  .cid-uGTCi8nX14 .image-wrapper {
    padding-bottom: 2rem;
  }
  .cid-uGTCi8nX14 img {
    width: 100%;
    padding: 0;
  }
  .cid-uGTCi8nX14 .text-wrapper {
    padding: 0 1rem 1rem 1rem;
  }
}
.cid-uGTCi8nX14 .mbr-description {
  text-align: center;
  color: #000000;
}
.cid-uGTCi8nX14 .mbr-text {
  color: #000000;
}
.cid-uGTCi8nX14 .mbr-section-title {
  color: #990000;
}
.cid-uGTCi8nX14 .p-redsub {
  color: #990000;
  font-weight: bold;
}
.cid-uGTCi8nX14 .p-indent {
  text-indent: 2em;
}
.cid-uGTCi8nX14 .mbr-section-subtitle {
  text-align: left;
  color: #990000;
}
.cid-uGTCiR6SVE {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uGTCiR6SVE img,
.cid-uGTCiR6SVE .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uGTCiR6SVE .item:focus,
.cid-uGTCiR6SVE span:focus {
  outline: none;
}
.cid-uGTCiR6SVE .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-uGTCiR6SVE .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGTCiR6SVE .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uGTCiR6SVE .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uGTCiR6SVE .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGTCiR6SVE .mbr-section-title {
  color: #232323;
}
.cid-uGTCiR6SVE .mbr-text,
.cid-uGTCiR6SVE .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uGTCiR6SVE .item-title {
  text-align: left;
}
.cid-uGTCiR6SVE .item-subtitle {
  text-align: left;
}
.cid-tFx0XShwjj {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-twXq58bu5j {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
  overflow: hidden;
}
.cid-twXq58bu5j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uGTDgeQ2aP {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uGTDgeQ2aP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uGTDgeQ2aP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uGTDgeQ2aP .image-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-uGTDgeQ2aP img {
  width: 100%;
  padding: 0;
}
.cid-uGTDgeQ2aP .text-wrapper {
  padding: 0rem 1rem 1rem 1rem;
}
@media (min-width: 992px) {
  .cid-uGTDgeQ2aP .image-wrapper {
    padding-bottom: 2rem;
  }
  .cid-uGTDgeQ2aP img {
    width: 100%;
    padding: 0;
  }
  .cid-uGTDgeQ2aP .text-wrapper {
    padding: 0 1rem 1rem 1rem;
  }
}
.cid-uGTDgeQ2aP .mbr-description {
  text-align: center;
  color: #000000;
}
.cid-uGTDgeQ2aP .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uGTDgeQ2aP .mbr-section-title {
  color: #990000;
}
.cid-uGTDgeQ2aP .p-redsub {
  color: #990000;
  font-weight: bold;
}
.cid-uGTDgeQ2aP .p-indent {
  text-indent: 2em;
}
.cid-uGTDgeQ2aP .mbr-section-subtitle {
  text-align: left;
  color: #990000;
}
.cid-uGTDhKVXW7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGTDhKVXW7 img,
.cid-uGTDhKVXW7 .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uGTDhKVXW7 .item:focus,
.cid-uGTDhKVXW7 span:focus {
  outline: none;
}
.cid-uGTDhKVXW7 .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-uGTDhKVXW7 .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGTDhKVXW7 .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uGTDhKVXW7 .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uGTDhKVXW7 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGTDhKVXW7 .mbr-section-title {
  color: #232323;
}
.cid-uGTDhKVXW7 .mbr-text,
.cid-uGTDhKVXW7 .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uGTDhKVXW7 .item-title {
  text-align: left;
}
.cid-uGTDhKVXW7 .item-subtitle {
  text-align: left;
}
.cid-uGTDiRhw2S {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGTDiRhw2S img,
.cid-uGTDiRhw2S .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uGTDiRhw2S .item:focus,
.cid-uGTDiRhw2S span:focus {
  outline: none;
}
.cid-uGTDiRhw2S .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-uGTDiRhw2S .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGTDiRhw2S .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uGTDiRhw2S .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uGTDiRhw2S .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGTDiRhw2S .mbr-section-title {
  color: #232323;
}
.cid-uGTDiRhw2S .mbr-text,
.cid-uGTDiRhw2S .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uGTDiRhw2S .item-title {
  text-align: left;
}
.cid-uGTDiRhw2S .item-subtitle {
  text-align: left;
}
.cid-uGUAfW5qfs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGUAfW5qfs img,
.cid-uGUAfW5qfs .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uGUAfW5qfs .item:focus,
.cid-uGUAfW5qfs span:focus {
  outline: none;
}
.cid-uGUAfW5qfs .item {
  cursor: default;
  margin-bottom: 0.5rem;
}
.cid-uGUAfW5qfs .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGUAfW5qfs .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uGUAfW5qfs .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uGUAfW5qfs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGUAfW5qfs .mbr-section-title {
  color: #232323;
}
.cid-uGUAfW5qfs .mbr-text,
.cid-uGUAfW5qfs .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uGUAfW5qfs .item-title {
  text-align: left;
}
.cid-uGUAfW5qfs .item-subtitle {
  text-align: left;
}
.cid-uGTDjJEaJo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGTDjJEaJo img,
.cid-uGTDjJEaJo .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uGTDjJEaJo .item:focus,
.cid-uGTDjJEaJo span:focus {
  outline: none;
}
.cid-uGTDjJEaJo .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-uGTDjJEaJo .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGTDjJEaJo .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uGTDjJEaJo .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uGTDjJEaJo .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGTDjJEaJo .mbr-section-title {
  color: #232323;
}
.cid-uGTDjJEaJo .mbr-text,
.cid-uGTDjJEaJo .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uGTDjJEaJo .item-title {
  text-align: left;
}
.cid-uGTDjJEaJo .item-subtitle {
  text-align: left;
}
.cid-uGUDSl8seg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGUDSl8seg img,
.cid-uGUDSl8seg .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uGUDSl8seg .item:focus,
.cid-uGUDSl8seg span:focus {
  outline: none;
}
.cid-uGUDSl8seg .item {
  cursor: default;
  margin-bottom: 0.5rem;
}
.cid-uGUDSl8seg .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGUDSl8seg .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uGUDSl8seg .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uGUDSl8seg .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGUDSl8seg .mbr-section-title {
  color: #232323;
}
.cid-uGUDSl8seg .mbr-text,
.cid-uGUDSl8seg .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uGUDSl8seg .item-title {
  text-align: left;
}
.cid-uGUDSl8seg .item-subtitle {
  text-align: left;
}
.cid-uGUDjy5Nvs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uGUDjy5Nvs img,
.cid-uGUDjy5Nvs .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uGUDjy5Nvs .item:focus,
.cid-uGUDjy5Nvs span:focus {
  outline: none;
}
.cid-uGUDjy5Nvs .item {
  cursor: default;
  margin-bottom: 0.5rem;
}
.cid-uGUDjy5Nvs .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uGUDjy5Nvs .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uGUDjy5Nvs .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uGUDjy5Nvs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uGUDjy5Nvs .mbr-section-title {
  color: #232323;
}
.cid-uGUDjy5Nvs .mbr-text,
.cid-uGUDjy5Nvs .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uGUDjy5Nvs .item-title {
  text-align: left;
}
.cid-uGUDjy5Nvs .item-subtitle {
  text-align: left;
}
.cid-tFx0XShwjj {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-twXq58bu5j {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
  overflow: hidden;
}
.cid-twXq58bu5j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uHtDzAFwP6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHtDzAFwP6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHtDzAFwP6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHtDzAFwP6 .image-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-uHtDzAFwP6 img {
  width: 100%;
  padding: 0;
}
.cid-uHtDzAFwP6 .text-wrapper {
  padding: 0rem 1rem 1rem 1rem;
}
@media (min-width: 992px) {
  .cid-uHtDzAFwP6 .image-wrapper {
    padding-bottom: 2rem;
  }
  .cid-uHtDzAFwP6 img {
    width: 100%;
    padding: 0;
  }
  .cid-uHtDzAFwP6 .text-wrapper {
    padding: 0 1rem 1rem 1rem;
  }
}
.cid-uHtDzAFwP6 .mbr-description {
  text-align: center;
  color: #000000;
}
.cid-uHtDzAFwP6 .mbr-text {
  color: #000000;
}
.cid-uHtDzAFwP6 .mbr-section-title {
  color: #990000;
  text-align: left;
}
.cid-uHtDzAFwP6 .p-redsub {
  color: #990000;
  font-weight: bold;
}
.cid-uHtDzAFwP6 .p-indent {
  text-indent: 2em;
}
.cid-uHtDzAFwP6 .mbr-section-subtitle {
  text-align: left;
  color: #990000;
}
.cid-uHKLeuTfOh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHKLeuTfOh img,
.cid-uHKLeuTfOh .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uHKLeuTfOh .item:focus,
.cid-uHKLeuTfOh span:focus {
  outline: none;
}
.cid-uHKLeuTfOh .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-uHKLeuTfOh .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHKLeuTfOh .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uHKLeuTfOh .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uHKLeuTfOh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHKLeuTfOh .mbr-section-title {
  color: #232323;
}
.cid-uHKLeuTfOh .mbr-text,
.cid-uHKLeuTfOh .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uHKLeuTfOh .item-title {
  text-align: left;
}
.cid-uHKLeuTfOh .item-subtitle {
  text-align: left;
}
.cid-uHKLVlVrsQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHKLVlVrsQ img,
.cid-uHKLVlVrsQ .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uHKLVlVrsQ .item:focus,
.cid-uHKLVlVrsQ span:focus {
  outline: none;
}
.cid-uHKLVlVrsQ .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-uHKLVlVrsQ .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHKLVlVrsQ .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uHKLVlVrsQ .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uHKLVlVrsQ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHKLVlVrsQ .mbr-section-title {
  color: #232323;
}
.cid-uHKLVlVrsQ .mbr-text,
.cid-uHKLVlVrsQ .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uHKLVlVrsQ .item-title {
  text-align: left;
}
.cid-uHKLVlVrsQ .item-subtitle {
  text-align: left;
}
.cid-uHKMjyEi8l {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHKMjyEi8l img,
.cid-uHKMjyEi8l .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uHKMjyEi8l .item:focus,
.cid-uHKMjyEi8l span:focus {
  outline: none;
}
.cid-uHKMjyEi8l .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-uHKMjyEi8l .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHKMjyEi8l .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uHKMjyEi8l .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uHKMjyEi8l .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHKMjyEi8l .mbr-section-title {
  color: #232323;
}
.cid-uHKMjyEi8l .mbr-text,
.cid-uHKMjyEi8l .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uHKMjyEi8l .item-title {
  text-align: left;
}
.cid-uHKMjyEi8l .item-subtitle {
  text-align: left;
}
.cid-uHtEGRjrNh {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHtEGRjrNh img,
.cid-uHtEGRjrNh .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uHtEGRjrNh .item:focus,
.cid-uHtEGRjrNh span:focus {
  outline: none;
}
.cid-uHtEGRjrNh .item {
  cursor: default;
  margin-bottom: 0.5rem;
}
.cid-uHtEGRjrNh .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHtEGRjrNh .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uHtEGRjrNh .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uHtEGRjrNh .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHtEGRjrNh .mbr-section-title {
  color: #232323;
}
.cid-uHtEGRjrNh .mbr-text,
.cid-uHtEGRjrNh .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uHtEGRjrNh .item-title {
  text-align: left;
}
.cid-uHtEGRjrNh .item-subtitle {
  text-align: left;
}
.cid-uHtG2AvoMR {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHtG2AvoMR img,
.cid-uHtG2AvoMR .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uHtG2AvoMR .item:focus,
.cid-uHtG2AvoMR span:focus {
  outline: none;
}
.cid-uHtG2AvoMR .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-uHtG2AvoMR .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHtG2AvoMR .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uHtG2AvoMR .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uHtG2AvoMR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHtG2AvoMR .mbr-section-title {
  color: #232323;
}
.cid-uHtG2AvoMR .mbr-text,
.cid-uHtG2AvoMR .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uHtG2AvoMR .item-title {
  text-align: left;
}
.cid-uHtG2AvoMR .item-subtitle {
  text-align: left;
}
.cid-uHLdNaZbsR {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uHLdNaZbsR img,
.cid-uHLdNaZbsR .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uHLdNaZbsR .item:focus,
.cid-uHLdNaZbsR span:focus {
  outline: none;
}
.cid-uHLdNaZbsR .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-uHLdNaZbsR .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uHLdNaZbsR .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uHLdNaZbsR .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uHLdNaZbsR .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uHLdNaZbsR .mbr-section-title {
  color: #232323;
}
.cid-uHLdNaZbsR .mbr-text,
.cid-uHLdNaZbsR .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uHLdNaZbsR .item-title {
  text-align: left;
}
.cid-uHLdNaZbsR .item-subtitle {
  text-align: left;
}
.cid-uHmKhuBXqZ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fadbdb;
}
.cid-uHmKhuBXqZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHmKhuBXqZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uHmKhuBXqZ .image-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-uHmKhuBXqZ img {
  width: 100%;
  padding: 0;
}
.cid-uHmKhuBXqZ .text-wrapper {
  padding: 0rem 1rem 1rem 1rem;
}
@media (min-width: 992px) {
  .cid-uHmKhuBXqZ .image-wrapper {
    padding-bottom: 2rem;
  }
  .cid-uHmKhuBXqZ img {
    width: 100%;
    padding: 0;
  }
  .cid-uHmKhuBXqZ .text-wrapper {
    padding: 0 1rem 1rem 1rem;
  }
}
.cid-uHmKhuBXqZ .mbr-description {
  text-align: center;
  color: #000000;
}
.cid-uHmKhuBXqZ .mbr-text {
  color: #000000;
}
.cid-uHmKhuBXqZ .mbr-section-title {
  color: #990000;
}
.cid-uHmKhuBXqZ .p-redsub {
  color: #990000;
  font-weight: bold;
}
.cid-uHmKhuBXqZ .p-indent {
  text-indent: 2em;
}
.cid-uHmKhuBXqZ .mbr-section-subtitle {
  text-align: left;
  color: #990000;
}
.cid-tFx0XShwjj {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-twXq58bu5j {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
  overflow: hidden;
}
.cid-twXq58bu5j .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uK1mz04iqM {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uK1mz04iqM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uK1mz04iqM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uK1mz04iqM .image-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-uK1mz04iqM img {
  width: 100%;
  padding: 0;
}
.cid-uK1mz04iqM .text-wrapper {
  padding: 0rem 1rem 1rem 1rem;
}
@media (min-width: 992px) {
  .cid-uK1mz04iqM .image-wrapper {
    padding-bottom: 2rem;
  }
  .cid-uK1mz04iqM img {
    width: 100%;
    padding: 0;
  }
  .cid-uK1mz04iqM .text-wrapper {
    padding: 0 1rem 1rem 1rem;
  }
}
.cid-uK1mz04iqM .mbr-description {
  text-align: center;
  color: #000000;
}
.cid-uK1mz04iqM .mbr-text {
  color: #000000;
}
.cid-uK1mz04iqM .mbr-section-title {
  color: #990000;
}
.cid-uK1mz04iqM .p-redsub {
  color: #990000;
  font-weight: bold;
}
.cid-uK1mz04iqM .p-indent {
  text-indent: 2em;
}
.cid-uK1mz04iqM .mbr-section-subtitle {
  text-align: left;
  color: #990000;
}
.cid-uK7c04KdWk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uK7c04KdWk img,
.cid-uK7c04KdWk .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uK7c04KdWk .item:focus,
.cid-uK7c04KdWk span:focus {
  outline: none;
}
.cid-uK7c04KdWk .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-uK7c04KdWk .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uK7c04KdWk .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uK7c04KdWk .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uK7c04KdWk .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uK7c04KdWk .mbr-section-title {
  color: #232323;
}
.cid-uK7c04KdWk .mbr-text,
.cid-uK7c04KdWk .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uK7c04KdWk .item-title {
  text-align: left;
}
.cid-uK7c04KdWk .item-subtitle {
  text-align: left;
}
.cid-uK7cwLcZY6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uK7cwLcZY6 img,
.cid-uK7cwLcZY6 .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uK7cwLcZY6 .item:focus,
.cid-uK7cwLcZY6 span:focus {
  outline: none;
}
.cid-uK7cwLcZY6 .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-uK7cwLcZY6 .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uK7cwLcZY6 .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uK7cwLcZY6 .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uK7cwLcZY6 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uK7cwLcZY6 .mbr-section-title {
  color: #232323;
}
.cid-uK7cwLcZY6 .mbr-text,
.cid-uK7cwLcZY6 .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uK7cwLcZY6 .item-title {
  text-align: left;
}
.cid-uK7cwLcZY6 .item-subtitle {
  text-align: left;
}
.cid-uK7cG901gs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uK7cG901gs img,
.cid-uK7cG901gs .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uK7cG901gs .item:focus,
.cid-uK7cG901gs span:focus {
  outline: none;
}
.cid-uK7cG901gs .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-uK7cG901gs .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uK7cG901gs .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uK7cG901gs .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uK7cG901gs .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uK7cG901gs .mbr-section-title {
  color: #232323;
}
.cid-uK7cG901gs .mbr-text,
.cid-uK7cG901gs .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uK7cG901gs .item-title {
  text-align: left;
}
.cid-uK7cG901gs .item-subtitle {
  text-align: left;
}
.cid-uK7m6CCrun {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uK7m6CCrun img,
.cid-uK7m6CCrun .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uK7m6CCrun .item:focus,
.cid-uK7m6CCrun span:focus {
  outline: none;
}
.cid-uK7m6CCrun .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-uK7m6CCrun .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uK7m6CCrun .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uK7m6CCrun .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uK7m6CCrun .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uK7m6CCrun .mbr-section-title {
  color: #232323;
}
.cid-uK7m6CCrun .mbr-text,
.cid-uK7m6CCrun .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uK7m6CCrun .item-title {
  text-align: left;
}
.cid-uK7m6CCrun .item-subtitle {
  text-align: left;
}
.cid-uK1mz0yyTC {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uK1mz0IIt2 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
  overflow: hidden;
}
.cid-uK1mz0IIt2 .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uKoJUADlyL {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uKoJUADlyL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKoJUADlyL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uKoJUADlyL .image-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-uKoJUADlyL img {
  width: 100%;
  padding: 0;
}
.cid-uKoJUADlyL .text-wrapper {
  padding: 0rem 1rem 1rem 1rem;
}
@media (min-width: 992px) {
  .cid-uKoJUADlyL .image-wrapper {
    padding-bottom: 2rem;
  }
  .cid-uKoJUADlyL img {
    width: 100%;
    padding: 0;
  }
  .cid-uKoJUADlyL .text-wrapper {
    padding: 0 1rem 1rem 1rem;
  }
}
.cid-uKoJUADlyL .mbr-description {
  text-align: center;
  color: #000000;
}
.cid-uKoJUADlyL .mbr-text {
  color: #000000;
}
.cid-uKoJUADlyL .mbr-section-title {
  color: #990000;
}
.cid-uKoJUADlyL .p-redsub {
  color: #990000;
  font-weight: bold;
}
.cid-uKoJUADlyL .p-indent {
  text-indent: 2em;
}
.cid-uKoJUADlyL .mbr-section-subtitle {
  text-align: left;
  color: #990000;
}
.cid-uKoJUAQcYl {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uKoJUAQcYl img,
.cid-uKoJUAQcYl .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uKoJUAQcYl .item:focus,
.cid-uKoJUAQcYl span:focus {
  outline: none;
}
.cid-uKoJUAQcYl .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-uKoJUAQcYl .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uKoJUAQcYl .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uKoJUAQcYl .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uKoJUAQcYl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uKoJUAQcYl .mbr-section-title {
  color: #232323;
}
.cid-uKoJUAQcYl .mbr-text,
.cid-uKoJUAQcYl .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uKoJUAQcYl .item-title {
  text-align: left;
}
.cid-uKoJUAQcYl .item-subtitle {
  text-align: left;
}
.cid-uKoJUB6TDh {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uKoJUBfrWK {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
  overflow: hidden;
}
.cid-uKoJUBfrWK .media-container-row .mbr-text {
  color: #bbbbbb;
}
.cid-uPp7gmMs3N {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPp7gmMs3N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPp7gmMs3N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uPp7gmMs3N .image-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-uPp7gmMs3N img {
  width: 100%;
  padding: 0;
}
.cid-uPp7gmMs3N .text-wrapper {
  padding: 0rem 1rem 1rem 1rem;
}
@media (min-width: 992px) {
  .cid-uPp7gmMs3N .image-wrapper {
    padding-bottom: 2rem;
  }
  .cid-uPp7gmMs3N img {
    width: 100%;
    padding: 0;
  }
  .cid-uPp7gmMs3N .text-wrapper {
    padding: 0 1rem 1rem 1rem;
  }
}
.cid-uPp7gmMs3N .mbr-description {
  text-align: center;
  color: #000000;
}
.cid-uPp7gmMs3N .mbr-text {
  color: #000000;
}
.cid-uPp7gmMs3N .mbr-section-title {
  color: #990000;
}
.cid-uPp7gmMs3N .p-redsub {
  color: #990000;
  font-weight: bold;
}
.cid-uPp7gmMs3N .p-indent {
  text-indent: 2em;
}
.cid-uPp7gmMs3N .mbr-section-subtitle {
  text-align: left;
  color: #990000;
}
.cid-uPp7gmZ48C {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPp7gmZ48C img,
.cid-uPp7gmZ48C .item-img {
  width: 100%;
  border-radius: 4px;
}
.cid-uPp7gmZ48C .item:focus,
.cid-uPp7gmZ48C span:focus {
  outline: none;
}
.cid-uPp7gmZ48C .item {
  cursor: default;
  margin-bottom: 0.3rem;
}
.cid-uPp7gmZ48C .item-wrapper {
  position: relative;
  border-radius: 0px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uPp7gmZ48C .item-wrapper .item-content {
    padding: 0rem 0;
  }
}
@media (max-width: 991px) {
  .cid-uPp7gmZ48C .item-wrapper .item-content {
    padding: 0rem 0 0.5rem 0;
  }
}
.cid-uPp7gmZ48C .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uPp7gmZ48C .mbr-section-title {
  color: #232323;
}
.cid-uPp7gmZ48C .mbr-text,
.cid-uPp7gmZ48C .mbr-section-btn {
  text-align: left;
  color: #808080;
}
.cid-uPp7gmZ48C .item-title {
  text-align: left;
}
.cid-uPp7gmZ48C .item-subtitle {
  text-align: left;
}
.cid-uPp7gnhzC6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fadbdb;
}
.cid-uPp7gnhzC6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPp7gnhzC6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uPp7gnhzC6 .image-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-uPp7gnhzC6 img {
  width: 100%;
  padding: 0;
}
.cid-uPp7gnhzC6 .text-wrapper {
  padding: 0rem 1rem 1rem 1rem;
}
@media (min-width: 992px) {
  .cid-uPp7gnhzC6 .image-wrapper {
    padding-bottom: 2rem;
  }
  .cid-uPp7gnhzC6 img {
    width: 100%;
    padding: 0;
  }
  .cid-uPp7gnhzC6 .text-wrapper {
    padding: 0 1rem 1rem 1rem;
  }
}
.cid-uPp7gnhzC6 .mbr-description {
  text-align: center;
  color: #000000;
}
.cid-uPp7gnhzC6 .mbr-text {
  color: #000000;
}
.cid-uPp7gnhzC6 .mbr-section-title {
  color: #990000;
}
.cid-uPp7gnhzC6 .p-redsub {
  color: #990000;
  font-weight: bold;
}
.cid-uPp7gnhzC6 .p-in2 {
  text-indent: 2em;
}
.cid-uPp7gnhzC6 .p-in2-fayu {
  text-indent: 2em;
}
@media (max-width: 991px) {
  .cid-uPp7gnhzC6 .p-in2-fayu {
    text-indent: 0em;
  }
}
.cid-uPp7gnhzC6 .mbr-section-subtitle {
  text-align: left;
  color: #990000;
}
.cid-uPp7gnxqm1 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #fadbdb;
}
.cid-uPp7gnxqm1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPp7gnxqm1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uPp7gnxqm1 .image-wrapper {
    padding-bottom: 1.5rem;
  }
}
.cid-uPp7gnxqm1 img {
  width: 100%;
  padding: 0;
}
.cid-uPp7gnxqm1 .text-wrapper {
  padding: 0rem 1rem 1rem 1rem;
}
@media (min-width: 992px) {
  .cid-uPp7gnxqm1 .image-wrapper {
    padding-bottom: 2rem;
  }
  .cid-uPp7gnxqm1 img {
    width: 100%;
    padding: 0;
  }
  .cid-uPp7gnxqm1 .text-wrapper {
    padding: 0 1rem 1rem 1rem;
  }
}
.cid-uPp7gnxqm1 .mbr-description {
  text-align: center;
  color: #000000;
}
.cid-uPp7gnxqm1 .mbr-text {
  color: #000000;
}
.cid-uPp7gnxqm1 .mbr-section-title {
  color: #990000;
}
.cid-uPp7gnxqm1 .p-redsub {
  color: #990000;
  font-weight: bold;
}
.cid-uPp7gnxqm1 .p-in2 {
  text-indent: 2em;
}
.cid-uPp7gnxqm1 .p-in2-fayu {
  text-indent: 2em;
}
@media (max-width: 991px) {
  .cid-uPp7gnxqm1 .p-in2-fayu {
    text-indent: 0em;
  }
}
.cid-uPp7gnxqm1 .mbr-section-subtitle {
  text-align: left;
  color: #990000;
}
.cid-uPp7gnxqm1 .line-fayu {
  color: #990000;
}
.cid-uPp7gnOdsM {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPp7go2UaE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5c1f3d;
  overflow: hidden;
}
.cid-uPp7go2UaE .media-container-row .mbr-text {
  color: #bbbbbb;
}
