body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 4.25rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((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.4 * (1.7rem + (3 - 1.7) * ((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.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #f7ed4a !important;
}
.bg-success {
  background-color: #073b4c !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #223558 !important;
  border-color: #223558 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0d1421 !important;
  border-color: #0d1421 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0d1421 !important;
  border-color: #0d1421 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #073b4c !important;
  border-color: #073b4c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #010506 !important;
  border-color: #010506 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #010506 !important;
  border-color: #010506 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #06090e;
  color: #06090e;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #223558;
  border-color: #223558;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #223558 !important;
  border-color: #223558 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #073b4c;
  border-color: #073b4c;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #073b4c !important;
  border-color: #073b4c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #f7ed4a !important;
}
.text-secondary {
  color: #223558 !important;
}
.text-success {
  color: #073b4c !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #d2c609 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #06090e !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #f7ed4a;
  border-color: #f7ed4a;
  color: #585304;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #f7ed4a;
}
.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: #4ac6ee;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #f7ed4a;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #f7ed4a;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #f7ed4a;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #f7ed4a;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #f7ed4a;
  border-bottom-color: #f7ed4a;
}
.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: #000000 !important;
  background-color: #f7ed4a !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #223558 !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%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  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='%23f7ed4a' %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.3;
}
.cid-rVSlveKdiE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #223558;
}
.cid-rVSlveKdiE P {
  color: #767676;
}
.cid-rVSlveKdiE H1 {
  color: #ffffff;
}
.cid-rVSlveKdiE .mbr-text,
.cid-rVSlveKdiE .mbr-section-btn {
  color: #f7ed4a;
}
.cid-snO1HxPdiP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snO1HxPdiP .mbr-text,
.cid-snO1HxPdiP blockquote {
  color: #767676;
}
.cid-snO1HxPdiP .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-rWqU1aoLF5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rXSfIWmlI6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rXXjLISBuz {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #0f7699;
}
.cid-rXXjLISBuz .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-rXXjLISBuz H2 {
  color: #ffffff;
}
.cid-rWxnOkxe9m {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rWxnOkxe9m .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rWxnOkxe9m .section-text {
  padding: 2rem 0;
  text-align: center;
}
.cid-rWxnOkxe9m .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rWxnOkxe9m .inner-container {
    width: 100% !important;
  }
}
.cid-uckitE4OS2.popup-builder {
  background-color: #ffffff;
}
.cid-uckitE4OS2.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-uckitE4OS2.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-uckitE4OS2 .modal-content,
.cid-uckitE4OS2 .modal-dialog {
  height: auto;
}
.cid-uckitE4OS2 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-uckitE4OS2 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-uckitE4OS2 .form-wrapper .mbr-form .form-group,
  .cid-uckitE4OS2 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-uckitE4OS2 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-uckitE4OS2 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uckitE4OS2 .mbr-text {
  text-align: center;
}
.cid-uckitE4OS2 .pt-0 {
  padding-top: 0 !important;
}
.cid-uckitE4OS2 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-uckitE4OS2 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-uckitE4OS2 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-uckitE4OS2 .modal-open {
  overflow: hidden;
}
.cid-uckitE4OS2 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-uckitE4OS2 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-uckitE4OS2 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-uckitE4OS2 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-uckitE4OS2 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-uckitE4OS2 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-uckitE4OS2 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-uckitE4OS2 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-uckitE4OS2 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-uckitE4OS2 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-uckitE4OS2 .modal-backdrop.fade {
  opacity: 0;
}
.cid-uckitE4OS2 .modal-backdrop.show {
  opacity: .5;
}
.cid-uckitE4OS2 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-uckitE4OS2 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uckitE4OS2 .modal-header {
    padding: 1rem;
  }
}
.cid-uckitE4OS2 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-uckitE4OS2 .modal-header .close svg {
  fill: #353535;
}
.cid-uckitE4OS2 .modal-header .close:hover {
  opacity: 1;
}
.cid-uckitE4OS2 .modal-header .close:focus {
  outline: none;
}
.cid-uckitE4OS2 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-uckitE4OS2 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-uckitE4OS2 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uckitE4OS2 .modal-body {
    padding: 1rem;
  }
}
.cid-uckitE4OS2 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uckitE4OS2 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uckitE4OS2 .modal-footer {
    padding: 1rem;
  }
}
.cid-uckitE4OS2 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-uckitE4OS2 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-uckitE4OS2 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-uckitE4OS2 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-uckitE4OS2 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-uckitE4OS2 .modal-lg,
  .cid-uckitE4OS2 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-uckitE4OS2 .modal-xl {
    max-width: 1140px;
  }
}
.cid-uckitE4OS2 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-uckitE4OS2 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-uckitE4OS2 .form-group {
  margin-bottom: 1rem;
}
.cid-uckitE4OS2 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-uckitE4OS2 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-uckitE4OS2 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-uckitE4OS2 .mbr-section-btn {
  margin: 0;
}
.cid-uckitE4OS2 .mbr-section-btn .btn {
  margin: 0;
}
.cid-rZ4ORZdhkk {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #dd1b1b;
}
.cid-rZ4ORZdhkk .mbr-section-subtitle {
  color: #232323;
}
.cid-rZ4ORZdhkk H2 {
  color: #ffffff;
}
.cid-rWqq29NIJ7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-rWqq29NIJ7 P {
  color: #767676;
}
.cid-rWqq29NIJ7 H1 {
  color: #ffffff;
}
.cid-uZaQQTr2Uv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-uZaQQTr2Uv .card-img {
  background-color: #fff;
}
.cid-uZaQQTr2Uv .card-box {
  padding: 2rem;
  background-color: #4c4a4a;
}
.cid-uZaQQTr2Uv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uZaQQTr2Uv p {
  text-align: left;
}
.cid-uZaQQTr2Uv .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uZaQQTr2Uv .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-uZaQQTr2Uv .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-uZaQQTr2Uv .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-uZaQQTr2Uv .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-tWu7ZY4kZw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tWu7ZY4kZw P {
  color: #767676;
}
.cid-tWu7ZY4kZw H1 {
  color: #dd1b1b;
}
.cid-tWu7ZY4kZw .mbr-text,
.cid-tWu7ZY4kZw .mbr-section-btn {
  color: #ffffff;
}
.cid-tWu81KS2DL {
  background-image: url("../../../assets/images/nes24220collage201-2000x1127.jpg");
}
.cid-tWu81KS2DL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWu81KS2DL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWu81KS2DL .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWu81KS2DL .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWu81KS2DL .container {
    padding: 0;
  }
}
.cid-tWu81KS2DL .title-wrapper {
  padding: 0 16px;
}
.cid-tWu81KS2DL .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWu81KS2DL .title-wrapper .mbr-text {
  margin: 25px 0 0 0;
}
.cid-tWu81KS2DL .title-wrapper .mbr-section-btn {
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-tWu81KS2DL .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-tWu81KS2DL .mbr-section-title {
  color: #ffffff;
}
.cid-tWu81KS2DL .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tWu81KS2DL .mbr-section-title,
.cid-tWu81KS2DL .mbr-section-btn {
  text-align: center;
}
.cid-uZaQACmu43 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uZaQACmu43 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZaQACmu43 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZaQACmu43 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uZaQACmu43 .mbr-section-title {
  color: #24262b;
}
.cid-uZaQACmu43 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uZaQACmu43 .items-row {
  row-gap: 32px;
}
.cid-uZaQACmu43 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uZaQACmu43 .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 4));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uZaQACmu43 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uZaQACmu43 .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uZaQACmu43 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uZaQACmu43 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uZaQACmu43 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uZaQACmu43 .mbr-item-subtitle {
  color: #24262b;
}
.cid-uZaQACmu43 .carousel-control,
.cid-uZaQACmu43 .close {
  background: #1b1b1b;
}
.cid-uZaQACmu43 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZaQACmu43 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZaQACmu43 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZaQACmu43 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZaQACmu43 .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-uZaQACmu43 .close::before {
  content: '\e91a';
}
.cid-uZaQACmu43 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uZaQACmu43 .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-uZaQACmu43 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZaQACmu43 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZaQACmu43 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZaQACmu43 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZaQACmu43 .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-uZaQACmu43 .carousel-indicators li.active,
.cid-uZaQACmu43 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZaQACmu43 .carousel-indicators li::after,
.cid-uZaQACmu43 .carousel-indicators li::before {
  content: none;
}
.cid-uZaQACmu43 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZaQACmu43 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZaQACmu43 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZaQACmu43 .carousel-indicators {
    display: none;
  }
}
.cid-uZaQACmu43 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZaQACmu43 .carousel-inner > .active {
  display: block;
}
.cid-uZaQACmu43 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZaQACmu43 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZaQACmu43 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZaQACmu43 .carousel-control,
  .cid-uZaQACmu43 .carousel-indicators,
  .cid-uZaQACmu43 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZaQACmu43 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZaQACmu43 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZaQACmu43 .carousel-indicators .active,
.cid-uZaQACmu43 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZaQACmu43 .carousel-indicators .active {
  background: #fff;
}
.cid-uZaQACmu43 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZaQACmu43 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZaQACmu43 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZaQACmu43 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZaQACmu43 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZaQACmu43 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZaQACmu43 .carousel {
  width: 100%;
}
.cid-uZaQACmu43 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZaQACmu43 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZaQACmu43 .modal.fade .modal-dialog,
.cid-uZaQACmu43 .modal.in .modal-dialog {
  transform: none;
}
.cid-uZaQACmu43 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZaQACmu43 H6 {
  text-align: center;
}
.cid-t6YGe1PgZR {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-uZaPGjEDEG {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uZaPGjEDEG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uZaPGjEDEG H2 {
  color: #ffffff;
}
.cid-uZaPIaEMzO {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uZaPIaEMzO .image-block {
  margin: auto;
}
.cid-uZaPIaEMzO figcaption {
  position: relative;
}
.cid-uZaPIaEMzO figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uZaPIaEMzO .image-block {
    width: 100% !important;
  }
}
.cid-uZaPJgFs2v {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uYvZmTFMrF {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uYvZmTFMrF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uYvZmTFMrF H2 {
  color: #ffffff;
}
.cid-uYvZnNccW2 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uYvZnNccW2 .image-block {
  margin: auto;
}
.cid-uYvZnNccW2 figcaption {
  position: relative;
}
.cid-uYvZnNccW2 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uYvZnNccW2 .image-block {
    width: 100% !important;
  }
}
.cid-uYvZoILCb2 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uXPUExtp7I {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uXPUExtp7I .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uXPUExtp7I H2 {
  color: #ffffff;
}
.cid-uXPUFxNe8v {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uXPUFxNe8v .image-block {
  margin: auto;
}
.cid-uXPUFxNe8v figcaption {
  position: relative;
}
.cid-uXPUFxNe8v figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uXPUFxNe8v .image-block {
    width: 100% !important;
  }
}
.cid-uXPUGxpoJo {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uXbL6V8NYe {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uXbL6V8NYe .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uXbL6V8NYe H2 {
  color: #ffffff;
}
.cid-uXbL83T5JW {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uXbL83T5JW .image-block {
  margin: auto;
}
.cid-uXbL83T5JW figcaption {
  position: relative;
}
.cid-uXbL83T5JW figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uXbL83T5JW .image-block {
    width: 100% !important;
  }
}
.cid-uXbL8YO9PU {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uWxGxnDCNr {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uWxGxnDCNr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uWxGxnDCNr H2 {
  color: #ffffff;
}
.cid-uWxGyDq4w5 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uWxGyDq4w5 .image-block {
  margin: auto;
}
.cid-uWxGyDq4w5 figcaption {
  position: relative;
}
.cid-uWxGyDq4w5 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uWxGyDq4w5 .image-block {
    width: 100% !important;
  }
}
.cid-uWxGzFMEpl {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uVSJmexWZq {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uVSJmexWZq .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uVSJmexWZq H2 {
  color: #ffffff;
}
.cid-uVSJnosoPa {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uVSJnosoPa .image-block {
  margin: auto;
}
.cid-uVSJnosoPa figcaption {
  position: relative;
}
.cid-uVSJnosoPa figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uVSJnosoPa .image-block {
    width: 100% !important;
  }
}
.cid-uVSJoBjwsJ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uUxAipwomc {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uUxAipwomc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uUxAipwomc H2 {
  color: #ffffff;
}
.cid-uUxAjF4W4m {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uUxAjF4W4m .image-block {
  margin: auto;
}
.cid-uUxAjF4W4m figcaption {
  position: relative;
}
.cid-uUxAjF4W4m figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uUxAjF4W4m .image-block {
    width: 100% !important;
  }
}
.cid-uVbNWq5COe {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uVbNMuTr4G {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uVbNMuTr4G .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uVbNMuTr4G H2 {
  color: #ffffff;
}
.cid-uVbNPjTHiY {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uVbNPjTHiY .image-block {
  margin: auto;
}
.cid-uVbNPjTHiY figcaption {
  position: relative;
}
.cid-uVbNPjTHiY figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uVbNPjTHiY .image-block {
    width: 100% !important;
  }
}
.cid-uUxAkO10I2 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uTTq8fVhX5 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uTTq8fVhX5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uTTq8fVhX5 H2 {
  color: #ffffff;
}
.cid-uTTqauKcCG {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uTTqauKcCG .image-block {
  margin: auto;
}
.cid-uTTqauKcCG figcaption {
  position: relative;
}
.cid-uTTqauKcCG figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uTTqauKcCG .image-block {
    width: 100% !important;
  }
}
.cid-uTTqbZLWrG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uTdUpuOX8G {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uTdUpuOX8G .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uTdUpuOX8G H2 {
  color: #ffffff;
}
.cid-uTdUrEp5yi {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uTdUrEp5yi .image-block {
  margin: auto;
}
.cid-uTdUrEp5yi figcaption {
  position: relative;
}
.cid-uTdUrEp5yi figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uTdUrEp5yi .image-block {
    width: 100% !important;
  }
}
.cid-uTdUtuSceA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uSyBheCbXx {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uSyBheCbXx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uSyBheCbXx H2 {
  color: #ffffff;
}
.cid-uSyBjwjWA2 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uSyBjwjWA2 .image-block {
  margin: auto;
}
.cid-uSyBjwjWA2 figcaption {
  position: relative;
}
.cid-uSyBjwjWA2 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uSyBjwjWA2 .image-block {
    width: 100% !important;
  }
}
.cid-uSyBlIIJUS {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uRTk4bTy6G {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uRTk4bTy6G .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uRTk4bTy6G H2 {
  color: #ffffff;
}
.cid-uRTk6cQStE {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uRTk6cQStE .image-block {
  margin: auto;
}
.cid-uRTk6cQStE figcaption {
  position: relative;
}
.cid-uRTk6cQStE figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uRTk6cQStE .image-block {
    width: 100% !important;
  }
}
.cid-uRTk7Zra0h {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uRfczLJ57i {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uRfczLJ57i .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uRfczLJ57i H2 {
  color: #ffffff;
}
.cid-uRfcCg69Fi {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uRfcCg69Fi .image-block {
  margin: auto;
}
.cid-uRfcCg69Fi figcaption {
  position: relative;
}
.cid-uRfcCg69Fi figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uRfcCg69Fi .image-block {
    width: 100% !important;
  }
}
.cid-uRfcEnzi9R {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uQANrODPT0 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uQANrODPT0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uQANrODPT0 H2 {
  color: #ffffff;
}
.cid-uQANtmrUES {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uQANtmrUES .image-block {
  margin: auto;
}
.cid-uQANtmrUES figcaption {
  position: relative;
}
.cid-uQANtmrUES figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uQANtmrUES .image-block {
    width: 100% !important;
  }
}
.cid-uQANuYbHjx {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uPV8J5CdqU {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uPV8J5CdqU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uPV8J5CdqU H2 {
  color: #ffffff;
}
.cid-uPV8LCaGH2 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uPV8LCaGH2 .image-block {
  margin: auto;
}
.cid-uPV8LCaGH2 figcaption {
  position: relative;
}
.cid-uPV8LCaGH2 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uPV8LCaGH2 .image-block {
    width: 100% !important;
  }
}
.cid-uPV8NoCqUt {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uPgZMEEniC {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uPgZMEEniC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uPgZMEEniC H2 {
  color: #ffffff;
}
.cid-uPgZOEGE3f {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uPgZOEGE3f .image-block {
  margin: auto;
}
.cid-uPgZOEGE3f figcaption {
  position: relative;
}
.cid-uPgZOEGE3f figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uPgZOEGE3f .image-block {
    width: 100% !important;
  }
}
.cid-uPgZQ6t1Wm {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uOCwVpjeVg {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uOCwVpjeVg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uOCwVpjeVg H2 {
  color: #ffffff;
}
.cid-uOCwXhDG5Q {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uOCwXhDG5Q .image-block {
  margin: auto;
}
.cid-uOCwXhDG5Q figcaption {
  position: relative;
}
.cid-uOCwXhDG5Q figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uOCwXhDG5Q .image-block {
    width: 100% !important;
  }
}
.cid-uOCwZ4w6ia {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uNXhkBuSs4 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uNXhkBuSs4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uNXhkBuSs4 H2 {
  color: #ffffff;
}
.cid-uNXhmAEy8H {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uNXhmAEy8H .image-block {
  margin: auto;
}
.cid-uNXhmAEy8H figcaption {
  position: relative;
}
.cid-uNXhmAEy8H figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uNXhmAEy8H .image-block {
    width: 100% !important;
  }
}
.cid-uNXho9X260 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uNhu2SX6qu {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uNhu2SX6qu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uNhu2SX6qu H2 {
  color: #ffffff;
}
.cid-uNhu4ZpdXU {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uNhu4ZpdXU .image-block {
  margin: auto;
}
.cid-uNhu4ZpdXU figcaption {
  position: relative;
}
.cid-uNhu4ZpdXU figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uNhu4ZpdXU .image-block {
    width: 100% !important;
  }
}
.cid-uNhu6wEfDz {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uMCHI1kuhL {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uMCHI1kuhL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uMCHI1kuhL H2 {
  color: #ffffff;
}
.cid-uMCHKT7JjT {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uMCHKT7JjT .image-block {
  margin: auto;
}
.cid-uMCHKT7JjT figcaption {
  position: relative;
}
.cid-uMCHKT7JjT figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uMCHKT7JjT .image-block {
    width: 100% !important;
  }
}
.cid-uMCHMvdJIz {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uLYACYqGip {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uLYACYqGip .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uLYACYqGip H2 {
  color: #ffffff;
}
.cid-uLYAFEjR5o {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uLYAFEjR5o .image-block {
  margin: auto;
}
.cid-uLYAFEjR5o figcaption {
  position: relative;
}
.cid-uLYAFEjR5o figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uLYAFEjR5o .image-block {
    width: 100% !important;
  }
}
.cid-uLYAGR2T6L {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uLjdHYCsZ7 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uLjdHYCsZ7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uLjdHYCsZ7 H2 {
  color: #ffffff;
}
.cid-uLjdK0pePu {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uLjdK0pePu .image-block {
  margin: auto;
}
.cid-uLjdK0pePu figcaption {
  position: relative;
}
.cid-uLjdK0pePu figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uLjdK0pePu .image-block {
    width: 100% !important;
  }
}
.cid-uLjdLYVCsh {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uKEkYNCI1N {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uKEkYNCI1N .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uKEkYNCI1N H2 {
  color: #ffffff;
}
.cid-uKEl0SKMJb {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uKEl0SKMJb .image-block {
  margin: auto;
}
.cid-uKEl0SKMJb figcaption {
  position: relative;
}
.cid-uKEl0SKMJb figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uKEl0SKMJb .image-block {
    width: 100% !important;
  }
}
.cid-uKEl2gfBaE {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uJZlrVNRPF {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uJZlrVNRPF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uJZlrVNRPF H2 {
  color: #ffffff;
}
.cid-uJZlvu3yFd {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uJZlvu3yFd .image-block {
  margin: auto;
}
.cid-uJZlvu3yFd figcaption {
  position: relative;
}
.cid-uJZlvu3yFd figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uJZlvu3yFd .image-block {
    width: 100% !important;
  }
}
.cid-uJZlxnaqLu {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uJkrM31W4X {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uJkrM31W4X .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uJkrM31W4X H2 {
  color: #ffffff;
}
.cid-uJkrNWvgBZ {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uJkrNWvgBZ .image-block {
  margin: auto;
}
.cid-uJkrNWvgBZ figcaption {
  position: relative;
}
.cid-uJkrNWvgBZ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uJkrNWvgBZ .image-block {
    width: 100% !important;
  }
}
.cid-uJkrPxcGVY {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uIFSmeeR3o {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uIFSmeeR3o .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uIFSmeeR3o H2 {
  color: #ffffff;
}
.cid-uIFSoGa2o7 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uIFSoGa2o7 .image-block {
  margin: auto;
}
.cid-uIFSoGa2o7 figcaption {
  position: relative;
}
.cid-uIFSoGa2o7 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uIFSoGa2o7 .image-block {
    width: 100% !important;
  }
}
.cid-uIFSqA40mG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uI0VSFwfWz {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uI0VSFwfWz .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uI0VSFwfWz H2 {
  color: #ffffff;
}
.cid-uI0VUNT2E7 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uI0VUNT2E7 .image-block {
  margin: auto;
}
.cid-uI0VUNT2E7 figcaption {
  position: relative;
}
.cid-uI0VUNT2E7 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uI0VUNT2E7 .image-block {
    width: 100% !important;
  }
}
.cid-uI0VWvSr0o {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uHkVHoaCk8 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uHkVHoaCk8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uHkVHoaCk8 H2 {
  color: #ffffff;
}
.cid-uHkVJngdln {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uHkVJngdln .image-block {
  margin: auto;
}
.cid-uHkVJngdln figcaption {
  position: relative;
}
.cid-uHkVJngdln figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uHkVJngdln .image-block {
    width: 100% !important;
  }
}
.cid-uHkVL2ezQJ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uGGlP2yZCh {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uGGlP2yZCh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uGGlP2yZCh H2 {
  color: #ffffff;
}
.cid-uGGlQXEYBg {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uGGlQXEYBg .image-block {
  margin: auto;
}
.cid-uGGlQXEYBg figcaption {
  position: relative;
}
.cid-uGGlQXEYBg figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uGGlQXEYBg .image-block {
    width: 100% !important;
  }
}
.cid-uGGlSkVGfR {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uG0UjsA1y3 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uG0UjsA1y3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uG0UjsA1y3 H2 {
  color: #ffffff;
}
.cid-uG0UlKL010 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uG0UlKL010 .image-block {
  margin: auto;
}
.cid-uG0UlKL010 figcaption {
  position: relative;
}
.cid-uG0UlKL010 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uG0UlKL010 .image-block {
    width: 100% !important;
  }
}
.cid-uG0Un5XLqP {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uFmSwYMH0w {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uFmSwYMH0w .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uFmSwYMH0w H2 {
  color: #ffffff;
}
.cid-uFmSyl7Sh6 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uFmSyl7Sh6 .image-block {
  margin: auto;
}
.cid-uFmSyl7Sh6 figcaption {
  position: relative;
}
.cid-uFmSyl7Sh6 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uFmSyl7Sh6 .image-block {
    width: 100% !important;
  }
}
.cid-uFmSA5EDpx {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uEIrcV6LO5 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uEIrcV6LO5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uEIrcV6LO5 H2 {
  color: #ffffff;
}
.cid-uEIreCJQ5t {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uEIreCJQ5t .image-block {
  margin: auto;
}
.cid-uEIreCJQ5t figcaption {
  position: relative;
}
.cid-uEIreCJQ5t figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uEIreCJQ5t .image-block {
    width: 100% !important;
  }
}
.cid-uEIrgkq4YS {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uE3VpKoys2 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uE3VpKoys2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uE3VpKoys2 H2 {
  color: #ffffff;
}
.cid-uE3VsHRZ8O {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uE3VsHRZ8O .image-block {
  margin: auto;
}
.cid-uE3VsHRZ8O figcaption {
  position: relative;
}
.cid-uE3VsHRZ8O figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uE3VsHRZ8O .image-block {
    width: 100% !important;
  }
}
.cid-uE3Vu4FSX3 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uDomHuvU61 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uDomHuvU61 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uDomHuvU61 H2 {
  color: #ffffff;
}
.cid-uDomJmdnyR {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uDomJmdnyR .image-block {
  margin: auto;
}
.cid-uDomJmdnyR figcaption {
  position: relative;
}
.cid-uDomJmdnyR figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uDomJmdnyR .image-block {
    width: 100% !important;
  }
}
.cid-uDomKF7uHf {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uCJzlbRg5y {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uCJzlbRg5y .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uCJzlbRg5y H2 {
  color: #ffffff;
}
.cid-uCJzneJw6r {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uCJzneJw6r .image-block {
  margin: auto;
}
.cid-uCJzneJw6r figcaption {
  position: relative;
}
.cid-uCJzneJw6r figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uCJzneJw6r .image-block {
    width: 100% !important;
  }
}
.cid-uCJzoZuabC {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uC58VTvVz5 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uC58VTvVz5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uC58VTvVz5 H2 {
  color: #ffffff;
}
.cid-uC58Y5YvXK {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uC58Y5YvXK .image-block {
  margin: auto;
}
.cid-uC58Y5YvXK figcaption {
  position: relative;
}
.cid-uC58Y5YvXK figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uC58Y5YvXK .image-block {
    width: 100% !important;
  }
}
.cid-uC58ZzKEpn {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uBpCTq36vh {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uBpCTq36vh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uBpCTq36vh H2 {
  color: #ffffff;
}
.cid-uBpCV95whT {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uBpCV95whT .image-block {
  margin: auto;
}
.cid-uBpCV95whT figcaption {
  position: relative;
}
.cid-uBpCV95whT figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uBpCV95whT .image-block {
    width: 100% !important;
  }
}
.cid-uBpCWGHj73 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uAJZ7rTs2q {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uAJZ7rTs2q .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uAJZ7rTs2q H2 {
  color: #ffffff;
}
.cid-uAJZ9akw65 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uAJZ9akw65 .image-block {
  margin: auto;
}
.cid-uAJZ9akw65 figcaption {
  position: relative;
}
.cid-uAJZ9akw65 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uAJZ9akw65 .image-block {
    width: 100% !important;
  }
}
.cid-uAJZay64wA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uA680qjWRa {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uA680qjWRa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uA680qjWRa H2 {
  color: #ffffff;
}
.cid-uA681HWtAG {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uA681HWtAG .image-block {
  margin: auto;
}
.cid-uA681HWtAG figcaption {
  position: relative;
}
.cid-uA681HWtAG figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uA681HWtAG .image-block {
    width: 100% !important;
  }
}
.cid-uA683vJppQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uzrsR6R8FK {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uzrsR6R8FK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uzrsR6R8FK H2 {
  color: #ffffff;
}
.cid-uzrsTJnk9x {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uzrsTJnk9x .image-block {
  margin: auto;
}
.cid-uzrsTJnk9x figcaption {
  position: relative;
}
.cid-uzrsTJnk9x figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uzrsTJnk9x .image-block {
    width: 100% !important;
  }
}
.cid-uzrsVffiVO {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uyM5WvId85 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uyM5WvId85 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uyM5WvId85 H2 {
  color: #ffffff;
}
.cid-uyM5YGYI2H {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uyM5YGYI2H .image-block {
  margin: auto;
}
.cid-uyM5YGYI2H figcaption {
  position: relative;
}
.cid-uyM5YGYI2H figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uyM5YGYI2H .image-block {
    width: 100% !important;
  }
}
.cid-uyM604bhyV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uy6C3DA11O {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uy6C3DA11O .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uy6C3DA11O H2 {
  color: #ffffff;
}
.cid-uy6C5ge628 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uy6C5ge628 .image-block {
  margin: auto;
}
.cid-uy6C5ge628 figcaption {
  position: relative;
}
.cid-uy6C5ge628 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uy6C5ge628 .image-block {
    width: 100% !important;
  }
}
.cid-uy6C6JfN66 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uxrryNEipD {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uxrryNEipD .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uxrryNEipD H2 {
  color: #ffffff;
}
.cid-uxrrApnIdF {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uxrrApnIdF .image-block {
  margin: auto;
}
.cid-uxrrApnIdF figcaption {
  position: relative;
}
.cid-uxrrApnIdF figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uxrrApnIdF .image-block {
    width: 100% !important;
  }
}
.cid-uxrrC631Wi {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uwMcYulddY {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uwMcYulddY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uwMcYulddY H2 {
  color: #ffffff;
}
.cid-uwMd0mw9e3 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uwMd0mw9e3 .image-block {
  margin: auto;
}
.cid-uwMd0mw9e3 figcaption {
  position: relative;
}
.cid-uwMd0mw9e3 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uwMd0mw9e3 .image-block {
    width: 100% !important;
  }
}
.cid-uwMd1PmEaI {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uw7aCdKh0i {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uw7aCdKh0i .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uw7aCdKh0i H2 {
  color: #ffffff;
}
.cid-uw7aEdXypT {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uw7aEdXypT .image-block {
  margin: auto;
}
.cid-uw7aEdXypT figcaption {
  position: relative;
}
.cid-uw7aEdXypT figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uw7aEdXypT .image-block {
    width: 100% !important;
  }
}
.cid-uw7aFoI4su {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uvgZhebE6o {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uvgZhebE6o .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uvgZhebE6o H2 {
  color: #ffffff;
}
.cid-uvgZiN7joy {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uvgZiN7joy .image-block {
  margin: auto;
}
.cid-uvgZiN7joy figcaption {
  position: relative;
}
.cid-uvgZiN7joy figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uvgZiN7joy .image-block {
    width: 100% !important;
  }
}
.cid-uvgZk3K0on {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uuNtbtDwXh {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uuNtbtDwXh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uuNtbtDwXh H2 {
  color: #ffffff;
}
.cid-uuNtdXfypo {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uuNtdXfypo .image-block {
  margin: auto;
}
.cid-uuNtdXfypo figcaption {
  position: relative;
}
.cid-uuNtdXfypo figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uuNtdXfypo .image-block {
    width: 100% !important;
  }
}
.cid-uuNtfBp9m5 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uu8JuXJeYH {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uu8JuXJeYH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uu8JuXJeYH H2 {
  color: #ffffff;
}
.cid-uu8JwcmAVB {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uu8JwcmAVB .image-block {
  margin: auto;
}
.cid-uu8JwcmAVB figcaption {
  position: relative;
}
.cid-uu8JwcmAVB figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uu8JwcmAVB .image-block {
    width: 100% !important;
  }
}
.cid-uu8JxmHMgH {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uttCbtmlEv {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uttCbtmlEv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uttCbtmlEv H2 {
  color: #ffffff;
}
.cid-uttCdy1Xtd {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uttCdy1Xtd .image-block {
  margin: auto;
}
.cid-uttCdy1Xtd figcaption {
  position: relative;
}
.cid-uttCdy1Xtd figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uttCdy1Xtd .image-block {
    width: 100% !important;
  }
}
.cid-uttCf5iOod {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-usNr5vRvX6 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-usNr5vRvX6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-usNr5vRvX6 H2 {
  color: #ffffff;
}
.cid-usNr6PrY3L {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-usNr6PrY3L .image-block {
  margin: auto;
}
.cid-usNr6PrY3L figcaption {
  position: relative;
}
.cid-usNr6PrY3L figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-usNr6PrY3L .image-block {
    width: 100% !important;
  }
}
.cid-usNr8baVum {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-us9UGHpUo5 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-us9UGHpUo5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-us9UGHpUo5 H2 {
  color: #ffffff;
}
.cid-us9UIzxt51 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-us9UIzxt51 .image-block {
  margin: auto;
}
.cid-us9UIzxt51 figcaption {
  position: relative;
}
.cid-us9UIzxt51 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-us9UIzxt51 .image-block {
    width: 100% !important;
  }
}
.cid-us9UJVXB24 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-urvIkCSEzJ {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-urvIkCSEzJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-urvIkCSEzJ H2 {
  color: #ffffff;
}
.cid-urvImfJ6qz {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-urvImfJ6qz .image-block {
  margin: auto;
}
.cid-urvImfJ6qz figcaption {
  position: relative;
}
.cid-urvImfJ6qz figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-urvImfJ6qz .image-block {
    width: 100% !important;
  }
}
.cid-urvInHOnRO {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uqPXI6fCAO {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uqPXI6fCAO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uqPXI6fCAO H2 {
  color: #ffffff;
}
.cid-uqPXJQlbeB {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uqPXJQlbeB .image-block {
  margin: auto;
}
.cid-uqPXJQlbeB figcaption {
  position: relative;
}
.cid-uqPXJQlbeB figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uqPXJQlbeB .image-block {
    width: 100% !important;
  }
}
.cid-uqPXLqtwQ1 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uqaKT3jGIY {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uqaKT3jGIY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uqaKT3jGIY H2 {
  color: #ffffff;
}
.cid-uqaKUkXw30 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uqaKUkXw30 .image-block {
  margin: auto;
}
.cid-uqaKUkXw30 figcaption {
  position: relative;
}
.cid-uqaKUkXw30 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uqaKUkXw30 .image-block {
    width: 100% !important;
  }
}
.cid-uqaKVBDumB {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-upvVXZ7HvJ {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-upvVXZ7HvJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-upvVXZ7HvJ H2 {
  color: #ffffff;
}
.cid-upvVZKNAvr {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-upvVZKNAvr .image-block {
  margin: auto;
}
.cid-upvVZKNAvr figcaption {
  position: relative;
}
.cid-upvVZKNAvr figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upvVZKNAvr .image-block {
    width: 100% !important;
  }
}
.cid-upvW1f1KGo {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uoS9tOvuaR {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uoS9tOvuaR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uoS9tOvuaR H2 {
  color: #ffffff;
}
.cid-uoS9vFvmLx {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uoS9vFvmLx .image-block {
  margin: auto;
}
.cid-uoS9vFvmLx figcaption {
  position: relative;
}
.cid-uoS9vFvmLx figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uoS9vFvmLx .image-block {
    width: 100% !important;
  }
}
.cid-uoS9xkwsHQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uocqqvx3ua {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uocqqvx3ua .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uocqqvx3ua H2 {
  color: #ffffff;
}
.cid-uocqs9k4Co {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uocqs9k4Co .image-block {
  margin: auto;
}
.cid-uocqs9k4Co figcaption {
  position: relative;
}
.cid-uocqs9k4Co figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uocqs9k4Co .image-block {
    width: 100% !important;
  }
}
.cid-uocqtrrm5j {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-unwS5f5J8J {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-unwS5f5J8J .mbr-section-subtitle {
  color: #ffffff;
}
.cid-unwS5f5J8J H2 {
  color: #ffffff;
}
.cid-unwS74RQr6 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-unwS74RQr6 .image-block {
  margin: auto;
}
.cid-unwS74RQr6 figcaption {
  position: relative;
}
.cid-unwS74RQr6 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-unwS74RQr6 .image-block {
    width: 100% !important;
  }
}
.cid-unwS8B9pHl {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-umRO4Ku8Cv {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-umRO4Ku8Cv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umRO4Ku8Cv H2 {
  color: #ffffff;
}
.cid-umRO5ZrHWY {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-umRO5ZrHWY .image-block {
  margin: auto;
}
.cid-umRO5ZrHWY figcaption {
  position: relative;
}
.cid-umRO5ZrHWY figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-umRO5ZrHWY .image-block {
    width: 100% !important;
  }
}
.cid-umRO7wVxel {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-umdgcslo4y {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-umdgcslo4y .mbr-section-subtitle {
  color: #ffffff;
}
.cid-umdgcslo4y H2 {
  color: #ffffff;
}
.cid-umdgf8duBS {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-umdgf8duBS .image-block {
  margin: auto;
}
.cid-umdgf8duBS figcaption {
  position: relative;
}
.cid-umdgf8duBS figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-umdgf8duBS .image-block {
    width: 100% !important;
  }
}
.cid-umdggAavzm {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-ulxyqnhITR {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-ulxyqnhITR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ulxyqnhITR H2 {
  color: #ffffff;
}
.cid-ulxysK65XR {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-ulxysK65XR .image-block {
  margin: auto;
}
.cid-ulxysK65XR figcaption {
  position: relative;
}
.cid-ulxysK65XR figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ulxysK65XR .image-block {
    width: 100% !important;
  }
}
.cid-ulxytHIRcV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-ukThV9NasV {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-ukThV9NasV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ukThV9NasV H2 {
  color: #ffffff;
}
.cid-ukThX8UPfZ {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-ukThX8UPfZ .image-block {
  margin: auto;
}
.cid-ukThX8UPfZ figcaption {
  position: relative;
}
.cid-ukThX8UPfZ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ukThX8UPfZ .image-block {
    width: 100% !important;
  }
}
.cid-ukThYHVymF {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-ukeR3vfH4y {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-ukeR3vfH4y .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ukeR3vfH4y H2 {
  color: #ffffff;
}
.cid-ukeR5xtvfj {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-ukeR5xtvfj .image-block {
  margin: auto;
}
.cid-ukeR5xtvfj figcaption {
  position: relative;
}
.cid-ukeR5xtvfj figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ukeR5xtvfj .image-block {
    width: 100% !important;
  }
}
.cid-ukeR7EGf7X {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-ujzHvTYzUm {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-ujzHvTYzUm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ujzHvTYzUm H2 {
  color: #ffffff;
}
.cid-ujzHxAajE5 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-ujzHxAajE5 .image-block {
  margin: auto;
}
.cid-ujzHxAajE5 figcaption {
  position: relative;
}
.cid-ujzHxAajE5 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ujzHxAajE5 .image-block {
    width: 100% !important;
  }
}
.cid-ujzHz3tigN {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uiUWHXVhtv {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uiUWHXVhtv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uiUWHXVhtv H2 {
  color: #ffffff;
}
.cid-uiUWJ90dKu {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uiUWJ90dKu .image-block {
  margin: auto;
}
.cid-uiUWJ90dKu figcaption {
  position: relative;
}
.cid-uiUWJ90dKu figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uiUWJ90dKu .image-block {
    width: 100% !important;
  }
}
.cid-uiUWKiRHUd {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uif0QyovI4 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uif0QyovI4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uif0QyovI4 H2 {
  color: #ffffff;
}
.cid-uif0SsS0sS {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uif0SsS0sS .image-block {
  margin: auto;
}
.cid-uif0SsS0sS figcaption {
  position: relative;
}
.cid-uif0SsS0sS figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uif0SsS0sS .image-block {
    width: 100% !important;
  }
}
.cid-uif0TyAYxW {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uhA2fbkbsh {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uhA2fbkbsh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uhA2fbkbsh H2 {
  color: #ffffff;
}
.cid-uhA2gRlzDH {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uhA2gRlzDH .image-block {
  margin: auto;
}
.cid-uhA2gRlzDH figcaption {
  position: relative;
}
.cid-uhA2gRlzDH figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uhA2gRlzDH .image-block {
    width: 100% !important;
  }
}
.cid-uhA2i7QVXt {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-ugWX32jcMr {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-ugWX32jcMr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ugWX32jcMr H2 {
  color: #ffffff;
}
.cid-ugWX5OM7GM {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-ugWX5OM7GM .image-block {
  margin: auto;
}
.cid-ugWX5OM7GM figcaption {
  position: relative;
}
.cid-ugWX5OM7GM figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ugWX5OM7GM .image-block {
    width: 100% !important;
  }
}
.cid-ugWX6VhLsU {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-ugh83phMWP {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-ugh83phMWP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ugh83phMWP H2 {
  color: #ffffff;
}
.cid-ugh85lLZwh {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-ugh85lLZwh .image-block {
  margin: auto;
}
.cid-ugh85lLZwh figcaption {
  position: relative;
}
.cid-ugh85lLZwh figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ugh85lLZwh .image-block {
    width: 100% !important;
  }
}
.cid-ugh87e5NmC {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-ufBALDZH3H {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-ufBALDZH3H .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ufBALDZH3H H2 {
  color: #ffffff;
}
.cid-ufBANj1zEx {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-ufBANj1zEx .image-block {
  margin: auto;
}
.cid-ufBANj1zEx figcaption {
  position: relative;
}
.cid-ufBANj1zEx figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ufBANj1zEx .image-block {
    width: 100% !important;
  }
}
.cid-ufBAOmORxc {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-ueYACuSo1k {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-ueYACuSo1k .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ueYACuSo1k H2 {
  color: #ffffff;
}
.cid-ueYAE6d0l7 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-ueYAE6d0l7 .image-block {
  margin: auto;
}
.cid-ueYAE6d0l7 figcaption {
  position: relative;
}
.cid-ueYAE6d0l7 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ueYAE6d0l7 .image-block {
    width: 100% !important;
  }
}
.cid-ueYAFF35PV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-ueiVQ1MrTM {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-ueiVQ1MrTM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ueiVQ1MrTM H2 {
  color: #ffffff;
}
.cid-ueiVRxDNBC {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-ueiVRxDNBC .image-block {
  margin: auto;
}
.cid-ueiVRxDNBC figcaption {
  position: relative;
}
.cid-ueiVRxDNBC figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ueiVRxDNBC .image-block {
    width: 100% !important;
  }
}
.cid-ueiVSFcJMT {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-udCj9qlwEM {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-udCj9qlwEM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-udCj9qlwEM H2 {
  color: #ffffff;
}
.cid-udCjb3IVsM {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-udCjb3IVsM .image-block {
  margin: auto;
}
.cid-udCjb3IVsM figcaption {
  position: relative;
}
.cid-udCjb3IVsM figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-udCjb3IVsM .image-block {
    width: 100% !important;
  }
}
.cid-udCjcbl0NP {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-ucYzqKi1aT {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-ucYzqKi1aT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ucYzqKi1aT H2 {
  color: #ffffff;
}
.cid-ucYzswf4IG {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-ucYzswf4IG .image-block {
  margin: auto;
}
.cid-ucYzswf4IG figcaption {
  position: relative;
}
.cid-ucYzswf4IG figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ucYzswf4IG .image-block {
    width: 100% !important;
  }
}
.cid-ucYztSDRJ5 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uckccwmP2P {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uckccwmP2P .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uckccwmP2P H2 {
  color: #ffffff;
}
.cid-uckceflxtK {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uckceflxtK .image-block {
  margin: auto;
}
.cid-uckceflxtK figcaption {
  position: relative;
}
.cid-uckceflxtK figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uckceflxtK .image-block {
    width: 100% !important;
  }
}
.cid-uckcfs05HE {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-ubDJWbElv3 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-ubDJWbElv3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ubDJWbElv3 H2 {
  color: #ffffff;
}
.cid-ubDJXM0IDo {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-ubDJXM0IDo .image-block {
  margin: auto;
}
.cid-ubDJXM0IDo figcaption {
  position: relative;
}
.cid-ubDJXM0IDo figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ubDJXM0IDo .image-block {
    width: 100% !important;
  }
}
.cid-ubDJZh389i {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uaZ6rdLqLB {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uaZ6rdLqLB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uaZ6rdLqLB H2 {
  color: #ffffff;
}
.cid-uaZ6sJWy0y {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uaZ6sJWy0y .image-block {
  margin: auto;
}
.cid-uaZ6sJWy0y figcaption {
  position: relative;
}
.cid-uaZ6sJWy0y figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uaZ6sJWy0y .image-block {
    width: 100% !important;
  }
}
.cid-uaZ6tVZf9i {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-uakJnnKWwm {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-uakJnnKWwm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uakJnnKWwm H2 {
  color: #ffffff;
}
.cid-uakJpgyTD5 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-uakJpgyTD5 .image-block {
  margin: auto;
}
.cid-uakJpgyTD5 figcaption {
  position: relative;
}
.cid-uakJpgyTD5 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uakJpgyTD5 .image-block {
    width: 100% !important;
  }
}
.cid-uakJqHtNRz {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-u9EVHOW8sg {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u9EVHOW8sg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u9EVHOW8sg H2 {
  color: #ffffff;
}
.cid-u9EVJ8CHPY {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u9EVJ8CHPY .image-block {
  margin: auto;
}
.cid-u9EVJ8CHPY figcaption {
  position: relative;
}
.cid-u9EVJ8CHPY figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u9EVJ8CHPY .image-block {
    width: 100% !important;
  }
}
.cid-u9EVKoDfQJ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-u90DmyGlJn {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u90DmyGlJn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u90DmyGlJn H2 {
  color: #ffffff;
}
.cid-u90DparU19 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u90DparU19 .image-block {
  margin: auto;
}
.cid-u90DparU19 figcaption {
  position: relative;
}
.cid-u90DparU19 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u90DparU19 .image-block {
    width: 100% !important;
  }
}
.cid-u90DqGkEe3 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-u8lxHH5TQh {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u8lxHH5TQh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u8lxHH5TQh H2 {
  color: #ffffff;
}
.cid-u8lxJfzVL3 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u8lxJfzVL3 .image-block {
  margin: auto;
}
.cid-u8lxJfzVL3 figcaption {
  position: relative;
}
.cid-u8lxJfzVL3 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u8lxJfzVL3 .image-block {
    width: 100% !important;
  }
}
.cid-u8lxKMMKWf {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-u7GbPTcdQa {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u7GbPTcdQa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u7GbPTcdQa H2 {
  color: #ffffff;
}
.cid-u7GbSV2zbq {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u7GbSV2zbq .image-block {
  margin: auto;
}
.cid-u7GbSV2zbq figcaption {
  position: relative;
}
.cid-u7GbSV2zbq figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u7GbSV2zbq .image-block {
    width: 100% !important;
  }
}
.cid-u7GbTYhJD8 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-u71Q5hCsit {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u71Q5hCsit .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u71Q5hCsit H2 {
  color: #ffffff;
}
.cid-u71Q7o0yxW {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u71Q7o0yxW .image-block {
  margin: auto;
}
.cid-u71Q7o0yxW figcaption {
  position: relative;
}
.cid-u71Q7o0yxW figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u71Q7o0yxW .image-block {
    width: 100% !important;
  }
}
.cid-u71Q8yh2p1 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-u6mj8thdXc {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u6mj8thdXc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u6mj8thdXc H2 {
  color: #ffffff;
}
.cid-u6mjbUKASe {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u6mjbUKASe .image-block {
  margin: auto;
}
.cid-u6mjbUKASe figcaption {
  position: relative;
}
.cid-u6mjbUKASe figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u6mjbUKASe .image-block {
    width: 100% !important;
  }
}
.cid-u6mjd0h9wN {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-u5HOjg34PF {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u5HOjg34PF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u5HOjg34PF H2 {
  color: #ffffff;
}
.cid-u5HOkwV7LS {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u5HOkwV7LS .image-block {
  margin: auto;
}
.cid-u5HOkwV7LS figcaption {
  position: relative;
}
.cid-u5HOkwV7LS figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u5HOkwV7LS .image-block {
    width: 100% !important;
  }
}
.cid-u5HOlCRQ3n {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-u543IuGvNO {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u543IuGvNO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u543IuGvNO H2 {
  color: #ffffff;
}
.cid-u543JOVmcB {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u543JOVmcB .image-block {
  margin: auto;
}
.cid-u543JOVmcB figcaption {
  position: relative;
}
.cid-u543JOVmcB figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u543JOVmcB .image-block {
    width: 100% !important;
  }
}
.cid-u543KMBIxr {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-u4nu3ycNTI {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u4nu3ycNTI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u4nu3ycNTI H2 {
  color: #ffffff;
}
.cid-u4nu6et0Kz {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u4nu6et0Kz .image-block {
  margin: auto;
}
.cid-u4nu6et0Kz figcaption {
  position: relative;
}
.cid-u4nu6et0Kz figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u4nu6et0Kz .image-block {
    width: 100% !important;
  }
}
.cid-u4nu7FjITm {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-u3Js9eyTRd {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u3Js9eyTRd .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u3Js9eyTRd H2 {
  color: #ffffff;
}
.cid-u3JsaPaqA6 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u3JsaPaqA6 .image-block {
  margin: auto;
}
.cid-u3JsaPaqA6 figcaption {
  position: relative;
}
.cid-u3JsaPaqA6 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3JsaPaqA6 .image-block {
    width: 100% !important;
  }
}
.cid-u3JsbHGnNS {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-u362MVvMME {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u362MVvMME .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u362MVvMME H2 {
  color: #ffffff;
}
.cid-u362OiuatY {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u362OiuatY .image-block {
  margin: auto;
}
.cid-u362OiuatY figcaption {
  position: relative;
}
.cid-u362OiuatY figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u362OiuatY .image-block {
    width: 100% !important;
  }
}
.cid-u362Polau5 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-u2pqpjC4eh {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u2pqpjC4eh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u2pqpjC4eh H2 {
  color: #ffffff;
}
.cid-u2pqrkP0fo {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u2pqrkP0fo .image-block {
  margin: auto;
}
.cid-u2pqrkP0fo figcaption {
  position: relative;
}
.cid-u2pqrkP0fo figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u2pqrkP0fo .image-block {
    width: 100% !important;
  }
}
.cid-u2pqsMi8z8 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-u1Kwrr7fHO {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u1Kwrr7fHO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u1Kwrr7fHO H2 {
  color: #ffffff;
}
.cid-u1KwsJkKwB {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u1KwsJkKwB .image-block {
  margin: auto;
}
.cid-u1KwsJkKwB figcaption {
  position: relative;
}
.cid-u1KwsJkKwB figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u1KwsJkKwB .image-block {
    width: 100% !important;
  }
}
.cid-u1KwtPiLJy {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-u16qq94dCj {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u16qq94dCj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u16qq94dCj H2 {
  color: #ffffff;
}
.cid-u16qs36fEc {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u16qs36fEc .image-block {
  margin: auto;
}
.cid-u16qs36fEc figcaption {
  position: relative;
}
.cid-u16qs36fEc figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u16qs36fEc .image-block {
    width: 100% !important;
  }
}
.cid-u16qteCbrq {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-u0s7UJLCNc {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-u0s7UJLCNc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u0s7UJLCNc H2 {
  color: #ffffff;
}
.cid-u0s7VZETC7 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-u0s7VZETC7 .image-block {
  margin: auto;
}
.cid-u0s7VZETC7 figcaption {
  position: relative;
}
.cid-u0s7VZETC7 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u0s7VZETC7 .image-block {
    width: 100% !important;
  }
}
.cid-u0s7X8NIAp {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tZLrU9tCSi {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tZLrU9tCSi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tZLrU9tCSi H2 {
  color: #ffffff;
}
.cid-tZLrVIu8Pb {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tZLrVIu8Pb .image-block {
  margin: auto;
}
.cid-tZLrVIu8Pb figcaption {
  position: relative;
}
.cid-tZLrVIu8Pb figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tZLrVIu8Pb .image-block {
    width: 100% !important;
  }
}
.cid-tZLrX9ey5L {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tZ6QGuzaam {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tZ6QGuzaam .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tZ6QGuzaam H2 {
  color: #ffffff;
}
.cid-tZ6QI3OHp1 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tZ6QI3OHp1 .image-block {
  margin: auto;
}
.cid-tZ6QI3OHp1 figcaption {
  position: relative;
}
.cid-tZ6QI3OHp1 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tZ6QI3OHp1 .image-block {
    width: 100% !important;
  }
}
.cid-tZ6QIWhO5u {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tYsUpdVTHZ {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tYsUpdVTHZ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tYsUpdVTHZ H2 {
  color: #ffffff;
}
.cid-tYsUrqkkyJ {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tYsUrqkkyJ .image-block {
  margin: auto;
}
.cid-tYsUrqkkyJ figcaption {
  position: relative;
}
.cid-tYsUrqkkyJ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tYsUrqkkyJ .image-block {
    width: 100% !important;
  }
}
.cid-tYsUsD18Qa {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tXNRWKySN4 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tXNRWKySN4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tXNRWKySN4 H2 {
  color: #ffffff;
}
.cid-tXNRY8MHFP {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tXNRY8MHFP .image-block {
  margin: auto;
}
.cid-tXNRY8MHFP figcaption {
  position: relative;
}
.cid-tXNRY8MHFP figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tXNRY8MHFP .image-block {
    width: 100% !important;
  }
}
.cid-tXNRZnPqEP {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tX9uEhR0nT {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tX9uEhR0nT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tX9uEhR0nT H2 {
  color: #ffffff;
}
.cid-tX9uFGgSzW {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tX9uFGgSzW .image-block {
  margin: auto;
}
.cid-tX9uFGgSzW figcaption {
  position: relative;
}
.cid-tX9uFGgSzW figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tX9uFGgSzW .image-block {
    width: 100% !important;
  }
}
.cid-tX9uH3SWKc {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tWu7f8vgl2 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tWu7f8vgl2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tWu7f8vgl2 H2 {
  color: #ffffff;
}
.cid-tWu7gtlwyc {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tWu7gtlwyc .image-block {
  margin: auto;
}
.cid-tWu7gtlwyc figcaption {
  position: relative;
}
.cid-tWu7gtlwyc figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tWu7gtlwyc .image-block {
    width: 100% !important;
  }
}
.cid-tWu7hIyIY9 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tVPeDNBmOb {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tVPeDNBmOb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tVPeDNBmOb H2 {
  color: #ffffff;
}
.cid-tVPeFc4Y0k {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tVPeFc4Y0k .image-block {
  margin: auto;
}
.cid-tVPeFc4Y0k figcaption {
  position: relative;
}
.cid-tVPeFc4Y0k figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tVPeFc4Y0k .image-block {
    width: 100% !important;
  }
}
.cid-tVPeGenu3s {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tV8FC3M7os {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tV8FC3M7os .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tV8FC3M7os H2 {
  color: #ffffff;
}
.cid-tV8FDzBDd7 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tV8FDzBDd7 .image-block {
  margin: auto;
}
.cid-tV8FDzBDd7 figcaption {
  position: relative;
}
.cid-tV8FDzBDd7 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tV8FDzBDd7 .image-block {
    width: 100% !important;
  }
}
.cid-tV8FEG6svd {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tUvsDaFmaN {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tUvsDaFmaN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tUvsDaFmaN H2 {
  color: #ffffff;
}
.cid-tUvsEva8Pf {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tUvsEva8Pf .image-block {
  margin: auto;
}
.cid-tUvsEva8Pf figcaption {
  position: relative;
}
.cid-tUvsEva8Pf figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tUvsEva8Pf .image-block {
    width: 100% !important;
  }
}
.cid-tUvsFxEjLq {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tTQk91rtT1 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tTQk91rtT1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tTQk91rtT1 H2 {
  color: #ffffff;
}
.cid-tTQkaah1zm {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tTQkaah1zm .image-block {
  margin: auto;
}
.cid-tTQkaah1zm figcaption {
  position: relative;
}
.cid-tTQkaah1zm figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tTQkaah1zm .image-block {
    width: 100% !important;
  }
}
.cid-tTQkbgK1ED {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tTbvRy5JCJ {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tTbvRy5JCJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tTbvRy5JCJ H2 {
  color: #ffffff;
}
.cid-tTbvTFJGq9 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tTbvTFJGq9 .image-block {
  margin: auto;
}
.cid-tTbvTFJGq9 figcaption {
  position: relative;
}
.cid-tTbvTFJGq9 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tTbvTFJGq9 .image-block {
    width: 100% !important;
  }
}
.cid-tTbvUxyQfo {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tSvly0KacY {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tSvly0KacY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tSvly0KacY H2 {
  color: #ffffff;
}
.cid-tSvlzreSoJ {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tSvlzreSoJ .image-block {
  margin: auto;
}
.cid-tSvlzreSoJ figcaption {
  position: relative;
}
.cid-tSvlzreSoJ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tSvlzreSoJ .image-block {
    width: 100% !important;
  }
}
.cid-tSvlAtIUZW {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tRPVShqP9G {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tRPVShqP9G .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tRPVShqP9G H2 {
  color: #ffffff;
}
.cid-tRPVTFrZtu {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tRPVTFrZtu .image-block {
  margin: auto;
}
.cid-tRPVTFrZtu figcaption {
  position: relative;
}
.cid-tRPVTFrZtu figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tRPVTFrZtu .image-block {
    width: 100% !important;
  }
}
.cid-tRPVUB8a35 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tRaFjLacD6 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tRaFjLacD6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tRaFjLacD6 H2 {
  color: #ffffff;
}
.cid-tRaFl3Sra6 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tRaFl3Sra6 .image-block {
  margin: auto;
}
.cid-tRaFl3Sra6 figcaption {
  position: relative;
}
.cid-tRaFl3Sra6 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tRaFl3Sra6 .image-block {
    width: 100% !important;
  }
}
.cid-tRaFm86UtK {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tQxEYAn9Gi {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tQxEYAn9Gi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tQxEYAn9Gi H2 {
  color: #ffffff;
}
.cid-tQxEZTVYtm {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tQxEZTVYtm .image-block {
  margin: auto;
}
.cid-tQxEZTVYtm figcaption {
  position: relative;
}
.cid-tQxEZTVYtm figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tQxEZTVYtm .image-block {
    width: 100% !important;
  }
}
.cid-tQxF15vhpk {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tPSOlSaR4n {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tPSOlSaR4n .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tPSOlSaR4n H2 {
  color: #ffffff;
}
.cid-tPSOnhq3E2 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tPSOnhq3E2 .image-block {
  margin: auto;
}
.cid-tPSOnhq3E2 figcaption {
  position: relative;
}
.cid-tPSOnhq3E2 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tPSOnhq3E2 .image-block {
    width: 100% !important;
  }
}
.cid-tPSOo72EpD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tPc5ixPhgS {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tPc5ixPhgS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tPc5ixPhgS H2 {
  color: #ffffff;
}
.cid-tPc5kbsqAq {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tPc5kbsqAq .image-block {
  margin: auto;
}
.cid-tPc5kbsqAq figcaption {
  position: relative;
}
.cid-tPc5kbsqAq figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tPc5kbsqAq .image-block {
    width: 100% !important;
  }
}
.cid-tPc5l6InnH {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tOxGRLhS7D {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tOxGRLhS7D .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tOxGRLhS7D H2 {
  color: #ffffff;
}
.cid-tOxGWHa3wU {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tOxGWHa3wU .image-block {
  margin: auto;
}
.cid-tOxGWHa3wU figcaption {
  position: relative;
}
.cid-tOxGWHa3wU figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tOxGWHa3wU .image-block {
    width: 100% !important;
  }
}
.cid-tOxGY27KpG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tNTjpUhXP6 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tNTjpUhXP6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tNTjpUhXP6 H2 {
  color: #ffffff;
}
.cid-tNTjr0XOR1 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tNTjr0XOR1 .image-block {
  margin: auto;
}
.cid-tNTjr0XOR1 figcaption {
  position: relative;
}
.cid-tNTjr0XOR1 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tNTjr0XOR1 .image-block {
    width: 100% !important;
  }
}
.cid-tNTjs91SbI {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tNffUYHOlb {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tNffUYHOlb .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tNffUYHOlb H2 {
  color: #ffffff;
}
.cid-tNffW6Bfsb {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tNffW6Bfsb .image-block {
  margin: auto;
}
.cid-tNffW6Bfsb figcaption {
  position: relative;
}
.cid-tNffW6Bfsb figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tNffW6Bfsb .image-block {
    width: 100% !important;
  }
}
.cid-tNffX6yRAF {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tMzkAwjQeY {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tMzkAwjQeY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tMzkAwjQeY H2 {
  color: #ffffff;
}
.cid-tMzkBHni7A {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tMzkBHni7A .image-block {
  margin: auto;
}
.cid-tMzkBHni7A figcaption {
  position: relative;
}
.cid-tMzkBHni7A figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tMzkBHni7A .image-block {
    width: 100% !important;
  }
}
.cid-tMzkCJ78ec {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tLTXQiUz6l {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tLTXQiUz6l .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tLTXQiUz6l H2 {
  color: #ffffff;
}
.cid-tLTXSlJgo6 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tLTXSlJgo6 .image-block {
  margin: auto;
}
.cid-tLTXSlJgo6 figcaption {
  position: relative;
}
.cid-tLTXSlJgo6 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tLTXSlJgo6 .image-block {
    width: 100% !important;
  }
}
.cid-tLTXToQYQW {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tLfEST3VZ8 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tLfEST3VZ8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tLfEST3VZ8 H2 {
  color: #ffffff;
}
.cid-tLfEUgLUIw {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tLfEUgLUIw .image-block {
  margin: auto;
}
.cid-tLfEUgLUIw figcaption {
  position: relative;
}
.cid-tLfEUgLUIw figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tLfEUgLUIw .image-block {
    width: 100% !important;
  }
}
.cid-tLfEVqSQ8C {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tKAdWuhq84 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tKAdWuhq84 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tKAdWuhq84 H2 {
  color: #ffffff;
}
.cid-tKAdYBixQo {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tKAdYBixQo .image-block {
  margin: auto;
}
.cid-tKAdYBixQo figcaption {
  position: relative;
}
.cid-tKAdYBixQo figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tKAdYBixQo .image-block {
    width: 100% !important;
  }
}
.cid-tKAe0qtF5W {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tJV6h12I8V {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tJV6h12I8V .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tJV6h12I8V H2 {
  color: #ffffff;
}
.cid-tJV6iMc3uH {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tJV6iMc3uH .image-block {
  margin: auto;
}
.cid-tJV6iMc3uH figcaption {
  position: relative;
}
.cid-tJV6iMc3uH figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tJV6iMc3uH .image-block {
    width: 100% !important;
  }
}
.cid-tJV6jT974z {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tJgoXoV6Qx {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tJgoXoV6Qx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tJgoXoV6Qx H2 {
  color: #ffffff;
}
.cid-tJgoZmqyvh {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tJgoZmqyvh .image-block {
  margin: auto;
}
.cid-tJgoZmqyvh figcaption {
  position: relative;
}
.cid-tJgoZmqyvh figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tJgoZmqyvh .image-block {
    width: 100% !important;
  }
}
.cid-tJgp0uk4ji {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tICw7oOUav {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tICw7oOUav .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tICw7oOUav H2 {
  color: #ffffff;
}
.cid-tICw8GQl79 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tICw8GQl79 .image-block {
  margin: auto;
}
.cid-tICw8GQl79 figcaption {
  position: relative;
}
.cid-tICw8GQl79 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tICw8GQl79 .image-block {
    width: 100% !important;
  }
}
.cid-tICw9yIz1I {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tHXAc6DN6B {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHXAc6DN6B .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tHXAc6DN6B H2 {
  color: #ffffff;
}
.cid-tHXAdhfjSg {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tHXAdhfjSg .image-block {
  margin: auto;
}
.cid-tHXAdhfjSg figcaption {
  position: relative;
}
.cid-tHXAdhfjSg figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tHXAdhfjSg .image-block {
    width: 100% !important;
  }
}
.cid-tHXAelHTqi {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tHhXh4MIUu {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tHhXh4MIUu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tHhXh4MIUu H2 {
  color: #ffffff;
}
.cid-tHhXiw8QGj {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tHhXiw8QGj .image-block {
  margin: auto;
}
.cid-tHhXiw8QGj figcaption {
  position: relative;
}
.cid-tHhXiw8QGj figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tHhXiw8QGj .image-block {
    width: 100% !important;
  }
}
.cid-tHhXjs8Xp8 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tGCCfWJwTE {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tGCCfWJwTE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tGCCfWJwTE H2 {
  color: #ffffff;
}
.cid-tGCCh4PD21 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tGCCh4PD21 .image-block {
  margin: auto;
}
.cid-tGCCh4PD21 figcaption {
  position: relative;
}
.cid-tGCCh4PD21 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tGCCh4PD21 .image-block {
    width: 100% !important;
  }
}
.cid-tGCCintUHd {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tFXpVYDnYc {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tFXpVYDnYc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tFXpVYDnYc H2 {
  color: #ffffff;
}
.cid-tFXpXt2zJf {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tFXpXt2zJf .image-block {
  margin: auto;
}
.cid-tFXpXt2zJf figcaption {
  position: relative;
}
.cid-tFXpXt2zJf figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tFXpXt2zJf .image-block {
    width: 100% !important;
  }
}
.cid-tFXpYQt1Jt {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tFjOvu6uzX {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tFjOvu6uzX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tFjOvu6uzX H2 {
  color: #ffffff;
}
.cid-tFjOwzzNlF {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tFjOwzzNlF .image-block {
  margin: auto;
}
.cid-tFjOwzzNlF figcaption {
  position: relative;
}
.cid-tFjOwzzNlF figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tFjOwzzNlF .image-block {
    width: 100% !important;
  }
}
.cid-tFjOxLG7UW {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tEFrLh1P3u {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tEFrLh1P3u .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tEFrLh1P3u H2 {
  color: #ffffff;
}
.cid-tEFrNdFDOY {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tEFrNdFDOY .image-block {
  margin: auto;
}
.cid-tEFrNdFDOY figcaption {
  position: relative;
}
.cid-tEFrNdFDOY figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tEFrNdFDOY .image-block {
    width: 100% !important;
  }
}
.cid-tEFrQqzmot {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tE0ddNmedK {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tE0ddNmedK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tE0ddNmedK H2 {
  color: #ffffff;
}
.cid-tE0deUgmqo {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tE0deUgmqo .image-block {
  margin: auto;
}
.cid-tE0deUgmqo figcaption {
  position: relative;
}
.cid-tE0deUgmqo figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tE0deUgmqo .image-block {
    width: 100% !important;
  }
}
.cid-tE0dg2Hcgu {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tDjUBlRi0k {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tDjUBlRi0k .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tDjUBlRi0k H2 {
  color: #ffffff;
}
.cid-tDjUCqexI0 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tDjUCqexI0 .image-block {
  margin: auto;
}
.cid-tDjUCqexI0 figcaption {
  position: relative;
}
.cid-tDjUCqexI0 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tDjUCqexI0 .image-block {
    width: 100% !important;
  }
}
.cid-tDjUDiFnTI {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tCFfVlRn84 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tCFfVlRn84 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tCFfVlRn84 H2 {
  color: #ffffff;
}
.cid-tCFfWedtwM {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tCFfWedtwM .image-block {
  margin: auto;
}
.cid-tCFfWedtwM figcaption {
  position: relative;
}
.cid-tCFfWedtwM figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tCFfWedtwM .image-block {
    width: 100% !important;
  }
}
.cid-tCFfXkt0iZ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tC0eAGeWXp {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tC0eAGeWXp .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tC0eAGeWXp H2 {
  color: #ffffff;
}
.cid-tC0eBUjyA7 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tC0eBUjyA7 .image-block {
  margin: auto;
}
.cid-tC0eBUjyA7 figcaption {
  position: relative;
}
.cid-tC0eBUjyA7 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tC0eBUjyA7 .image-block {
    width: 100% !important;
  }
}
.cid-tC0eCBdtco {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tBlv64pgdu {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tBlv64pgdu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tBlv64pgdu H2 {
  color: #ffffff;
}
.cid-tBlv7MQOFF {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tBlv7MQOFF .image-block {
  margin: auto;
}
.cid-tBlv7MQOFF figcaption {
  position: relative;
}
.cid-tBlv7MQOFF figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tBlv7MQOFF .image-block {
    width: 100% !important;
  }
}
.cid-tBlv93VjtD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tAGstlz0cB {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tAGstlz0cB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tAGstlz0cB H2 {
  color: #ffffff;
}
.cid-tAGsuRRzbT {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tAGsuRRzbT .image-block {
  margin: auto;
}
.cid-tAGsuRRzbT figcaption {
  position: relative;
}
.cid-tAGsuRRzbT figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tAGsuRRzbT .image-block {
    width: 100% !important;
  }
}
.cid-tAGswhwOPJ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tA1WcPV9RS {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tA1WcPV9RS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tA1WcPV9RS H2 {
  color: #ffffff;
}
.cid-tA1WdJol1l {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tA1WdJol1l .image-block {
  margin: auto;
}
.cid-tA1WdJol1l figcaption {
  position: relative;
}
.cid-tA1WdJol1l figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tA1WdJol1l .image-block {
    width: 100% !important;
  }
}
.cid-tA1WeDDdJe {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tznjaJDj8h {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tznjaJDj8h .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tznjaJDj8h H2 {
  color: #ffffff;
}
.cid-tznjbvcqrY {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tznjbvcqrY .image-block {
  margin: auto;
}
.cid-tznjbvcqrY figcaption {
  position: relative;
}
.cid-tznjbvcqrY figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tznjbvcqrY .image-block {
    width: 100% !important;
  }
}
.cid-tznjcnnZik {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tyIFHq8Ejh {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tyIFHq8Ejh .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tyIFHq8Ejh H2 {
  color: #ffffff;
}
.cid-tyIFIKvqiN {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tyIFIKvqiN .image-block {
  margin: auto;
}
.cid-tyIFIKvqiN figcaption {
  position: relative;
}
.cid-tyIFIKvqiN figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tyIFIKvqiN .image-block {
    width: 100% !important;
  }
}
.cid-tyIFKdba1s {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-ty34sYrdNX {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-ty34sYrdNX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ty34sYrdNX H2 {
  color: #ffffff;
}
.cid-ty34uarKDy {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-ty34uarKDy .image-block {
  margin: auto;
}
.cid-ty34uarKDy figcaption {
  position: relative;
}
.cid-ty34uarKDy figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ty34uarKDy .image-block {
    width: 100% !important;
  }
}
.cid-ty34vc47ar {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-txofIYqae0 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-txofIYqae0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-txofIYqae0 H2 {
  color: #ffffff;
}
.cid-txofJWVNvX {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-txofJWVNvX .image-block {
  margin: auto;
}
.cid-txofJWVNvX figcaption {
  position: relative;
}
.cid-txofJWVNvX figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-txofJWVNvX .image-block {
    width: 100% !important;
  }
}
.cid-txofL8k3cD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-twIX0hfH9v {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-twIX0hfH9v .mbr-section-subtitle {
  color: #ffffff;
}
.cid-twIX0hfH9v H2 {
  color: #ffffff;
}
.cid-twIX1yP4mh {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-twIX1yP4mh .image-block {
  margin: auto;
}
.cid-twIX1yP4mh figcaption {
  position: relative;
}
.cid-twIX1yP4mh figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-twIX1yP4mh .image-block {
    width: 100% !important;
  }
}
.cid-twIX2uW4Tn {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tw3pJP48Rx {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tw3pJP48Rx .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tw3pJP48Rx H2 {
  color: #ffffff;
}
.cid-tw3pLb20O9 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tw3pLb20O9 .image-block {
  margin: auto;
}
.cid-tw3pLb20O9 figcaption {
  position: relative;
}
.cid-tw3pLb20O9 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tw3pLb20O9 .image-block {
    width: 100% !important;
  }
}
.cid-tw3pLZtJYL {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tvqQgp1f6L {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tvqQgp1f6L .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tvqQgp1f6L H2 {
  color: #ffffff;
}
.cid-tvqQhtWbp0 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tvqQhtWbp0 .image-block {
  margin: auto;
}
.cid-tvqQhtWbp0 figcaption {
  position: relative;
}
.cid-tvqQhtWbp0 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tvqQhtWbp0 .image-block {
    width: 100% !important;
  }
}
.cid-tvqQiBufGR {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tuK48zZlcj {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tuK48zZlcj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tuK48zZlcj H2 {
  color: #ffffff;
}
.cid-tuK4aO3gUO {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tuK4aO3gUO .image-block {
  margin: auto;
}
.cid-tuK4aO3gUO figcaption {
  position: relative;
}
.cid-tuK4aO3gUO figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tuK4aO3gUO .image-block {
    width: 100% !important;
  }
}
.cid-tuK4bUwZJg {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tu5EOjuhTS {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tu5EOjuhTS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tu5EOjuhTS H2 {
  color: #ffffff;
}
.cid-tu5EPrAA5x {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tu5EPrAA5x .image-block {
  margin: auto;
}
.cid-tu5EPrAA5x figcaption {
  position: relative;
}
.cid-tu5EPrAA5x figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tu5EPrAA5x .image-block {
    width: 100% !important;
  }
}
.cid-tu5ERejyiV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-ttrpNtsByw {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-ttrpNtsByw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ttrpNtsByw H2 {
  color: #ffffff;
}
.cid-ttrpOQkWTT {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-ttrpOQkWTT .image-block {
  margin: auto;
}
.cid-ttrpOQkWTT figcaption {
  position: relative;
}
.cid-ttrpOQkWTT figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ttrpOQkWTT .image-block {
    width: 100% !important;
  }
}
.cid-ttrpPPOtI8 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tsLM3VaT2x {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tsLM3VaT2x .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tsLM3VaT2x H2 {
  color: #ffffff;
}
.cid-tsLM5apAXG {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tsLM5apAXG .image-block {
  margin: auto;
}
.cid-tsLM5apAXG figcaption {
  position: relative;
}
.cid-tsLM5apAXG figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tsLM5apAXG .image-block {
    width: 100% !important;
  }
}
.cid-tsLM6iIVG7 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-ts6jnlVBa8 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-ts6jnlVBa8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ts6jnlVBa8 H2 {
  color: #ffffff;
}
.cid-ts6jouwZdz {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-ts6jouwZdz .image-block {
  margin: auto;
}
.cid-ts6jouwZdz figcaption {
  position: relative;
}
.cid-ts6jouwZdz figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ts6jouwZdz .image-block {
    width: 100% !important;
  }
}
.cid-ts6jpw0Rmq {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-trs6FuV3cR {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-trs6FuV3cR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-trs6FuV3cR H2 {
  color: #ffffff;
}
.cid-trs6GJTgns {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-trs6GJTgns .image-block {
  margin: auto;
}
.cid-trs6GJTgns figcaption {
  position: relative;
}
.cid-trs6GJTgns figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-trs6GJTgns .image-block {
    width: 100% !important;
  }
}
.cid-trs6I34hmY {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tqNNv2dEgA {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tqNNv2dEgA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tqNNv2dEgA H2 {
  color: #ffffff;
}
.cid-tqNNw7O4dp {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tqNNw7O4dp .image-block {
  margin: auto;
}
.cid-tqNNw7O4dp figcaption {
  position: relative;
}
.cid-tqNNw7O4dp figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tqNNw7O4dp .image-block {
    width: 100% !important;
  }
}
.cid-tqNNxj8szi {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tq7EYna1so {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tq7EYna1so .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tq7EYna1so H2 {
  color: #ffffff;
}
.cid-tq7EZRMHYJ {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tq7EZRMHYJ .image-block {
  margin: auto;
}
.cid-tq7EZRMHYJ figcaption {
  position: relative;
}
.cid-tq7EZRMHYJ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tq7EZRMHYJ .image-block {
    width: 100% !important;
  }
}
.cid-tq7F141rjv {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tptPAMmONm {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tptPAMmONm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tptPAMmONm H2 {
  color: #ffffff;
}
.cid-tptPDms0Zf {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tptPDms0Zf .image-block {
  margin: auto;
}
.cid-tptPDms0Zf figcaption {
  position: relative;
}
.cid-tptPDms0Zf figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tptPDms0Zf .image-block {
    width: 100% !important;
  }
}
.cid-tptPFVan6U {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-toO4I8gpFX {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-toO4I8gpFX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-toO4I8gpFX H2 {
  color: #ffffff;
}
.cid-toO4JOpXp6 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-toO4JOpXp6 .image-block {
  margin: auto;
}
.cid-toO4JOpXp6 figcaption {
  position: relative;
}
.cid-toO4JOpXp6 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toO4JOpXp6 .image-block {
    width: 100% !important;
  }
}
.cid-toO4L6U39A {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-to931WfRyT {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-to931WfRyT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-to931WfRyT H2 {
  color: #ffffff;
}
.cid-to933zL1bw {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-to933zL1bw .image-block {
  margin: auto;
}
.cid-to933zL1bw figcaption {
  position: relative;
}
.cid-to933zL1bw figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-to933zL1bw .image-block {
    width: 100% !important;
  }
}
.cid-to934yWbR5 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tntDKuzzpi {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tntDKuzzpi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tntDKuzzpi H2 {
  color: #ffffff;
}
.cid-tntDLSmpoI {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tntDLSmpoI .image-block {
  margin: auto;
}
.cid-tntDLSmpoI figcaption {
  position: relative;
}
.cid-tntDLSmpoI figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tntDLSmpoI .image-block {
    width: 100% !important;
  }
}
.cid-tntDN3WYKU {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tmP50UtcF7 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tmP50UtcF7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tmP50UtcF7 H2 {
  color: #ffffff;
}
.cid-tmP52qFHyt {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tmP52qFHyt .image-block {
  margin: auto;
}
.cid-tmP52qFHyt figcaption {
  position: relative;
}
.cid-tmP52qFHyt figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tmP52qFHyt .image-block {
    width: 100% !important;
  }
}
.cid-tmP53LrF1U {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tm9vdbCgjC {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tm9vdbCgjC .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tm9vdbCgjC H2 {
  color: #ffffff;
}
.cid-tm9vepY4bv {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tm9vepY4bv .image-block {
  margin: auto;
}
.cid-tm9vepY4bv figcaption {
  position: relative;
}
.cid-tm9vepY4bv figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tm9vepY4bv .image-block {
    width: 100% !important;
  }
}
.cid-tm9vfP7wm9 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tltVLrVS0B {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tltVLrVS0B .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tltVLrVS0B H2 {
  color: #ffffff;
}
.cid-tltVMS9C6H {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tltVMS9C6H .image-block {
  margin: auto;
}
.cid-tltVMS9C6H figcaption {
  position: relative;
}
.cid-tltVMS9C6H figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tltVMS9C6H .image-block {
    width: 100% !important;
  }
}
.cid-tltVOojKv4 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tkP6nuttZM {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tkP6nuttZM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tkP6nuttZM H2 {
  color: #ffffff;
}
.cid-tkP6oZV7ks {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tkP6oZV7ks .image-block {
  margin: auto;
}
.cid-tkP6oZV7ks figcaption {
  position: relative;
}
.cid-tkP6oZV7ks figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tkP6oZV7ks .image-block {
    width: 100% !important;
  }
}
.cid-tkP6qDVx5c {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tkblH3Wc9d {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tkblH3Wc9d .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tkblH3Wc9d H2 {
  color: #ffffff;
}
.cid-tkblId6fQb {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tkblId6fQb .image-block {
  margin: auto;
}
.cid-tkblId6fQb figcaption {
  position: relative;
}
.cid-tkblId6fQb figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tkblId6fQb .image-block {
    width: 100% !important;
  }
}
.cid-tkblLzvyVR {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tjxi4bAxTW {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tjxi4bAxTW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tjxi4bAxTW H2 {
  color: #ffffff;
}
.cid-tjxi5peoTM {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tjxi5peoTM .image-block {
  margin: auto;
}
.cid-tjxi5peoTM figcaption {
  position: relative;
}
.cid-tjxi5peoTM figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tjxi5peoTM .image-block {
    width: 100% !important;
  }
}
.cid-tjxi6vLioV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tiRhohsy7r {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tiRhohsy7r .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tiRhohsy7r H2 {
  color: #ffffff;
}
.cid-tiRhqL3NRf {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tiRhqL3NRf .image-block {
  margin: auto;
}
.cid-tiRhqL3NRf figcaption {
  position: relative;
}
.cid-tiRhqL3NRf figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tiRhqL3NRf .image-block {
    width: 100% !important;
  }
}
.cid-tiRhsaeUZP {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-ticiQBJhTT {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-ticiQBJhTT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-ticiQBJhTT H2 {
  color: #ffffff;
}
.cid-ticiSUOOs3 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-ticiSUOOs3 .image-block {
  margin: auto;
}
.cid-ticiSUOOs3 figcaption {
  position: relative;
}
.cid-ticiSUOOs3 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ticiSUOOs3 .image-block {
    width: 100% !important;
  }
}
.cid-ticiUaBIX7 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-thxfzoTgWV {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-thxfzoTgWV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-thxfzoTgWV H2 {
  color: #ffffff;
}
.cid-thxfBuGpdE {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-thxfBuGpdE .image-block {
  margin: auto;
}
.cid-thxfBuGpdE figcaption {
  position: relative;
}
.cid-thxfBuGpdE figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-thxfBuGpdE .image-block {
    width: 100% !important;
  }
}
.cid-thxfCQTetR {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tgSzMq659S {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tgSzMq659S .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tgSzMq659S H2 {
  color: #ffffff;
}
.cid-tgSzPoMsGj {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tgSzPoMsGj .image-block {
  margin: auto;
}
.cid-tgSzPoMsGj figcaption {
  position: relative;
}
.cid-tgSzPoMsGj figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tgSzPoMsGj .image-block {
    width: 100% !important;
  }
}
.cid-tgSzRCami3 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tgeATFHnEg {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tgeATFHnEg .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tgeATFHnEg H2 {
  color: #ffffff;
}
.cid-tgeB7yqQxo {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tgeB7yqQxo .image-block {
  margin: auto;
}
.cid-tgeB7yqQxo figcaption {
  position: relative;
}
.cid-tgeB7yqQxo figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tgeB7yqQxo .image-block {
    width: 100% !important;
  }
}
.cid-tgeBa95b2h {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tfyu9ROU9E {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tfyu9ROU9E .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tfyu9ROU9E H2 {
  color: #ffffff;
}
.cid-tfyuaZLN6K {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tfyuaZLN6K .image-block {
  margin: auto;
}
.cid-tfyuaZLN6K figcaption {
  position: relative;
}
.cid-tfyuaZLN6K figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tfyuaZLN6K .image-block {
    width: 100% !important;
  }
}
.cid-tfyucARR4u {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-teUFHvIfOt {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-teUFHvIfOt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-teUFHvIfOt H2 {
  color: #ffffff;
}
.cid-teUFISkI8A {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-teUFISkI8A .image-block {
  margin: auto;
}
.cid-teUFISkI8A figcaption {
  position: relative;
}
.cid-teUFISkI8A figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-teUFISkI8A .image-block {
    width: 100% !important;
  }
}
.cid-teUFKm6yY0 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-teeIfIbdHn {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-teeIfIbdHn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-teeIfIbdHn H2 {
  color: #ffffff;
}
.cid-teeIgHWGio {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-teeIgHWGio .image-block {
  margin: auto;
}
.cid-teeIgHWGio figcaption {
  position: relative;
}
.cid-teeIgHWGio figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-teeIgHWGio .image-block {
    width: 100% !important;
  }
}
.cid-teeIiXaC8X {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tdzJR5XXnY {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tdzJR5XXnY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tdzJR5XXnY H2 {
  color: #ffffff;
}
.cid-tdzJSfgXfH {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tdzJSfgXfH .image-block {
  margin: auto;
}
.cid-tdzJSfgXfH figcaption {
  position: relative;
}
.cid-tdzJSfgXfH figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tdzJSfgXfH .image-block {
    width: 100% !important;
  }
}
.cid-tdzJTZTtDJ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tcVaz8GoG9 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tcVaz8GoG9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tcVaz8GoG9 H2 {
  color: #ffffff;
}
.cid-tcVaC9Qp37 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tcVaC9Qp37 .image-block {
  margin: auto;
}
.cid-tcVaC9Qp37 figcaption {
  position: relative;
}
.cid-tcVaC9Qp37 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tcVaC9Qp37 .image-block {
    width: 100% !important;
  }
}
.cid-tcVaEpbKMS {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tcfH7DY8Hl {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tcfH7DY8Hl .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tcfH7DY8Hl H2 {
  color: #ffffff;
}
.cid-tcfH8LdMvI {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tcfH8LdMvI .image-block {
  margin: auto;
}
.cid-tcfH8LdMvI figcaption {
  position: relative;
}
.cid-tcfH8LdMvI figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tcfH8LdMvI .image-block {
    width: 100% !important;
  }
}
.cid-tcfHaGsyV0 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tbASzMWik2 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tbASzMWik2 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tbASzMWik2 H2 {
  color: #ffffff;
}
.cid-tbASC2Rp5s {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tbASC2Rp5s .image-block {
  margin: auto;
}
.cid-tbASC2Rp5s figcaption {
  position: relative;
}
.cid-tbASC2Rp5s figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tbASC2Rp5s .image-block {
    width: 100% !important;
  }
}
.cid-tbASFH2yyG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-taXnETuqR0 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-taXnETuqR0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-taXnETuqR0 H2 {
  color: #ffffff;
}
.cid-taXnM86fRH {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-taXnM86fRH .image-block {
  margin: auto;
}
.cid-taXnM86fRH figcaption {
  position: relative;
}
.cid-taXnM86fRH figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-taXnM86fRH .image-block {
    width: 100% !important;
  }
}
.cid-taXnOlwuA6 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tagR7HdAyK {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-tagR7HdAyK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tagR7HdAyK H2 {
  color: #ffffff;
}
.cid-tagR8Mvoi3 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tagR8Mvoi3 .image-block {
  margin: auto;
}
.cid-tagR8Mvoi3 figcaption {
  position: relative;
}
.cid-tagR8Mvoi3 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tagR8Mvoi3 .image-block {
    width: 100% !important;
  }
}
.cid-tagRax76xd {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-t9BQFRaMn3 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-t9BQFRaMn3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t9BQFRaMn3 H2 {
  color: #ffffff;
}
.cid-t9BQH02gBR {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-t9BQH02gBR .image-block {
  margin: auto;
}
.cid-t9BQH02gBR figcaption {
  position: relative;
}
.cid-t9BQH02gBR figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t9BQH02gBR .image-block {
    width: 100% !important;
  }
}
.cid-t9BQIp1KvY {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-t8WIeid89w {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-t8WIeid89w .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t8WIeid89w H2 {
  color: #ffffff;
}
.cid-t8WIfCfE2M {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-t8WIfCfE2M .image-block {
  margin: auto;
}
.cid-t8WIfCfE2M figcaption {
  position: relative;
}
.cid-t8WIfCfE2M figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t8WIfCfE2M .image-block {
    width: 100% !important;
  }
}
.cid-t8WIiqN8fU {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-t8hXtw6Jop {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-t8hXtw6Jop .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t8hXtw6Jop H2 {
  color: #ffffff;
}
.cid-t8hXuENFg6 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-t8hXuENFg6 .image-block {
  margin: auto;
}
.cid-t8hXuENFg6 figcaption {
  position: relative;
}
.cid-t8hXuENFg6 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t8hXuENFg6 .image-block {
    width: 100% !important;
  }
}
.cid-tee4yV8IMo {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-t7CumeU9e8 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-t7CumeU9e8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t7CumeU9e8 H2 {
  color: #ffffff;
}
.cid-t7CuofCOtB {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-t7CuofCOtB .image-block {
  margin: auto;
}
.cid-t7CuofCOtB figcaption {
  position: relative;
}
.cid-t7CuofCOtB figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t7CuofCOtB .image-block {
    width: 100% !important;
  }
}
.cid-tee5LyJ67r {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-t6YGk5EtKL {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-t6YGk5EtKL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t6YGk5EtKL H2 {
  color: #ffffff;
}
.cid-t6YGlpnNWZ {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-t6YGlpnNWZ .image-block {
  margin: auto;
}
.cid-t6YGlpnNWZ figcaption {
  position: relative;
}
.cid-t6YGlpnNWZ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t6YGlpnNWZ .image-block {
    width: 100% !important;
  }
}
.cid-tee5NNk22W {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-t6jMR766W8 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-t6jMR766W8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t6jMR766W8 H2 {
  color: #ffffff;
}
.cid-t6jNfFrmV8 {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-t6jNfFrmV8 .image-block {
  margin: auto;
}
.cid-t6jNfFrmV8 figcaption {
  position: relative;
}
.cid-t6jNfFrmV8 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t6jNfFrmV8 .image-block {
    width: 100% !important;
  }
}
.cid-tee5OMyhnK {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-t5DAb0yJ2E {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-t5DAb0yJ2E .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t5DAb0yJ2E H2 {
  color: #ffffff;
}
.cid-t5DAc0dnsg {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-t5DAc0dnsg .image-block {
  margin: auto;
}
.cid-t5DAc0dnsg figcaption {
  position: relative;
}
.cid-t5DAc0dnsg figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t5DAc0dnsg .image-block {
    width: 100% !important;
  }
}
.cid-tee5PFVnuY {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-t50GT114o9 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-t50GT114o9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t50GT114o9 H2 {
  color: #ffffff;
}
.cid-t50GTWfgSV {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-t50GTWfgSV .image-block {
  margin: auto;
}
.cid-t50GTWfgSV figcaption {
  position: relative;
}
.cid-t50GTWfgSV figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t50GTWfgSV .image-block {
    width: 100% !important;
  }
}
.cid-tee5QRcjsu {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-t4kU2D0POU {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-t4kU2D0POU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t4kU2D0POU H2 {
  color: #ffffff;
}
.cid-t4kU3A8u31 {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-t4kU3A8u31 .image-block {
  margin: auto;
}
.cid-t4kU3A8u31 figcaption {
  position: relative;
}
.cid-t4kU3A8u31 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t4kU3A8u31 .image-block {
    width: 100% !important;
  }
}
.cid-tee6Wcv96W {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-t3EXaNLj4P {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-t3EXaNLj4P .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t3EXaNLj4P H2 {
  color: #ffffff;
}
.cid-t3EXc5P8xa {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-t3EXc5P8xa .image-block {
  margin: auto;
}
.cid-t3EXc5P8xa figcaption {
  position: relative;
}
.cid-t3EXc5P8xa figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t3EXc5P8xa .image-block {
    width: 100% !important;
  }
}
.cid-tee7fGv9fL {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-t31qyLsDOH {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-t31qyLsDOH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t31qyLsDOH H2 {
  color: #ffffff;
}
.cid-t31qzUPYoI {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-t31qzUPYoI .image-block {
  margin: auto;
}
.cid-t31qzUPYoI figcaption {
  position: relative;
}
.cid-t31qzUPYoI figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t31qzUPYoI .image-block {
    width: 100% !important;
  }
}
.cid-teeosh4Aj1 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-t2m5E4eWP5 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-t2m5E4eWP5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t2m5E4eWP5 H2 {
  color: #ffffff;
}
.cid-t2m5Fbcazc {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-t2m5Fbcazc .image-block {
  margin: auto;
}
.cid-t2m5Fbcazc figcaption {
  position: relative;
}
.cid-t2m5Fbcazc figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t2m5Fbcazc .image-block {
    width: 100% !important;
  }
}
.cid-teeoZJUa3T {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-t1GyNsgs6U {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-t1GyNsgs6U .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t1GyNsgs6U H2 {
  color: #ffffff;
}
.cid-t1GyOpALEk {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-t1GyOpALEk .image-block {
  margin: auto;
}
.cid-t1GyOpALEk figcaption {
  position: relative;
}
.cid-t1GyOpALEk figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t1GyOpALEk .image-block {
    width: 100% !important;
  }
}
.cid-teep0W2Kn5 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-t1212eqhph {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-t1212eqhph .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t1212eqhph H2 {
  color: #ffffff;
}
.cid-t1214Si39T {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-t1214Si39T .image-block {
  margin: auto;
}
.cid-t1214Si39T figcaption {
  position: relative;
}
.cid-t1214Si39T figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t1214Si39T .image-block {
    width: 100% !important;
  }
}
.cid-teep2fVw4l {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-t0npf8Xcuv {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-t0npf8Xcuv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-t0npf8Xcuv H2 {
  color: #ffffff;
}
.cid-t0npinT06h {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-t0npinT06h .image-block {
  margin: auto;
}
.cid-t0npinT06h figcaption {
  position: relative;
}
.cid-t0npinT06h figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t0npinT06h .image-block {
    width: 100% !important;
  }
}
.cid-teep3uy3T1 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sZIXuJgp7G {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sZIXuJgp7G .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sZIXuJgp7G H2 {
  color: #ffffff;
}
.cid-sZIXxNI8ad {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sZIXxNI8ad .image-block {
  margin: auto;
}
.cid-sZIXxNI8ad figcaption {
  position: relative;
}
.cid-sZIXxNI8ad figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sZIXxNI8ad .image-block {
    width: 100% !important;
  }
}
.cid-teep4oUZKu {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sZ8enKINhJ {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sZ8enKINhJ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sZ8enKINhJ H2 {
  color: #ffffff;
}
.cid-sZ8eoJY6D9 {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sZ8eoJY6D9 .image-block {
  margin: auto;
}
.cid-sZ8eoJY6D9 figcaption {
  position: relative;
}
.cid-sZ8eoJY6D9 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sZ8eoJY6D9 .image-block {
    width: 100% !important;
  }
}
.cid-teep5gbVed {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sYoQwFUCAX {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sYoQwFUCAX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sYoQwFUCAX H2 {
  color: #ffffff;
}
.cid-sYoQybmplO {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sYoQybmplO .image-block {
  margin: auto;
}
.cid-sYoQybmplO figcaption {
  position: relative;
}
.cid-sYoQybmplO figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sYoQybmplO .image-block {
    width: 100% !important;
  }
}
.cid-teep67a3On {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sXJfYSayhM {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sXJfYSayhM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sXJfYSayhM H2 {
  color: #ffffff;
}
.cid-sXJfZZFBkT {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sXJfZZFBkT .image-block {
  margin: auto;
}
.cid-sXJfZZFBkT figcaption {
  position: relative;
}
.cid-sXJfZZFBkT figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sXJfZZFBkT .image-block {
    width: 100% !important;
  }
}
.cid-teep70IziO {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sX62rlWHoR {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sX62rlWHoR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sX62rlWHoR H2 {
  color: #ffffff;
}
.cid-sX62s58ACl {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sX62s58ACl .image-block {
  margin: auto;
}
.cid-sX62s58ACl figcaption {
  position: relative;
}
.cid-sX62s58ACl figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sX62s58ACl .image-block {
    width: 100% !important;
  }
}
.cid-teep8b9lRj {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sWpv9lZZoN {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sWpv9lZZoN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sWpv9lZZoN H2 {
  color: #ffffff;
}
.cid-sWpvbd8QpR {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sWpvbd8QpR .image-block {
  margin: auto;
}
.cid-sWpvbd8QpR figcaption {
  position: relative;
}
.cid-sWpvbd8QpR figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sWpvbd8QpR .image-block {
    width: 100% !important;
  }
}
.cid-tejqWjJvBO {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sVKgUeYJ25 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sVKgUeYJ25 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sVKgUeYJ25 H2 {
  color: #ffffff;
}
.cid-sVKgUYYzJp {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sVKgUYYzJp .image-block {
  margin: auto;
}
.cid-sVKgUYYzJp figcaption {
  position: relative;
}
.cid-sVKgUYYzJp figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sVKgUYYzJp .image-block {
    width: 100% !important;
  }
}
.cid-tejr64jwi3 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sV76G88Cbn {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sV76G88Cbn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sV76G88Cbn H2 {
  color: #ffffff;
}
.cid-sV76GPImYM {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sV76GPImYM .image-block {
  margin: auto;
}
.cid-sV76GPImYM figcaption {
  position: relative;
}
.cid-sV76GPImYM figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sV76GPImYM .image-block {
    width: 100% !important;
  }
}
.cid-tejr7nMtdc {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sUquLHTerL {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sUquLHTerL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sUquLHTerL H2 {
  color: #ffffff;
}
.cid-sUquMu8IHQ {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sUquMu8IHQ .image-block {
  margin: auto;
}
.cid-sUquMu8IHQ figcaption {
  position: relative;
}
.cid-sUquMu8IHQ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sUquMu8IHQ .image-block {
    width: 100% !important;
  }
}
.cid-tejr8mfOZm {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sTM1lN6lQI {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sTM1lN6lQI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sTM1lN6lQI H2 {
  color: #ffffff;
}
.cid-sTM1mB6Z0e {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sTM1mB6Z0e .image-block {
  margin: auto;
}
.cid-sTM1mB6Z0e figcaption {
  position: relative;
}
.cid-sTM1mB6Z0e figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sTM1mB6Z0e .image-block {
    width: 100% !important;
  }
}
.cid-tejr9lbAiK {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sT7zie64V8 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sT7zie64V8 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sT7zie64V8 H2 {
  color: #ffffff;
}
.cid-sT7zjpsQVd {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sT7zjpsQVd .image-block {
  margin: auto;
}
.cid-sT7zjpsQVd figcaption {
  position: relative;
}
.cid-sT7zjpsQVd figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sT7zjpsQVd .image-block {
    width: 100% !important;
  }
}
.cid-tejra9Gciw {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sSrP1eqFKV {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sSrP1eqFKV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sSrP1eqFKV H2 {
  color: #ffffff;
}
.cid-sSrP2g4n21 {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sSrP2g4n21 .image-block {
  margin: auto;
}
.cid-sSrP2g4n21 figcaption {
  position: relative;
}
.cid-sSrP2g4n21 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sSrP2g4n21 .image-block {
    width: 100% !important;
  }
}
.cid-tejraUsiPz {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sRMpJal9wF {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sRMpJal9wF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sRMpJal9wF H2 {
  color: #ffffff;
}
.cid-sRMpKg9qUZ {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sRMpKg9qUZ .image-block {
  margin: auto;
}
.cid-sRMpKg9qUZ figcaption {
  position: relative;
}
.cid-sRMpKg9qUZ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sRMpKg9qUZ .image-block {
    width: 100% !important;
  }
}
.cid-tejrbJYuu5 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sR97GkQhxS {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sR97GkQhxS .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sR97GkQhxS H2 {
  color: #ffffff;
}
.cid-sR97H6YODo {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sR97H6YODo .image-block {
  margin: auto;
}
.cid-sR97H6YODo figcaption {
  position: relative;
}
.cid-sR97H6YODo figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sR97H6YODo .image-block {
    width: 100% !important;
  }
}
.cid-tejrcDEb78 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sQtInLMadF {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sQtInLMadF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sQtInLMadF H2 {
  color: #ffffff;
}
.cid-sQtIp5DjTQ {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sQtIp5DjTQ .image-block {
  margin: auto;
}
.cid-sQtIp5DjTQ figcaption {
  position: relative;
}
.cid-sQtIp5DjTQ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sQtIp5DjTQ .image-block {
    width: 100% !important;
  }
}
.cid-tejrdxBJU1 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sPNYAqRDBn {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sPNYAqRDBn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sPNYAqRDBn H2 {
  color: #ffffff;
}
.cid-sPNYBVYCPz {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sPNYBVYCPz .image-block {
  margin: auto;
}
.cid-sPNYBVYCPz figcaption {
  position: relative;
}
.cid-sPNYBVYCPz figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sPNYBVYCPz .image-block {
    width: 100% !important;
  }
}
.cid-tejz3lecsL {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sP9zhUJKV1 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sP9zhUJKV1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sP9zhUJKV1 H2 {
  color: #ffffff;
}
.cid-sP9zj7HVsW {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sP9zj7HVsW .image-block {
  margin: auto;
}
.cid-sP9zj7HVsW figcaption {
  position: relative;
}
.cid-sP9zj7HVsW figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sP9zj7HVsW .image-block {
    width: 100% !important;
  }
}
.cid-tejz4wAUyR {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sOuZ5FnLed {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sOuZ5FnLed .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sOuZ5FnLed H2 {
  color: #ffffff;
}
.cid-sOuZ6P6o7V {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sOuZ6P6o7V .image-block {
  margin: auto;
}
.cid-sOuZ6P6o7V figcaption {
  position: relative;
}
.cid-sOuZ6P6o7V figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sOuZ6P6o7V .image-block {
    width: 100% !important;
  }
}
.cid-tejz5sOg5c {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sNPIjwxAxc {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sNPIjwxAxc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sNPIjwxAxc H2 {
  color: #ffffff;
}
.cid-sNPIkic82d {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sNPIkic82d .image-block {
  margin: auto;
}
.cid-sNPIkic82d figcaption {
  position: relative;
}
.cid-sNPIkic82d figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sNPIkic82d .image-block {
    width: 100% !important;
  }
}
.cid-tejz6levcx {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sNaFIqUsBR {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sNaFIqUsBR .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sNaFIqUsBR H2 {
  color: #ffffff;
}
.cid-sMwmTF2K2E {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sMwmTF2K2E .image-block {
  margin: auto;
}
.cid-sMwmTF2K2E figcaption {
  position: relative;
}
.cid-sMwmTF2K2E figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sMwmTF2K2E .image-block {
    width: 100% !important;
  }
}
.cid-tejz7dLMdj {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sMwmSQUCgY {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sMwmSQUCgY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sMwmSQUCgY H2 {
  color: #ffffff;
}
.cid-sNaFqgBuyX {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sNaFqgBuyX .image-block {
  margin: auto;
}
.cid-sNaFqgBuyX figcaption {
  position: relative;
}
.cid-sNaFqgBuyX figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sNaFqgBuyX .image-block {
    width: 100% !important;
  }
}
.cid-tejz80aBBG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sLQ2NVwWlB {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sLQ2NVwWlB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sLQ2NVwWlB H2 {
  color: #ffffff;
}
.cid-sLQ2OE0VCC {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sLQ2OE0VCC .image-block {
  margin: auto;
}
.cid-sLQ2OE0VCC figcaption {
  position: relative;
}
.cid-sLQ2OE0VCC figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sLQ2OE0VCC .image-block {
    width: 100% !important;
  }
}
.cid-tejz8XaCN2 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sLb1FnbhFL {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sLb1FnbhFL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sLb1FnbhFL H2 {
  color: #ffffff;
}
.cid-sLb1Gflfan {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sLb1Gflfan .image-block {
  margin: auto;
}
.cid-sLb1Gflfan figcaption {
  position: relative;
}
.cid-sLb1Gflfan figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sLb1Gflfan .image-block {
    width: 100% !important;
  }
}
.cid-tejz9W2Z72 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sKwsTp47wn {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sKwsTp47wn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sKwsTp47wn H2 {
  color: #ffffff;
}
.cid-sKwsREJ3A7 {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sKwsREJ3A7 .image-block {
  margin: auto;
}
.cid-sKwsREJ3A7 figcaption {
  position: relative;
}
.cid-sKwsREJ3A7 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sKwsREJ3A7 .image-block {
    width: 100% !important;
  }
}
.cid-tejzaNcvyB {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sJQNxayCs3 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sJQNxayCs3 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sJQNxayCs3 H2 {
  color: #ffffff;
}
.cid-sJQNxWivJA {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sJQNxWivJA .image-block {
  margin: auto;
}
.cid-sJQNxWivJA figcaption {
  position: relative;
}
.cid-sJQNxWivJA figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sJQNxWivJA .image-block {
    width: 100% !important;
  }
}
.cid-tejzbyuNic {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sJciEjzVqW {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sJciEjzVqW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sJciEjzVqW H2 {
  color: #ffffff;
}
.cid-sJciF3xoWk {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sJciF3xoWk .image-block {
  margin: auto;
}
.cid-sJciF3xoWk figcaption {
  position: relative;
}
.cid-sJciF3xoWk figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sJciF3xoWk .image-block {
    width: 100% !important;
  }
}
.cid-teptPKoaMH {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sICO6jUeWY {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sICO6jUeWY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sICO6jUeWY H2 {
  color: #ffffff;
}
.cid-sICO74v3zD {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sICO74v3zD .image-block {
  margin: auto;
}
.cid-sICO74v3zD figcaption {
  position: relative;
}
.cid-sICO74v3zD figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sICO74v3zD .image-block {
    width: 100% !important;
  }
}
.cid-teptQND2qA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sHSYcUDtky {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sHSYcUDtky .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sHSYcUDtky H2 {
  color: #ffffff;
}
.cid-sHSYdQr3L6 {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sHSYdQr3L6 .image-block {
  margin: auto;
}
.cid-sHSYdQr3L6 figcaption {
  position: relative;
}
.cid-sHSYdQr3L6 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sHSYdQr3L6 .image-block {
    width: 100% !important;
  }
}
.cid-teptSCOGLO {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sHeMlwgFR6 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sHeMlwgFR6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sHeMlwgFR6 H2 {
  color: #ffffff;
}
.cid-sHeMmxIyZ4 {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sHeMmxIyZ4 .image-block {
  margin: auto;
}
.cid-sHeMmxIyZ4 figcaption {
  position: relative;
}
.cid-sHeMmxIyZ4 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sHeMmxIyZ4 .image-block {
    width: 100% !important;
  }
}
.cid-teptTJoCMz {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sGAztBcF71 {
  padding-top: 75px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-sGAztBcF71 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sGAztBcF71 H2 {
  color: #ffffff;
}
.cid-sGAzuMdbiO {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sGAzuMdbiO .image-block {
  margin: auto;
}
.cid-sGAzuMdbiO figcaption {
  position: relative;
}
.cid-sGAzuMdbiO figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sGAzuMdbiO .image-block {
    width: 100% !important;
  }
}
.cid-teptUHzTvp {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-tw3GQKOTZI {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-tw3GQKOTZI img,
.cid-tw3GQKOTZI .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tw3GQKOTZI .item:focus,
.cid-tw3GQKOTZI span:focus {
  outline: none;
}
.cid-tw3GQKOTZI .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tw3GQKOTZI .item-wrapper {
  position: relative;
  border-radius: 10px;
  background: #000000;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tw3GQKOTZI .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tw3GQKOTZI .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tw3GQKOTZI .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tw3GQKOTZI .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tw3GQKOTZI .btn-primary {
  margin: 0;
}
.cid-tw3GQKOTZI .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tw3GQKOTZI .mbr-text,
.cid-tw3GQKOTZI .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-tw3GQKOTZI .mbr-text {
  margin-bottom: 0;
  color: #3F424E;
}
.cid-tw3GQKOTZI .mbr-section-btn {
  padding-bottom: 20px;
}
.cid-tw3GQKOTZI .item-title {
  text-align: center;
  margin: 0;
  color: #dd1b1b;
}
.cid-tw3GQKOTZI .mbr-section-subtitle {
  color: #ffffff;
  margin-top: 20px;
  text-align: left;
}
.cid-tw3GQKOTZI .content-margin {
  margin-top: 50px;
}
.cid-tw3GQKOTZI .btn {
  margin-top: 10px;
  margin-bottom: 0px;
}
.cid-tw3GQKOTZI .item-footer {
  padding: 0;
  margin: 0;
}
.cid-uoErYtobfv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-uoErYtobfv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoErYtobfv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoErYtobfv .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uoErYtobfv .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uoErYtobfv .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uoErYtobfv .mbr-section-title {
  color: #131313;
}
.cid-uoErYtobfv .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uoErYtobfv .items-row {
  row-gap: 24px;
}
.cid-uoErYtobfv .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uoErYtobfv .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #000000;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uoErYtobfv .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-uoErYtobfv .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uoErYtobfv .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-uoErYtobfv .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-uoErYtobfv .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uoErYtobfv .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-uoErYtobfv .card-title {
  color: #131313;
}
.cid-uoErYtobfv .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-uoErYtobfv .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-uoErYtobfv .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uoErYtobfv .link-text {
    margin-top: 5px;
  }
}
.cid-uoErYtobfv .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-uoErYtobfv .mbr-section-btn {
  margin-top: 5px;
}
.cid-uoErYtobfv .card-title,
.cid-uoErYtobfv .iconfont-wrapper {
  color: #dd1b1b;
  text-align: center;
}
.cid-uoErYtobfv .card-text,
.cid-uoErYtobfv .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-uoEqhqQ4NT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-uoEqhqQ4NT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uoEqhqQ4NT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uoEqhqQ4NT .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-uoEqhqQ4NT .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-uoEqhqQ4NT .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-uoEqhqQ4NT .mbr-section-title {
  color: #131313;
}
.cid-uoEqhqQ4NT .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uoEqhqQ4NT .items-row {
  row-gap: 24px;
}
.cid-uoEqhqQ4NT .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uoEqhqQ4NT .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #000000;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-uoEqhqQ4NT .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-uoEqhqQ4NT .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uoEqhqQ4NT .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-uoEqhqQ4NT .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-uoEqhqQ4NT .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-uoEqhqQ4NT .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-uoEqhqQ4NT .card-title {
  color: #131313;
}
.cid-uoEqhqQ4NT .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-uoEqhqQ4NT .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-uoEqhqQ4NT .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-uoEqhqQ4NT .link-text {
    margin-top: 5px;
  }
}
.cid-uoEqhqQ4NT .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-uoEqhqQ4NT .mbr-section-btn {
  margin-top: 5px;
}
.cid-uoEqhqQ4NT .card-title,
.cid-uoEqhqQ4NT .iconfont-wrapper {
  color: #dd1b1b;
  text-align: center;
}
.cid-uoEqhqQ4NT .card-text,
.cid-uoEqhqQ4NT .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-unxoEYh3Ag {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-unxoEYh3Ag .mbr-fallback-image.disabled {
  display: none;
}
.cid-unxoEYh3Ag .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unxoEYh3Ag .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-unxoEYh3Ag .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-unxoEYh3Ag .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-unxoEYh3Ag .mbr-section-title {
  color: #131313;
}
.cid-unxoEYh3Ag .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-unxoEYh3Ag .items-row {
  row-gap: 24px;
}
.cid-unxoEYh3Ag .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-unxoEYh3Ag .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #000000;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-unxoEYh3Ag .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-unxoEYh3Ag .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-unxoEYh3Ag .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-unxoEYh3Ag .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-unxoEYh3Ag .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-unxoEYh3Ag .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-unxoEYh3Ag .card-title {
  color: #131313;
}
.cid-unxoEYh3Ag .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-unxoEYh3Ag .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-unxoEYh3Ag .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-unxoEYh3Ag .link-text {
    margin-top: 5px;
  }
}
.cid-unxoEYh3Ag .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-unxoEYh3Ag .mbr-section-btn {
  margin-top: 5px;
}
.cid-unxoEYh3Ag .card-title,
.cid-unxoEYh3Ag .iconfont-wrapper {
  color: #dd1b1b;
  text-align: center;
}
.cid-unxoEYh3Ag .card-text,
.cid-unxoEYh3Ag .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-unxnGb6N5I {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-unxnGb6N5I .mbr-fallback-image.disabled {
  display: none;
}
.cid-unxnGb6N5I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unxnGb6N5I .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-unxnGb6N5I .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-unxnGb6N5I .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-unxnGb6N5I .mbr-section-title {
  color: #131313;
}
.cid-unxnGb6N5I .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-unxnGb6N5I .items-row {
  row-gap: 24px;
}
.cid-unxnGb6N5I .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-unxnGb6N5I .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #000000;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-unxnGb6N5I .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-unxnGb6N5I .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-unxnGb6N5I .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-unxnGb6N5I .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-unxnGb6N5I .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-unxnGb6N5I .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-unxnGb6N5I .card-title {
  color: #131313;
}
.cid-unxnGb6N5I .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-unxnGb6N5I .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-unxnGb6N5I .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-unxnGb6N5I .link-text {
    margin-top: 5px;
  }
}
.cid-unxnGb6N5I .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-unxnGb6N5I .mbr-section-btn {
  margin-top: 5px;
}
.cid-unxnGb6N5I .card-title,
.cid-unxnGb6N5I .iconfont-wrapper {
  color: #dd1b1b;
  text-align: center;
}
.cid-unxnGb6N5I .card-text,
.cid-unxnGb6N5I .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-unxlZAd8LT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-unxlZAd8LT .mbr-fallback-image.disabled {
  display: none;
}
.cid-unxlZAd8LT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unxlZAd8LT .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-unxlZAd8LT .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-unxlZAd8LT .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-unxlZAd8LT .mbr-section-title {
  color: #131313;
}
.cid-unxlZAd8LT .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-unxlZAd8LT .items-row {
  row-gap: 24px;
}
.cid-unxlZAd8LT .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-unxlZAd8LT .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #000000;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-unxlZAd8LT .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-unxlZAd8LT .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-unxlZAd8LT .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-unxlZAd8LT .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-unxlZAd8LT .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-unxlZAd8LT .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-unxlZAd8LT .card-title {
  color: #131313;
}
.cid-unxlZAd8LT .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-unxlZAd8LT .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-unxlZAd8LT .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-unxlZAd8LT .link-text {
    margin-top: 5px;
  }
}
.cid-unxlZAd8LT .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-unxlZAd8LT .mbr-section-btn {
  margin-top: 5px;
}
.cid-unxlZAd8LT .card-title,
.cid-unxlZAd8LT .iconfont-wrapper {
  color: #dd1b1b;
  text-align: center;
}
.cid-unxlZAd8LT .card-text,
.cid-unxlZAd8LT .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-unxiuluv0V {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-unxiuluv0V .mbr-fallback-image.disabled {
  display: none;
}
.cid-unxiuluv0V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unxiuluv0V .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .cid-unxiuluv0V .mbr-section-head {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-unxiuluv0V .mbr-section-head {
    margin-bottom: 30px;
  }
}
.cid-unxiuluv0V .mbr-section-title {
  color: #131313;
}
.cid-unxiuluv0V .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-unxiuluv0V .items-row {
  row-gap: 24px;
}
.cid-unxiuluv0V .item {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-unxiuluv0V .item-wrapper {
  width: 100%;
  padding: 11px 11px 40px;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #000000;
  transition: .3s all;
}
@media (max-width: 1199px) {
  .cid-unxiuluv0V .item-wrapper {
    padding: 11px 11px 20px;
  }
}
@media (min-width: 992px) {
  .cid-unxiuluv0V .item-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-unxiuluv0V .item-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 46/calc(10 * 3);
}
.cid-unxiuluv0V .item-content {
  margin-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .cid-unxiuluv0V .item-content {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .cid-unxiuluv0V .item-content {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 20px;
    padding-bottom: 15px;
  }
}
.cid-unxiuluv0V .card-title {
  color: #131313;
}
.cid-unxiuluv0V .card-text {
  margin-top: 5px;
  color: #131313;
}
.cid-unxiuluv0V .link-text {
  margin-top: 20px;
  color: #FC7942;
}
@media (max-width: 1199px) {
  .cid-unxiuluv0V .link-text {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .cid-unxiuluv0V .link-text {
    margin-top: 5px;
  }
}
.cid-unxiuluv0V .link-text a.text-primary:hover {
  color: #131313 !important;
}
.cid-unxiuluv0V .mbr-section-btn {
  margin-top: 5px;
}
.cid-unxiuluv0V .card-title,
.cid-unxiuluv0V .iconfont-wrapper {
  color: #dd1b1b;
  text-align: center;
}
.cid-unxiuluv0V .card-text,
.cid-unxiuluv0V .mbr-section-btn {
  color: #ffffff;
  text-align: center;
}
.cid-snNWvKJUiR {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-snNWvKJUiR .image-block {
  margin: auto;
}
.cid-snNWvKJUiR figcaption {
  position: relative;
}
.cid-snNWvKJUiR figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-snNWvKJUiR .image-block {
    width: 100% !important;
  }
}
.cid-snNWyHzzWR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-snNWyHzzWR P {
  color: #767676;
}
.cid-snNWyHzzWR H1 {
  color: #f7ed4a;
}
.cid-s3TthIdaV4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-s3TthIdaV4 .mbr-text,
.cid-s3TthIdaV4 blockquote {
  color: #767676;
}
.cid-s3TthIdaV4 .mbr-text P {
  text-align: center;
}
.cid-s3TthIdaV4 .mbr-text {
  color: #f7ed4a;
}
.cid-syE5zTCNZa {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #232323;
}
.cid-syE5zTCNZa .images-container.container-fluid {
  padding: 0;
}
.cid-syE5zTCNZa .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-syE5zTCNZa .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-syE5zTCNZa .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-syE5zTCNZa .media-container-row .img-item .img-caption {
  background: #7f1933;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-syE5zTCNZa .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-syE5zTCNZa .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-syE5zTCNZa .img-item {
    width: 100% !important;
  }
  .cid-syE5zTCNZa .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-syE5zTCNZa P {
  color: #ffffff;
}
.cid-sx3iAxhEIt {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #767676;
}
.cid-sx3iAxhEIt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sx3iAxhEIt H2 {
  color: #f7ed4a;
}
.cid-sBJYmHPIPC {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #767676;
}
.cid-sBJYmHPIPC .images-container.container-fluid {
  padding: 0;
}
.cid-sBJYmHPIPC .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-sBJYmHPIPC .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-sBJYmHPIPC .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-sBJYmHPIPC .media-container-row .img-item .img-caption {
  background: #767676;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-sBJYmHPIPC .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sBJYmHPIPC .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-sBJYmHPIPC .img-item {
    width: 100% !important;
  }
  .cid-sBJYmHPIPC .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-sBJYmHPIPC P {
  text-align: center;
}
.cid-srPRcl0fV7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #223558;
}
.cid-srPRcl0fV7 .mbr-section-subtitle {
  color: #fff000;
}
.cid-srPRcl0fV7 H2 {
  color: #ffffff;
}
.cid-srPQkSGhow {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #4e73b8;
}
.cid-srPQkSGhow img {
  width: 65%;
  pointer-events: all;
}
.cid-srPQkSGhow .row {
  justify-content: center;
}
.cid-srPQkSGhow .img1 {
  position: absolute;
  left: -8rem;
  top: 5rem;
  z-index: 4;
  width: 100%;
  pointer-events: none;
}
.cid-srPQkSGhow .img2 {
  position: absolute;
  top: 0rem;
  left: 0rem;
  width: 100%;
  pointer-events: none;
}
.cid-srPQkSGhow .img3 {
  position: absolute;
  top: 12rem;
  right: -8rem;
  width: 100%;
  pointer-events: none;
}
.cid-srPQkSGhow .item {
  height: 600px;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cid-srPQkSGhow .img1 {
    left: -2rem;
    top: 5rem;
  }
  .cid-srPQkSGhow .img2 {
    top: 0rem;
    left: 0rem;
  }
  .cid-srPQkSGhow .img3 {
    top: 8rem;
    right: -2rem;
  }
  .cid-srPQkSGhow .item {
    height: 300px;
  }
}
.cid-s01SdbVyww {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s01SdbVyww .mbr-text,
.cid-s01SdbVyww blockquote {
  color: #767676;
}
.cid-rWqOBs4ibD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-rWqOBs4ibD P {
  color: #767676;
}
.cid-rWqOBs4ibD H1 {
  color: #ffffff;
}
.cid-syE69UN92B {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-syE69UN92B h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-syE69UN92B p {
  color: #767676;
  text-align: left;
}
.cid-syE69UN92B .card-wrapper {
  height: 100%;
}
.cid-syE69UN92B .container-fluid {
  max-width: 1600px;
}
.cid-syE69UN92B .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-syE69UN92B img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-syE69UN92B .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-syE69UN92B .card:hover img {
  filter: blur(3px);
}
.cid-syE69UN92B .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-syE69UN92B .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-syE69UN92B .mbr-iconfont {
    opacity: 1;
  }
  .cid-syE69UN92B img {
    filter: blur(3px);
  }
}
.cid-syE69UN92B .card-title {
  color: #232323;
}
.cid-syE69UN92B P {
  color: #ffffff;
}
.cid-sppZ2tXXTQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-sppZ2tXXTQ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sppZ2tXXTQ p {
  color: #767676;
  text-align: left;
}
.cid-sppZ2tXXTQ .card-wrapper {
  height: 100%;
}
.cid-sppZ2tXXTQ .container-fluid {
  max-width: 1600px;
}
.cid-sppZ2tXXTQ .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sppZ2tXXTQ img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-sppZ2tXXTQ .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sppZ2tXXTQ .card:hover img {
  filter: blur(3px);
}
.cid-sppZ2tXXTQ .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-sppZ2tXXTQ .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sppZ2tXXTQ .mbr-iconfont {
    opacity: 1;
  }
  .cid-sppZ2tXXTQ img {
    filter: blur(3px);
  }
}
.cid-sppZ2tXXTQ .card-title {
  color: #232323;
}
.cid-sppZ2tXXTQ P {
  color: #ffffff;
}
.cid-snNYkZ2rKS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-snNYkZ2rKS h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snNYkZ2rKS p {
  color: #767676;
  text-align: left;
}
.cid-snNYkZ2rKS .card-wrapper {
  height: 100%;
}
.cid-snNYkZ2rKS .container-fluid {
  max-width: 1600px;
}
.cid-snNYkZ2rKS .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snNYkZ2rKS img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snNYkZ2rKS .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snNYkZ2rKS .card:hover img {
  filter: blur(3px);
}
.cid-snNYkZ2rKS .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snNYkZ2rKS .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snNYkZ2rKS .mbr-iconfont {
    opacity: 1;
  }
  .cid-snNYkZ2rKS img {
    filter: blur(3px);
  }
}
.cid-snNYkZ2rKS .card-title {
  color: #232323;
}
.cid-snNYkZ2rKS P {
  color: #ffffff;
}
.cid-snNYlUPrxY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-snNYlUPrxY h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snNYlUPrxY p {
  color: #767676;
  text-align: left;
}
.cid-snNYlUPrxY .card-wrapper {
  height: 100%;
}
.cid-snNYlUPrxY .container-fluid {
  max-width: 1600px;
}
.cid-snNYlUPrxY .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snNYlUPrxY img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snNYlUPrxY .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snNYlUPrxY .card:hover img {
  filter: blur(3px);
}
.cid-snNYlUPrxY .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snNYlUPrxY .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snNYlUPrxY .mbr-iconfont {
    opacity: 1;
  }
  .cid-snNYlUPrxY img {
    filter: blur(3px);
  }
}
.cid-snNYlUPrxY .card-title {
  color: #232323;
}
.cid-snNYlUPrxY P {
  color: #ffffff;
}
.cid-s5Z4ddfJkf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-s5Z4ddfJkf h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-s5Z4ddfJkf p {
  color: #767676;
  text-align: left;
}
.cid-s5Z4ddfJkf .card-wrapper {
  height: 100%;
}
.cid-s5Z4ddfJkf .container-fluid {
  max-width: 1600px;
}
.cid-s5Z4ddfJkf .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-s5Z4ddfJkf img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-s5Z4ddfJkf .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-s5Z4ddfJkf .card:hover img {
  filter: blur(3px);
}
.cid-s5Z4ddfJkf .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-s5Z4ddfJkf .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-s5Z4ddfJkf .mbr-iconfont {
    opacity: 1;
  }
  .cid-s5Z4ddfJkf img {
    filter: blur(3px);
  }
}
.cid-s5Z4ddfJkf .card-title {
  color: #232323;
}
.cid-s5Z4ddfJkf P {
  color: #ffffff;
}
.cid-s26cgiCTbA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-s26cgiCTbA h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-s26cgiCTbA p {
  color: #767676;
  text-align: left;
}
.cid-s26cgiCTbA .card-wrapper {
  height: 100%;
}
.cid-s26cgiCTbA .container-fluid {
  max-width: 1600px;
}
.cid-s26cgiCTbA .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-s26cgiCTbA img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-s26cgiCTbA .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-s26cgiCTbA .card:hover img {
  filter: blur(3px);
}
.cid-s26cgiCTbA .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-s26cgiCTbA .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-s26cgiCTbA .mbr-iconfont {
    opacity: 1;
  }
  .cid-s26cgiCTbA img {
    filter: blur(3px);
  }
}
.cid-s26cgiCTbA P {
  color: #ffffff;
}
.cid-rZbyle9Ag8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-rZbyle9Ag8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rZbyle9Ag8 p {
  color: #767676;
  text-align: left;
}
.cid-rZbyle9Ag8 .card-wrapper {
  height: 100%;
}
.cid-rZbyle9Ag8 .container-fluid {
  max-width: 1600px;
}
.cid-rZbyle9Ag8 .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-rZbyle9Ag8 img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-rZbyle9Ag8 .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-rZbyle9Ag8 .card:hover img {
  filter: blur(3px);
}
.cid-rZbyle9Ag8 .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-rZbyle9Ag8 .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-rZbyle9Ag8 .mbr-iconfont {
    opacity: 1;
  }
  .cid-rZbyle9Ag8 img {
    filter: blur(3px);
  }
}
.cid-rZbyle9Ag8 P {
  color: #ffffff;
}
.cid-rXY7FEuaY2 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #767676;
}
.cid-rXY7FEuaY2 .mbr-section-subtitle {
  color: #767676;
}
.cid-rXY7FEuaY2 H2 {
  color: #ffffff;
}
.cid-sBJYEWw9K9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #767676;
}
.cid-sBJYEWw9K9 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sBJYEWw9K9 p {
  color: #767676;
  text-align: left;
}
.cid-sBJYEWw9K9 .card-box {
  padding-top: 2rem;
}
.cid-sBJYEWw9K9 .card-wrapper {
  height: 100%;
}
.cid-sBJYEWw9K9 P {
  text-align: left;
  color: #232323;
}
.cid-so4jH6IjsH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #767676;
}
.cid-so4jH6IjsH h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-so4jH6IjsH p {
  color: #767676;
  text-align: left;
}
.cid-so4jH6IjsH .card-box {
  padding-top: 2rem;
}
.cid-so4jH6IjsH .card-wrapper {
  height: 100%;
}
.cid-so4jH6IjsH P {
  text-align: left;
  color: #232323;
}
.cid-snO0g3WsZn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #767676;
}
.cid-snO0g3WsZn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snO0g3WsZn p {
  color: #767676;
  text-align: left;
}
.cid-snO0g3WsZn .card-box {
  padding-top: 2rem;
}
.cid-snO0g3WsZn .card-wrapper {
  height: 100%;
}
.cid-snO0g3WsZn P {
  text-align: left;
  color: #232323;
}
.cid-snO0gNPtVp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #767676;
}
.cid-snO0gNPtVp h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snO0gNPtVp p {
  color: #767676;
  text-align: left;
}
.cid-snO0gNPtVp .card-box {
  padding-top: 2rem;
}
.cid-snO0gNPtVp .card-wrapper {
  height: 100%;
}
.cid-snO0gNPtVp P {
  text-align: left;
  color: #232323;
}
.cid-rWqqcq6kWg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #223558;
}
.cid-rWqqcq6kWg P {
  color: #767676;
}
.cid-rWqqcq6kWg H1 {
  color: #ffffff;
}
.cid-sDEbdiq05X {
  padding-top: 45px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-sDEbdiq05X .images-container.container-fluid {
  padding: 0;
}
.cid-sDEbdiq05X .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-sDEbdiq05X .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-sDEbdiq05X .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-sDEbdiq05X .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-sDEbdiq05X .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-sDEbdiq05X .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-sDEbdiq05X .img-item {
    width: 100% !important;
  }
  .cid-sDEbdiq05X .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-snO31FuBs8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snO31FuBs8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snO31FuBs8 p {
  color: #767676;
  text-align: left;
}
.cid-snO31FuBs8 .card-wrapper {
  height: 100%;
}
.cid-snO31FuBs8 .container-fluid {
  max-width: 1600px;
}
.cid-snO31FuBs8 .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snO31FuBs8 img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snO31FuBs8 .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snO31FuBs8 .card:hover img {
  filter: blur(3px);
}
.cid-snO31FuBs8 .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snO31FuBs8 .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snO31FuBs8 .mbr-iconfont {
    opacity: 1;
  }
  .cid-snO31FuBs8 img {
    filter: blur(3px);
  }
}
.cid-snO31FuBs8 .card-title {
  color: #dd1b1b;
}
.cid-snO4kgGzvW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snO4kgGzvW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snO4kgGzvW p {
  color: #767676;
  text-align: left;
}
.cid-snO4kgGzvW .card-wrapper {
  height: 100%;
}
.cid-snO4kgGzvW .container-fluid {
  max-width: 1600px;
}
.cid-snO4kgGzvW .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snO4kgGzvW img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snO4kgGzvW .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snO4kgGzvW .card:hover img {
  filter: blur(3px);
}
.cid-snO4kgGzvW .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snO4kgGzvW .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snO4kgGzvW .mbr-iconfont {
    opacity: 1;
  }
  .cid-snO4kgGzvW img {
    filter: blur(3px);
  }
}
.cid-snO4kgGzvW .card-title {
  color: #dd1b1b;
}
.cid-snO56YDznx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snO56YDznx h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snO56YDznx p {
  color: #767676;
  text-align: left;
}
.cid-snO56YDznx .card-wrapper {
  height: 100%;
}
.cid-snO56YDznx .container-fluid {
  max-width: 1600px;
}
.cid-snO56YDznx .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snO56YDznx img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snO56YDznx .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snO56YDznx .card:hover img {
  filter: blur(3px);
}
.cid-snO56YDznx .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snO56YDznx .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snO56YDznx .mbr-iconfont {
    opacity: 1;
  }
  .cid-snO56YDznx img {
    filter: blur(3px);
  }
}
.cid-snO56YDznx .card-title {
  color: #dd1b1b;
}
.cid-snO6u29yo0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snO6u29yo0 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snO6u29yo0 p {
  color: #767676;
  text-align: left;
}
.cid-snO6u29yo0 .card-wrapper {
  height: 100%;
}
.cid-snO6u29yo0 .container-fluid {
  max-width: 1600px;
}
.cid-snO6u29yo0 .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snO6u29yo0 img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snO6u29yo0 .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snO6u29yo0 .card:hover img {
  filter: blur(3px);
}
.cid-snO6u29yo0 .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snO6u29yo0 .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snO6u29yo0 .mbr-iconfont {
    opacity: 1;
  }
  .cid-snO6u29yo0 img {
    filter: blur(3px);
  }
}
.cid-snO6u29yo0 .card-title {
  color: #dd1b1b;
}
.cid-snO7tmZt1v {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snO7tmZt1v h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snO7tmZt1v p {
  color: #767676;
  text-align: left;
}
.cid-snO7tmZt1v .card-wrapper {
  height: 100%;
}
.cid-snO7tmZt1v .container-fluid {
  max-width: 1600px;
}
.cid-snO7tmZt1v .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snO7tmZt1v img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snO7tmZt1v .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snO7tmZt1v .card:hover img {
  filter: blur(3px);
}
.cid-snO7tmZt1v .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snO7tmZt1v .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snO7tmZt1v .mbr-iconfont {
    opacity: 1;
  }
  .cid-snO7tmZt1v img {
    filter: blur(3px);
  }
}
.cid-snO7tmZt1v .card-title {
  color: #dd1b1b;
}
.cid-snO8EiyY1w {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snO8EiyY1w h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snO8EiyY1w p {
  color: #767676;
  text-align: left;
}
.cid-snO8EiyY1w .card-wrapper {
  height: 100%;
}
.cid-snO8EiyY1w .container-fluid {
  max-width: 1600px;
}
.cid-snO8EiyY1w .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snO8EiyY1w img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snO8EiyY1w .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snO8EiyY1w .card:hover img {
  filter: blur(3px);
}
.cid-snO8EiyY1w .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snO8EiyY1w .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snO8EiyY1w .mbr-iconfont {
    opacity: 1;
  }
  .cid-snO8EiyY1w img {
    filter: blur(3px);
  }
}
.cid-snO8EiyY1w .card-title {
  color: #dd1b1b;
}
.cid-snO9XM8kdi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snO9XM8kdi h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snO9XM8kdi p {
  color: #767676;
  text-align: left;
}
.cid-snO9XM8kdi .card-wrapper {
  height: 100%;
}
.cid-snO9XM8kdi .container-fluid {
  max-width: 1600px;
}
.cid-snO9XM8kdi .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snO9XM8kdi img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snO9XM8kdi .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snO9XM8kdi .card:hover img {
  filter: blur(3px);
}
.cid-snO9XM8kdi .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snO9XM8kdi .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snO9XM8kdi .mbr-iconfont {
    opacity: 1;
  }
  .cid-snO9XM8kdi img {
    filter: blur(3px);
  }
}
.cid-snO9XM8kdi .card-title {
  color: #dd1b1b;
}
.cid-s9PseF9Frp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s9PseF9Frp h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-s9PseF9Frp p {
  color: #767676;
  text-align: left;
}
.cid-s9PseF9Frp .card-wrapper {
  height: 100%;
}
.cid-s9PseF9Frp .container-fluid {
  max-width: 1600px;
}
.cid-s9PseF9Frp .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-s9PseF9Frp img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-s9PseF9Frp .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-s9PseF9Frp .card:hover img {
  filter: blur(3px);
}
.cid-s9PseF9Frp .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-s9PseF9Frp .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-s9PseF9Frp .mbr-iconfont {
    opacity: 1;
  }
  .cid-s9PseF9Frp img {
    filter: blur(3px);
  }
}
.cid-s9PseF9Frp .card-title {
  color: #dd1b1b;
}
.cid-rXRZ4LKU4g {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSMo7xCanh {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #223558;
}
@media (max-width: 767px) {
  .cid-rSMo7xCanh .content {
    text-align: center;
  }
  .cid-rSMo7xCanh .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rSMo7xCanh .img-logo img {
  height: 6rem;
}
.cid-rSMo7xCanh .form-group,
.cid-rSMo7xCanh .input-group-btn {
  padding: 0;
}
.cid-rSMo7xCanh .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rSMo7xCanh .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-rSMo7xCanh .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rSMo7xCanh .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rSMo7xCanh .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rSMo7xCanh .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rSMo7xCanh .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rSMo7xCanh .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-rSMo7xCanh .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rSMo7xCanh .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rSMo7xCanh .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rSMo7xCanh .foot-logo {
    text-align: center !important;
  }
  .cid-rSMo7xCanh .foot-title {
    text-align: center !important;
  }
  .cid-rSMo7xCanh .mbr-text {
    text-align: center !important;
  }
  .cid-rSMo7xCanh .form-group {
    margin: 0;
  }
}
.cid-rSMo7xCanh .mbr-links-column {
  color: #149dcc;
}
.cid-rUWyELyDl5 .navbar {
  padding: .5rem 0;
  background: #223558;
  transition: none;
  min-height: 77px;
}
.cid-rUWyELyDl5 .navbar-dropdown.bg-color.transparent.opened {
  background: #223558;
}
.cid-rUWyELyDl5 a {
  font-style: normal;
}
.cid-rUWyELyDl5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rUWyELyDl5 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rUWyELyDl5 .nav-item:focus,
.cid-rUWyELyDl5 .nav-link:focus {
  outline: none;
}
.cid-rUWyELyDl5 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rUWyELyDl5 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rUWyELyDl5 .menu-logo {
  margin-right: auto;
}
.cid-rUWyELyDl5 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rUWyELyDl5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rUWyELyDl5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rUWyELyDl5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rUWyELyDl5 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rUWyELyDl5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rUWyELyDl5 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rUWyELyDl5 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rUWyELyDl5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rUWyELyDl5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rUWyELyDl5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rUWyELyDl5 .dropdown .dropdown-menu {
  background: #223558;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rUWyELyDl5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rUWyELyDl5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rUWyELyDl5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rUWyELyDl5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rUWyELyDl5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rUWyELyDl5 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rUWyELyDl5 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rUWyELyDl5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rUWyELyDl5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rUWyELyDl5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rUWyELyDl5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rUWyELyDl5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rUWyELyDl5 button.navbar-toggler:focus {
  outline: none;
}
.cid-rUWyELyDl5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rUWyELyDl5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rUWyELyDl5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rUWyELyDl5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rUWyELyDl5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rUWyELyDl5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUWyELyDl5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rUWyELyDl5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rUWyELyDl5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUWyELyDl5 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rUWyELyDl5 .collapsed .btn {
  display: -webkit-flex;
}
.cid-rUWyELyDl5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rUWyELyDl5 .collapsed .navbar-collapse.collapsing,
.cid-rUWyELyDl5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rUWyELyDl5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rUWyELyDl5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rUWyELyDl5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rUWyELyDl5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rUWyELyDl5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rUWyELyDl5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rUWyELyDl5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rUWyELyDl5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-rUWyELyDl5 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-rUWyELyDl5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-rUWyELyDl5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rUWyELyDl5 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rUWyELyDl5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rUWyELyDl5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rUWyELyDl5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rUWyELyDl5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-rUWyELyDl5 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rUWyELyDl5 img {
    height: 3.8rem !important;
  }
  .cid-rUWyELyDl5 .btn {
    display: -webkit-flex;
  }
  .cid-rUWyELyDl5 button.navbar-toggler {
    display: block;
  }
  .cid-rUWyELyDl5 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rUWyELyDl5 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rUWyELyDl5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rUWyELyDl5 .navbar-collapse.collapsing,
  .cid-rUWyELyDl5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-rUWyELyDl5 .navbar-collapse.collapsing .navbar-nav,
  .cid-rUWyELyDl5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rUWyELyDl5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rUWyELyDl5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rUWyELyDl5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-rUWyELyDl5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rUWyELyDl5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rUWyELyDl5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rUWyELyDl5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rUWyELyDl5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rUWyELyDl5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rUWyELyDl5 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rUWyELyDl5 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rUWyELyDl5 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rUWyELyDl5 .nav-link:hover,
.cid-rUWyELyDl5 .dropdown-item:hover {
  color: #f7ed4a !important;
}
.cid-rROC8exr7V {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rROC8exr7V .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rROC8exr7V .section-text {
  padding: 2rem 0;
}
.cid-rROC8exr7V .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rROC8exr7V .inner-container {
    width: 100% !important;
  }
}
.cid-rSMocwFL3n {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rSMocwFL3n .content {
    text-align: center;
  }
  .cid-rSMocwFL3n .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rSMocwFL3n .img-logo img {
  height: 6rem;
}
.cid-rSMocwFL3n .form-group,
.cid-rSMocwFL3n .input-group-btn {
  padding: 0;
}
.cid-rSMocwFL3n .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rSMocwFL3n .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-rSMocwFL3n .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rSMocwFL3n .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rSMocwFL3n .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rSMocwFL3n .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rSMocwFL3n .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rSMocwFL3n .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-rSMocwFL3n .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rSMocwFL3n .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rSMocwFL3n .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rSMocwFL3n .foot-logo {
    text-align: center !important;
  }
  .cid-rSMocwFL3n .foot-title {
    text-align: center !important;
  }
  .cid-rSMocwFL3n .mbr-text {
    text-align: center !important;
  }
  .cid-rSMocwFL3n .form-group {
    margin: 0;
  }
}
.cid-rSMocwFL3n .foot-title {
  color: #f7ed4a;
}
.cid-rUWyP3G0Lz .navbar {
  padding: .5rem 0;
  background: #223558;
  transition: none;
  min-height: 77px;
}
.cid-rUWyP3G0Lz .navbar-dropdown.bg-color.transparent.opened {
  background: #223558;
}
.cid-rUWyP3G0Lz a {
  font-style: normal;
}
.cid-rUWyP3G0Lz .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rUWyP3G0Lz .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rUWyP3G0Lz .nav-item:focus,
.cid-rUWyP3G0Lz .nav-link:focus {
  outline: none;
}
.cid-rUWyP3G0Lz .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rUWyP3G0Lz .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rUWyP3G0Lz .menu-logo {
  margin-right: auto;
}
.cid-rUWyP3G0Lz .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rUWyP3G0Lz .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rUWyP3G0Lz .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rUWyP3G0Lz .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rUWyP3G0Lz .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rUWyP3G0Lz .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rUWyP3G0Lz .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rUWyP3G0Lz .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rUWyP3G0Lz .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rUWyP3G0Lz .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rUWyP3G0Lz .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rUWyP3G0Lz .dropdown .dropdown-menu {
  background: #223558;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rUWyP3G0Lz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rUWyP3G0Lz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rUWyP3G0Lz .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rUWyP3G0Lz .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rUWyP3G0Lz .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rUWyP3G0Lz .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rUWyP3G0Lz .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rUWyP3G0Lz .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rUWyP3G0Lz .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rUWyP3G0Lz .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rUWyP3G0Lz .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rUWyP3G0Lz button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rUWyP3G0Lz button.navbar-toggler:focus {
  outline: none;
}
.cid-rUWyP3G0Lz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rUWyP3G0Lz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rUWyP3G0Lz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rUWyP3G0Lz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rUWyP3G0Lz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rUWyP3G0Lz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUWyP3G0Lz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rUWyP3G0Lz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rUWyP3G0Lz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUWyP3G0Lz .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rUWyP3G0Lz .collapsed .btn {
  display: -webkit-flex;
}
.cid-rUWyP3G0Lz .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rUWyP3G0Lz .collapsed .navbar-collapse.collapsing,
.cid-rUWyP3G0Lz .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rUWyP3G0Lz .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rUWyP3G0Lz .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rUWyP3G0Lz .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rUWyP3G0Lz .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rUWyP3G0Lz .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rUWyP3G0Lz .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rUWyP3G0Lz .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rUWyP3G0Lz .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-rUWyP3G0Lz .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-rUWyP3G0Lz .collapsed button.navbar-toggler {
  display: block;
}
.cid-rUWyP3G0Lz .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rUWyP3G0Lz .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rUWyP3G0Lz .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rUWyP3G0Lz .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rUWyP3G0Lz .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rUWyP3G0Lz .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-rUWyP3G0Lz .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rUWyP3G0Lz img {
    height: 3.8rem !important;
  }
  .cid-rUWyP3G0Lz .btn {
    display: -webkit-flex;
  }
  .cid-rUWyP3G0Lz button.navbar-toggler {
    display: block;
  }
  .cid-rUWyP3G0Lz .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rUWyP3G0Lz .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rUWyP3G0Lz .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rUWyP3G0Lz .navbar-collapse.collapsing,
  .cid-rUWyP3G0Lz .navbar-collapse.show {
    display: block !important;
  }
  .cid-rUWyP3G0Lz .navbar-collapse.collapsing .navbar-nav,
  .cid-rUWyP3G0Lz .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rUWyP3G0Lz .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rUWyP3G0Lz .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rUWyP3G0Lz .navbar-collapse.collapsing .navbar-buttons,
  .cid-rUWyP3G0Lz .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rUWyP3G0Lz .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rUWyP3G0Lz .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rUWyP3G0Lz .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rUWyP3G0Lz .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rUWyP3G0Lz .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rUWyP3G0Lz .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rUWyP3G0Lz .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rUWyP3G0Lz .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rUWyP3G0Lz .nav-link:hover,
.cid-rUWyP3G0Lz .dropdown-item:hover {
  color: #f7ed4a !important;
}
.cid-rRUNFPxVqJ {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRUNFPxVqJ .mbr-text,
.cid-rRUNFPxVqJ blockquote {
  color: #767676;
}
.cid-rRUNFPxVqJ .mbr-text P {
  text-align: left;
}
.cid-rSMogzAgnv {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rSMogzAgnv .content {
    text-align: center;
  }
  .cid-rSMogzAgnv .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rSMogzAgnv .img-logo img {
  height: 6rem;
}
.cid-rSMogzAgnv .form-group,
.cid-rSMogzAgnv .input-group-btn {
  padding: 0;
}
.cid-rSMogzAgnv .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rSMogzAgnv .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-rSMogzAgnv .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rSMogzAgnv .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rSMogzAgnv .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rSMogzAgnv .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rSMogzAgnv .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rSMogzAgnv .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-rSMogzAgnv .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rSMogzAgnv .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rSMogzAgnv .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rSMogzAgnv .foot-logo {
    text-align: center !important;
  }
  .cid-rSMogzAgnv .foot-title {
    text-align: center !important;
  }
  .cid-rSMogzAgnv .mbr-text {
    text-align: center !important;
  }
  .cid-rSMogzAgnv .form-group {
    margin: 0;
  }
}
.cid-rSMogzAgnv .foot-title {
  color: #f7ed4a;
}
.cid-rUWyrkSNr2 .navbar {
  padding: .5rem 0;
  background: #223558;
  transition: none;
  min-height: 77px;
}
.cid-rUWyrkSNr2 .navbar-dropdown.bg-color.transparent.opened {
  background: #223558;
}
.cid-rUWyrkSNr2 a {
  font-style: normal;
}
.cid-rUWyrkSNr2 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rUWyrkSNr2 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rUWyrkSNr2 .nav-item:focus,
.cid-rUWyrkSNr2 .nav-link:focus {
  outline: none;
}
.cid-rUWyrkSNr2 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rUWyrkSNr2 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rUWyrkSNr2 .menu-logo {
  margin-right: auto;
}
.cid-rUWyrkSNr2 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rUWyrkSNr2 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rUWyrkSNr2 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rUWyrkSNr2 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rUWyrkSNr2 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rUWyrkSNr2 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rUWyrkSNr2 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rUWyrkSNr2 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rUWyrkSNr2 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rUWyrkSNr2 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rUWyrkSNr2 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rUWyrkSNr2 .dropdown .dropdown-menu {
  background: #223558;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rUWyrkSNr2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rUWyrkSNr2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rUWyrkSNr2 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rUWyrkSNr2 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rUWyrkSNr2 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rUWyrkSNr2 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rUWyrkSNr2 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rUWyrkSNr2 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rUWyrkSNr2 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rUWyrkSNr2 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rUWyrkSNr2 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rUWyrkSNr2 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rUWyrkSNr2 button.navbar-toggler:focus {
  outline: none;
}
.cid-rUWyrkSNr2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rUWyrkSNr2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rUWyrkSNr2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rUWyrkSNr2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rUWyrkSNr2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rUWyrkSNr2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUWyrkSNr2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rUWyrkSNr2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rUWyrkSNr2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUWyrkSNr2 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rUWyrkSNr2 .collapsed .btn {
  display: -webkit-flex;
}
.cid-rUWyrkSNr2 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rUWyrkSNr2 .collapsed .navbar-collapse.collapsing,
.cid-rUWyrkSNr2 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rUWyrkSNr2 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rUWyrkSNr2 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rUWyrkSNr2 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rUWyrkSNr2 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rUWyrkSNr2 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rUWyrkSNr2 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rUWyrkSNr2 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rUWyrkSNr2 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-rUWyrkSNr2 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-rUWyrkSNr2 .collapsed button.navbar-toggler {
  display: block;
}
.cid-rUWyrkSNr2 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rUWyrkSNr2 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rUWyrkSNr2 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rUWyrkSNr2 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rUWyrkSNr2 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rUWyrkSNr2 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-rUWyrkSNr2 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rUWyrkSNr2 img {
    height: 3.8rem !important;
  }
  .cid-rUWyrkSNr2 .btn {
    display: -webkit-flex;
  }
  .cid-rUWyrkSNr2 button.navbar-toggler {
    display: block;
  }
  .cid-rUWyrkSNr2 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rUWyrkSNr2 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rUWyrkSNr2 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rUWyrkSNr2 .navbar-collapse.collapsing,
  .cid-rUWyrkSNr2 .navbar-collapse.show {
    display: block !important;
  }
  .cid-rUWyrkSNr2 .navbar-collapse.collapsing .navbar-nav,
  .cid-rUWyrkSNr2 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rUWyrkSNr2 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rUWyrkSNr2 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rUWyrkSNr2 .navbar-collapse.collapsing .navbar-buttons,
  .cid-rUWyrkSNr2 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rUWyrkSNr2 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rUWyrkSNr2 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rUWyrkSNr2 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rUWyrkSNr2 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rUWyrkSNr2 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rUWyrkSNr2 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rUWyrkSNr2 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rUWyrkSNr2 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rUWyrkSNr2 .nav-link:hover,
.cid-rUWyrkSNr2 .dropdown-item:hover {
  color: #f7ed4a !important;
}
.cid-t8W454e8ro {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t8W454e8ro .mbr-text,
.cid-t8W454e8ro blockquote {
  color: #767676;
}
.cid-uDKSto6hSj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uDKSto6hSj .mbr-section-subtitle {
  color: #767676;
}
.cid-s5AfNEusRc {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s5AfNEusRc .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-s5AfNEusRc .section-text {
  padding: 2rem 0;
}
.cid-s5AfNEusRc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-s5AfNEusRc .inner-container {
    width: 100% !important;
  }
}
.cid-rSMnA8hwHc {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rSMnA8hwHc .content {
    text-align: center;
  }
  .cid-rSMnA8hwHc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rSMnA8hwHc .img-logo img {
  height: 6rem;
}
.cid-rSMnA8hwHc .form-group,
.cid-rSMnA8hwHc .input-group-btn {
  padding: 0;
}
.cid-rSMnA8hwHc .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rSMnA8hwHc .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-rSMnA8hwHc .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rSMnA8hwHc .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rSMnA8hwHc .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rSMnA8hwHc .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rSMnA8hwHc .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rSMnA8hwHc .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-rSMnA8hwHc .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rSMnA8hwHc .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rSMnA8hwHc .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rSMnA8hwHc .foot-logo {
    text-align: center !important;
  }
  .cid-rSMnA8hwHc .foot-title {
    text-align: center !important;
  }
  .cid-rSMnA8hwHc .mbr-text {
    text-align: center !important;
  }
  .cid-rSMnA8hwHc .form-group {
    margin: 0;
  }
}
.cid-rSMnA8hwHc .foot-title {
  color: #f7ed4a;
}
.cid-rSMnA8hwHc .foot-logo {
  color: #ffffff;
}
.cid-rVpvpGWviE .navbar {
  padding: .5rem 0;
  background: #223558;
  transition: none;
  min-height: 77px;
}
.cid-rVpvpGWviE .navbar-dropdown.bg-color.transparent.opened {
  background: #223558;
}
.cid-rVpvpGWviE a {
  font-style: normal;
}
.cid-rVpvpGWviE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rVpvpGWviE .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rVpvpGWviE .nav-item:focus,
.cid-rVpvpGWviE .nav-link:focus {
  outline: none;
}
.cid-rVpvpGWviE .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rVpvpGWviE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rVpvpGWviE .menu-logo {
  margin-right: auto;
}
.cid-rVpvpGWviE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rVpvpGWviE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rVpvpGWviE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rVpvpGWviE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rVpvpGWviE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rVpvpGWviE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rVpvpGWviE .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rVpvpGWviE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rVpvpGWviE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rVpvpGWviE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rVpvpGWviE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rVpvpGWviE .dropdown .dropdown-menu {
  background: #223558;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rVpvpGWviE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rVpvpGWviE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rVpvpGWviE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rVpvpGWviE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rVpvpGWviE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rVpvpGWviE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rVpvpGWviE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rVpvpGWviE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rVpvpGWviE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rVpvpGWviE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rVpvpGWviE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rVpvpGWviE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rVpvpGWviE button.navbar-toggler:focus {
  outline: none;
}
.cid-rVpvpGWviE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rVpvpGWviE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rVpvpGWviE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rVpvpGWviE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rVpvpGWviE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rVpvpGWviE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rVpvpGWviE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rVpvpGWviE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rVpvpGWviE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rVpvpGWviE .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rVpvpGWviE .collapsed .btn {
  display: -webkit-flex;
}
.cid-rVpvpGWviE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rVpvpGWviE .collapsed .navbar-collapse.collapsing,
.cid-rVpvpGWviE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rVpvpGWviE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rVpvpGWviE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rVpvpGWviE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rVpvpGWviE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rVpvpGWviE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rVpvpGWviE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rVpvpGWviE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rVpvpGWviE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-rVpvpGWviE .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-rVpvpGWviE .collapsed button.navbar-toggler {
  display: block;
}
.cid-rVpvpGWviE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rVpvpGWviE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rVpvpGWviE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rVpvpGWviE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rVpvpGWviE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rVpvpGWviE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-rVpvpGWviE .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rVpvpGWviE img {
    height: 3.8rem !important;
  }
  .cid-rVpvpGWviE .btn {
    display: -webkit-flex;
  }
  .cid-rVpvpGWviE button.navbar-toggler {
    display: block;
  }
  .cid-rVpvpGWviE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rVpvpGWviE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rVpvpGWviE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rVpvpGWviE .navbar-collapse.collapsing,
  .cid-rVpvpGWviE .navbar-collapse.show {
    display: block !important;
  }
  .cid-rVpvpGWviE .navbar-collapse.collapsing .navbar-nav,
  .cid-rVpvpGWviE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rVpvpGWviE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rVpvpGWviE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rVpvpGWviE .navbar-collapse.collapsing .navbar-buttons,
  .cid-rVpvpGWviE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rVpvpGWviE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rVpvpGWviE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rVpvpGWviE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rVpvpGWviE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rVpvpGWviE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rVpvpGWviE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rVpvpGWviE .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rVpvpGWviE .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rVpvpGWviE .nav-link:hover,
.cid-rVpvpGWviE .dropdown-item:hover {
  color: #f7ed4a !important;
}
#custom-html-1k9 {
  /* Type valid CSS here */
}
#custom-html-1k9 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1k9 p {
  font-size: 60px;
  color: #777;
}
.cid-rSRsx1pdfJ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rSRsx1pdfJ .content {
    text-align: center;
  }
  .cid-rSRsx1pdfJ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rSRsx1pdfJ .img-logo img {
  height: 6rem;
}
.cid-rSRsx1pdfJ .form-group,
.cid-rSRsx1pdfJ .input-group-btn {
  padding: 0;
}
.cid-rSRsx1pdfJ .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rSRsx1pdfJ .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-rSRsx1pdfJ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rSRsx1pdfJ .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rSRsx1pdfJ .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rSRsx1pdfJ .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rSRsx1pdfJ .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rSRsx1pdfJ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-rSRsx1pdfJ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rSRsx1pdfJ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rSRsx1pdfJ .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rSRsx1pdfJ .foot-logo {
    text-align: center !important;
  }
  .cid-rSRsx1pdfJ .foot-title {
    text-align: center !important;
  }
  .cid-rSRsx1pdfJ .mbr-text {
    text-align: center !important;
  }
  .cid-rSRsx1pdfJ .form-group {
    margin: 0;
  }
}
.cid-rUWySl8XSR .navbar {
  padding: .5rem 0;
  background: #223558;
  transition: none;
  min-height: 77px;
}
.cid-rUWySl8XSR .navbar-dropdown.bg-color.transparent.opened {
  background: #223558;
}
.cid-rUWySl8XSR a {
  font-style: normal;
}
.cid-rUWySl8XSR .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rUWySl8XSR .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rUWySl8XSR .nav-item:focus,
.cid-rUWySl8XSR .nav-link:focus {
  outline: none;
}
.cid-rUWySl8XSR .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rUWySl8XSR .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rUWySl8XSR .menu-logo {
  margin-right: auto;
}
.cid-rUWySl8XSR .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rUWySl8XSR .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rUWySl8XSR .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rUWySl8XSR .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rUWySl8XSR .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rUWySl8XSR .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rUWySl8XSR .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rUWySl8XSR .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rUWySl8XSR .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rUWySl8XSR .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rUWySl8XSR .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rUWySl8XSR .dropdown .dropdown-menu {
  background: #223558;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rUWySl8XSR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rUWySl8XSR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rUWySl8XSR .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rUWySl8XSR .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rUWySl8XSR .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rUWySl8XSR .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rUWySl8XSR .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rUWySl8XSR .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rUWySl8XSR .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rUWySl8XSR .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rUWySl8XSR .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rUWySl8XSR button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rUWySl8XSR button.navbar-toggler:focus {
  outline: none;
}
.cid-rUWySl8XSR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rUWySl8XSR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rUWySl8XSR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rUWySl8XSR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rUWySl8XSR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rUWySl8XSR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUWySl8XSR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rUWySl8XSR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rUWySl8XSR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rUWySl8XSR .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rUWySl8XSR .collapsed .btn {
  display: -webkit-flex;
}
.cid-rUWySl8XSR .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rUWySl8XSR .collapsed .navbar-collapse.collapsing,
.cid-rUWySl8XSR .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rUWySl8XSR .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rUWySl8XSR .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rUWySl8XSR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rUWySl8XSR .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rUWySl8XSR .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rUWySl8XSR .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rUWySl8XSR .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rUWySl8XSR .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-rUWySl8XSR .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-rUWySl8XSR .collapsed button.navbar-toggler {
  display: block;
}
.cid-rUWySl8XSR .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rUWySl8XSR .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rUWySl8XSR .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rUWySl8XSR .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rUWySl8XSR .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rUWySl8XSR .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-rUWySl8XSR .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rUWySl8XSR img {
    height: 3.8rem !important;
  }
  .cid-rUWySl8XSR .btn {
    display: -webkit-flex;
  }
  .cid-rUWySl8XSR button.navbar-toggler {
    display: block;
  }
  .cid-rUWySl8XSR .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rUWySl8XSR .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rUWySl8XSR .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rUWySl8XSR .navbar-collapse.collapsing,
  .cid-rUWySl8XSR .navbar-collapse.show {
    display: block !important;
  }
  .cid-rUWySl8XSR .navbar-collapse.collapsing .navbar-nav,
  .cid-rUWySl8XSR .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rUWySl8XSR .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rUWySl8XSR .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rUWySl8XSR .navbar-collapse.collapsing .navbar-buttons,
  .cid-rUWySl8XSR .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rUWySl8XSR .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rUWySl8XSR .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rUWySl8XSR .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rUWySl8XSR .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rUWySl8XSR .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rUWySl8XSR .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rUWySl8XSR .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rUWySl8XSR .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rUWySl8XSR .nav-link:hover,
.cid-rUWySl8XSR .dropdown-item:hover {
  color: #f7ed4a !important;
}
.cid-rTqVPDUJ41 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rTqVPDUJ41 .mbr-section-subtitle {
  color: #767676;
}
.cid-rTqW8GkIMF {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rTqW8GkIMF .mbr-text,
.cid-rTqW8GkIMF blockquote {
  color: #767676;
}
.cid-rTr5yvFSTI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #2e2e2e;
}
@media (max-width: 767px) {
  .cid-rTr5yvFSTI .content {
    text-align: center;
  }
  .cid-rTr5yvFSTI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rTr5yvFSTI .img-logo img {
  height: 6rem;
}
.cid-rTr5yvFSTI .form-group,
.cid-rTr5yvFSTI .input-group-btn {
  padding: 0;
}
.cid-rTr5yvFSTI .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rTr5yvFSTI .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-rTr5yvFSTI .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rTr5yvFSTI .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rTr5yvFSTI .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rTr5yvFSTI .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rTr5yvFSTI .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rTr5yvFSTI .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-rTr5yvFSTI .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rTr5yvFSTI .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rTr5yvFSTI .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rTr5yvFSTI .foot-logo {
    text-align: center !important;
  }
  .cid-rTr5yvFSTI .foot-title {
    text-align: center !important;
  }
  .cid-rTr5yvFSTI .mbr-text {
    text-align: center !important;
  }
  .cid-rTr5yvFSTI .form-group {
    margin: 0;
  }
}
.cid-rTr5yvFSTI .foot-title {
  color: #f7ed4a;
}
.cid-rXRVM0dN6A {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #223558;
}
.cid-rXRVM0dN6A P {
  color: #767676;
}
.cid-rXRVM0dN6A H1 {
  color: #ffffff;
}
.cid-rXRVM0dN6A .mbr-text,
.cid-rXRVM0dN6A .mbr-section-btn {
  color: #f7ed4a;
}
.cid-snSWGiOTbR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snSWGiOTbR .mbr-text,
.cid-snSWGiOTbR blockquote {
  color: #767676;
}
.cid-snSWGiOTbR .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-rXSjw2xQk7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rXRVM0BJWj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s3BN3WJefl {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-s3BN3WJefl P {
  color: #767676;
}
.cid-s3BTC5lD7F {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s3BTC5lD7F .mbr-text,
.cid-s3BTC5lD7F blockquote {
  color: #767676;
}
.cid-rXRVM39Gj0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #223558;
}
.cid-rXRVM39Gj0 P {
  color: #767676;
}
.cid-rXRVM39Gj0 H1 {
  color: #ffffff;
}
.cid-snOicFg64w {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snOicFg64w h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snOicFg64w p {
  color: #767676;
  text-align: left;
}
.cid-snOicFg64w .card-wrapper {
  height: 100%;
}
.cid-snOicFg64w .container-fluid {
  max-width: 1600px;
}
.cid-snOicFg64w .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snOicFg64w img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snOicFg64w .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snOicFg64w .card:hover img {
  filter: blur(3px);
}
.cid-snOicFg64w .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snOicFg64w .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snOicFg64w .mbr-iconfont {
    opacity: 1;
  }
  .cid-snOicFg64w img {
    filter: blur(3px);
  }
}
.cid-snOicFg64w .card-title {
  color: #dd1b1b;
}
.cid-snOiek2A0u {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snOiek2A0u h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snOiek2A0u p {
  color: #767676;
  text-align: left;
}
.cid-snOiek2A0u .card-wrapper {
  height: 100%;
}
.cid-snOiek2A0u .container-fluid {
  max-width: 1600px;
}
.cid-snOiek2A0u .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snOiek2A0u img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snOiek2A0u .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snOiek2A0u .card:hover img {
  filter: blur(3px);
}
.cid-snOiek2A0u .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snOiek2A0u .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snOiek2A0u .mbr-iconfont {
    opacity: 1;
  }
  .cid-snOiek2A0u img {
    filter: blur(3px);
  }
}
.cid-snOiek2A0u .card-title {
  color: #dd1b1b;
}
.cid-snOifdWADQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snOifdWADQ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snOifdWADQ p {
  color: #767676;
  text-align: left;
}
.cid-snOifdWADQ .card-wrapper {
  height: 100%;
}
.cid-snOifdWADQ .container-fluid {
  max-width: 1600px;
}
.cid-snOifdWADQ .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snOifdWADQ img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snOifdWADQ .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snOifdWADQ .card:hover img {
  filter: blur(3px);
}
.cid-snOifdWADQ .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snOifdWADQ .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snOifdWADQ .mbr-iconfont {
    opacity: 1;
  }
  .cid-snOifdWADQ img {
    filter: blur(3px);
  }
}
.cid-snOifdWADQ .card-title {
  color: #dd1b1b;
}
.cid-snOifYS4Bm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snOifYS4Bm h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snOifYS4Bm p {
  color: #767676;
  text-align: left;
}
.cid-snOifYS4Bm .card-wrapper {
  height: 100%;
}
.cid-snOifYS4Bm .container-fluid {
  max-width: 1600px;
}
.cid-snOifYS4Bm .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snOifYS4Bm img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snOifYS4Bm .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snOifYS4Bm .card:hover img {
  filter: blur(3px);
}
.cid-snOifYS4Bm .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snOifYS4Bm .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snOifYS4Bm .mbr-iconfont {
    opacity: 1;
  }
  .cid-snOifYS4Bm img {
    filter: blur(3px);
  }
}
.cid-snOifYS4Bm .card-title {
  color: #dd1b1b;
}
.cid-snOih176H3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snOih176H3 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snOih176H3 p {
  color: #767676;
  text-align: left;
}
.cid-snOih176H3 .card-wrapper {
  height: 100%;
}
.cid-snOih176H3 .container-fluid {
  max-width: 1600px;
}
.cid-snOih176H3 .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snOih176H3 img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snOih176H3 .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snOih176H3 .card:hover img {
  filter: blur(3px);
}
.cid-snOih176H3 .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snOih176H3 .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snOih176H3 .mbr-iconfont {
    opacity: 1;
  }
  .cid-snOih176H3 img {
    filter: blur(3px);
  }
}
.cid-snOih176H3 .card-title {
  color: #dd1b1b;
}
.cid-snOii10la6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snOii10la6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snOii10la6 p {
  color: #767676;
  text-align: left;
}
.cid-snOii10la6 .card-wrapper {
  height: 100%;
}
.cid-snOii10la6 .container-fluid {
  max-width: 1600px;
}
.cid-snOii10la6 .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snOii10la6 img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snOii10la6 .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snOii10la6 .card:hover img {
  filter: blur(3px);
}
.cid-snOii10la6 .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snOii10la6 .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snOii10la6 .mbr-iconfont {
    opacity: 1;
  }
  .cid-snOii10la6 img {
    filter: blur(3px);
  }
}
.cid-snOii10la6 .card-title {
  color: #dd1b1b;
}
.cid-s9PuDtVvfb {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s9PuDtVvfb h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-s9PuDtVvfb p {
  color: #767676;
  text-align: left;
}
.cid-s9PuDtVvfb .card-wrapper {
  height: 100%;
}
.cid-s9PuDtVvfb .container-fluid {
  max-width: 1600px;
}
.cid-s9PuDtVvfb .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-s9PuDtVvfb img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-s9PuDtVvfb .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-s9PuDtVvfb .card:hover img {
  filter: blur(3px);
}
.cid-s9PuDtVvfb .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-s9PuDtVvfb .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-s9PuDtVvfb .mbr-iconfont {
    opacity: 1;
  }
  .cid-s9PuDtVvfb img {
    filter: blur(3px);
  }
}
.cid-s9PuDtVvfb .card-title {
  color: #dd1b1b;
}
.cid-s8veUPoWwi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s8veUPoWwi h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-s8veUPoWwi p {
  color: #767676;
  text-align: left;
}
.cid-s8veUPoWwi .card-wrapper {
  height: 100%;
}
.cid-s8veUPoWwi .container-fluid {
  max-width: 1600px;
}
.cid-s8veUPoWwi .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-s8veUPoWwi img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-s8veUPoWwi .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-s8veUPoWwi .card:hover img {
  filter: blur(3px);
}
.cid-s8veUPoWwi .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-s8veUPoWwi .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-s8veUPoWwi .mbr-iconfont {
    opacity: 1;
  }
  .cid-s8veUPoWwi img {
    filter: blur(3px);
  }
}
.cid-s8veUPoWwi .card-title {
  color: #dd1b1b;
}
.cid-s1OdLhDcuv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rXRVM7vFmn {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #223558;
}
@media (max-width: 767px) {
  .cid-rXRVM7vFmn .content {
    text-align: center;
  }
  .cid-rXRVM7vFmn .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rXRVM7vFmn .img-logo img {
  height: 6rem;
}
.cid-rXRVM7vFmn .form-group,
.cid-rXRVM7vFmn .input-group-btn {
  padding: 0;
}
.cid-rXRVM7vFmn .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rXRVM7vFmn .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-rXRVM7vFmn .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rXRVM7vFmn .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rXRVM7vFmn .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rXRVM7vFmn .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rXRVM7vFmn .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rXRVM7vFmn .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-rXRVM7vFmn .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rXRVM7vFmn .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rXRVM7vFmn .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rXRVM7vFmn .foot-logo {
    text-align: center !important;
  }
  .cid-rXRVM7vFmn .foot-title {
    text-align: center !important;
  }
  .cid-rXRVM7vFmn .mbr-text {
    text-align: center !important;
  }
  .cid-rXRVM7vFmn .form-group {
    margin: 0;
  }
}
.cid-rXRVM7vFmn .mbr-links-column {
  color: #149dcc;
}
.cid-rXRVM7vFmn .foot-title {
  color: #f7ed4a;
}
.cid-s3BED6lIqZ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #1b2e50;
}
.cid-s3BED6lIqZ P {
  color: #767676;
}
.cid-s3BED6lIqZ H1 {
  color: #ffffff;
}
.cid-s3BED6lIqZ .mbr-text,
.cid-s3BED6lIqZ .mbr-section-btn {
  color: #f7ed4a;
}
.cid-snOfHx9OEZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snOfHx9OEZ .mbr-text,
.cid-snOfHx9OEZ blockquote {
  color: #767676;
}
.cid-snOfHx9OEZ .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-snOfPbFexF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s3BED6Gmtc {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-snOgvfN2xe {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-snOgvfN2xe P {
  color: #767676;
}
.cid-s3BED6Ycpq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #223558;
}
.cid-s3BED6Ycpq P {
  color: #767676;
}
.cid-s3BED6Ycpq H1 {
  color: #ffffff;
}
.cid-snOh5dejaB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snOh5dejaB h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snOh5dejaB p {
  color: #767676;
  text-align: left;
}
.cid-snOh5dejaB .card-wrapper {
  height: 100%;
}
.cid-snOh5dejaB .container-fluid {
  max-width: 1600px;
}
.cid-snOh5dejaB .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snOh5dejaB img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snOh5dejaB .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snOh5dejaB .card:hover img {
  filter: blur(3px);
}
.cid-snOh5dejaB .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snOh5dejaB .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snOh5dejaB .mbr-iconfont {
    opacity: 1;
  }
  .cid-snOh5dejaB img {
    filter: blur(3px);
  }
}
.cid-snOh5dejaB .card-title {
  color: #dd1b1b;
}
.cid-snOh6ZaTeS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snOh6ZaTeS h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snOh6ZaTeS p {
  color: #767676;
  text-align: left;
}
.cid-snOh6ZaTeS .card-wrapper {
  height: 100%;
}
.cid-snOh6ZaTeS .container-fluid {
  max-width: 1600px;
}
.cid-snOh6ZaTeS .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snOh6ZaTeS img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snOh6ZaTeS .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snOh6ZaTeS .card:hover img {
  filter: blur(3px);
}
.cid-snOh6ZaTeS .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snOh6ZaTeS .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snOh6ZaTeS .mbr-iconfont {
    opacity: 1;
  }
  .cid-snOh6ZaTeS img {
    filter: blur(3px);
  }
}
.cid-snOh6ZaTeS .card-title {
  color: #dd1b1b;
}
.cid-snOhctVRxS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snOhctVRxS h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snOhctVRxS p {
  color: #767676;
  text-align: left;
}
.cid-snOhctVRxS .card-wrapper {
  height: 100%;
}
.cid-snOhctVRxS .container-fluid {
  max-width: 1600px;
}
.cid-snOhctVRxS .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snOhctVRxS img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snOhctVRxS .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snOhctVRxS .card:hover img {
  filter: blur(3px);
}
.cid-snOhctVRxS .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snOhctVRxS .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snOhctVRxS .mbr-iconfont {
    opacity: 1;
  }
  .cid-snOhctVRxS img {
    filter: blur(3px);
  }
}
.cid-snOhctVRxS .card-title {
  color: #dd1b1b;
}
.cid-snOhiy5hsm {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snOhiy5hsm h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snOhiy5hsm p {
  color: #767676;
  text-align: left;
}
.cid-snOhiy5hsm .card-wrapper {
  height: 100%;
}
.cid-snOhiy5hsm .container-fluid {
  max-width: 1600px;
}
.cid-snOhiy5hsm .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snOhiy5hsm img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snOhiy5hsm .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snOhiy5hsm .card:hover img {
  filter: blur(3px);
}
.cid-snOhiy5hsm .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snOhiy5hsm .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snOhiy5hsm .mbr-iconfont {
    opacity: 1;
  }
  .cid-snOhiy5hsm img {
    filter: blur(3px);
  }
}
.cid-snOhiy5hsm .card-title {
  color: #dd1b1b;
}
.cid-snOhkW0BNg {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snOhkW0BNg h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snOhkW0BNg p {
  color: #767676;
  text-align: left;
}
.cid-snOhkW0BNg .card-wrapper {
  height: 100%;
}
.cid-snOhkW0BNg .container-fluid {
  max-width: 1600px;
}
.cid-snOhkW0BNg .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snOhkW0BNg img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snOhkW0BNg .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snOhkW0BNg .card:hover img {
  filter: blur(3px);
}
.cid-snOhkW0BNg .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snOhkW0BNg .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snOhkW0BNg .mbr-iconfont {
    opacity: 1;
  }
  .cid-snOhkW0BNg img {
    filter: blur(3px);
  }
}
.cid-snOhkW0BNg .card-title {
  color: #dd1b1b;
}
.cid-snOhnS6x9L {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snOhnS6x9L h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snOhnS6x9L p {
  color: #767676;
  text-align: left;
}
.cid-snOhnS6x9L .card-wrapper {
  height: 100%;
}
.cid-snOhnS6x9L .container-fluid {
  max-width: 1600px;
}
.cid-snOhnS6x9L .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snOhnS6x9L img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snOhnS6x9L .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snOhnS6x9L .card:hover img {
  filter: blur(3px);
}
.cid-snOhnS6x9L .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snOhnS6x9L .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snOhnS6x9L .mbr-iconfont {
    opacity: 1;
  }
  .cid-snOhnS6x9L img {
    filter: blur(3px);
  }
}
.cid-snOhnS6x9L .card-title {
  color: #dd1b1b;
}
.cid-s9PuJRLxGz {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s9PuJRLxGz h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-s9PuJRLxGz p {
  color: #767676;
  text-align: left;
}
.cid-s9PuJRLxGz .card-wrapper {
  height: 100%;
}
.cid-s9PuJRLxGz .container-fluid {
  max-width: 1600px;
}
.cid-s9PuJRLxGz .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-s9PuJRLxGz img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-s9PuJRLxGz .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-s9PuJRLxGz .card:hover img {
  filter: blur(3px);
}
.cid-s9PuJRLxGz .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-s9PuJRLxGz .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-s9PuJRLxGz .mbr-iconfont {
    opacity: 1;
  }
  .cid-s9PuJRLxGz img {
    filter: blur(3px);
  }
}
.cid-s8vf8CxpVZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-s8vf8CxpVZ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-s8vf8CxpVZ p {
  color: #767676;
  text-align: left;
}
.cid-s8vf8CxpVZ .card-wrapper {
  height: 100%;
}
.cid-s8vf8CxpVZ .container-fluid {
  max-width: 1600px;
}
.cid-s8vf8CxpVZ .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-s8vf8CxpVZ img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-s8vf8CxpVZ .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-s8vf8CxpVZ .card:hover img {
  filter: blur(3px);
}
.cid-s8vf8CxpVZ .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-s8vf8CxpVZ .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-s8vf8CxpVZ .mbr-iconfont {
    opacity: 1;
  }
  .cid-s8vf8CxpVZ img {
    filter: blur(3px);
  }
}
.cid-snOgb7VNFY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-s3BEDbxvCc {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #223558;
}
@media (max-width: 767px) {
  .cid-s3BEDbxvCc .content {
    text-align: center;
  }
  .cid-s3BEDbxvCc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-s3BEDbxvCc .img-logo img {
  height: 6rem;
}
.cid-s3BEDbxvCc .form-group,
.cid-s3BEDbxvCc .input-group-btn {
  padding: 0;
}
.cid-s3BEDbxvCc .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-s3BEDbxvCc .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-s3BEDbxvCc .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s3BEDbxvCc .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-s3BEDbxvCc .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s3BEDbxvCc .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-s3BEDbxvCc .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s3BEDbxvCc .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-s3BEDbxvCc .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-s3BEDbxvCc .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-s3BEDbxvCc .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-s3BEDbxvCc .foot-logo {
    text-align: center !important;
  }
  .cid-s3BEDbxvCc .foot-title {
    text-align: center !important;
  }
  .cid-s3BEDbxvCc .mbr-text {
    text-align: center !important;
  }
  .cid-s3BEDbxvCc .form-group {
    margin: 0;
  }
}
.cid-s3BEDbxvCc .mbr-links-column {
  color: #149dcc;
}
.cid-s3BEDbxvCc .foot-title {
  color: #f7ed4a;
}
.cid-rQLWmo9xJt .navbar {
  padding: .5rem 0;
  background: #223558;
  transition: none;
  min-height: 77px;
}
.cid-rQLWmo9xJt .navbar-dropdown.bg-color.transparent.opened {
  background: #223558;
}
.cid-rQLWmo9xJt a {
  font-style: normal;
}
.cid-rQLWmo9xJt .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rQLWmo9xJt .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rQLWmo9xJt .nav-item:focus,
.cid-rQLWmo9xJt .nav-link:focus {
  outline: none;
}
.cid-rQLWmo9xJt .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rQLWmo9xJt .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rQLWmo9xJt .menu-logo {
  margin-right: auto;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rQLWmo9xJt .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rQLWmo9xJt .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rQLWmo9xJt .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rQLWmo9xJt .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rQLWmo9xJt .dropdown .dropdown-menu {
  background: #223558;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rQLWmo9xJt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rQLWmo9xJt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rQLWmo9xJt .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rQLWmo9xJt .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rQLWmo9xJt .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rQLWmo9xJt .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rQLWmo9xJt .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rQLWmo9xJt .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rQLWmo9xJt .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rQLWmo9xJt .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rQLWmo9xJt .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rQLWmo9xJt button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rQLWmo9xJt button.navbar-toggler:focus {
  outline: none;
}
.cid-rQLWmo9xJt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rQLWmo9xJt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rQLWmo9xJt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rQLWmo9xJt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rQLWmo9xJt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rQLWmo9xJt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQLWmo9xJt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rQLWmo9xJt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rQLWmo9xJt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQLWmo9xJt .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rQLWmo9xJt .collapsed .btn {
  display: -webkit-flex;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse.collapsing,
.cid-rQLWmo9xJt .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rQLWmo9xJt .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rQLWmo9xJt .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rQLWmo9xJt .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rQLWmo9xJt .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-rQLWmo9xJt .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-rQLWmo9xJt .collapsed button.navbar-toggler {
  display: block;
}
.cid-rQLWmo9xJt .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rQLWmo9xJt .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rQLWmo9xJt .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rQLWmo9xJt .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rQLWmo9xJt .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rQLWmo9xJt .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-rQLWmo9xJt .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rQLWmo9xJt img {
    height: 3.8rem !important;
  }
  .cid-rQLWmo9xJt .btn {
    display: -webkit-flex;
  }
  .cid-rQLWmo9xJt button.navbar-toggler {
    display: block;
  }
  .cid-rQLWmo9xJt .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rQLWmo9xJt .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rQLWmo9xJt .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rQLWmo9xJt .navbar-collapse.collapsing,
  .cid-rQLWmo9xJt .navbar-collapse.show {
    display: block !important;
  }
  .cid-rQLWmo9xJt .navbar-collapse.collapsing .navbar-nav,
  .cid-rQLWmo9xJt .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rQLWmo9xJt .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rQLWmo9xJt .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rQLWmo9xJt .navbar-collapse.collapsing .navbar-buttons,
  .cid-rQLWmo9xJt .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rQLWmo9xJt .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rQLWmo9xJt .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rQLWmo9xJt .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rQLWmo9xJt .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rQLWmo9xJt .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rQLWmo9xJt .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rQLWmo9xJt .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rQLWmo9xJt .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rQLWmo9xJt .nav-link:hover,
.cid-rQLWmo9xJt .dropdown-item:hover {
  color: #f7ed4a !important;
}
.cid-s6g2BJ2aoS {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-s6g2BJ2aoS .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
#custom-html-1ip {
  /* Type valid CSS here */
}
#custom-html-1ip div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1ip p {
  font-size: 60px;
  color: #777;
}
.cid-snObuvFneG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #1b2e50;
}
.cid-snObuvFneG P {
  color: #767676;
}
.cid-snObuvFneG H1 {
  color: #ffffff;
}
.cid-snObuvFneG .mbr-text,
.cid-snObuvFneG .mbr-section-btn {
  color: #f7ed4a;
}
.cid-snObDXrrID {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snObDXrrID .mbr-text,
.cid-snObDXrrID blockquote {
  color: #767676;
}
.cid-snObDXrrID .mbr-text {
  text-align: center;
  color: #000000;
}
.cid-snObODvjlb {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snObPhZ5po {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-snObQIgG6D {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #223558;
}
.cid-snObQIgG6D P {
  color: #767676;
}
.cid-snObQIgG6D H1 {
  color: #ffffff;
}
.cid-snOcQt2muA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-snOcQt2muA h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snOcQt2muA p {
  color: #767676;
  text-align: left;
}
.cid-snOcQt2muA .card-wrapper {
  height: 100%;
}
.cid-snOcQt2muA .container-fluid {
  max-width: 1600px;
}
.cid-snOcQt2muA .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snOcQt2muA img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snOcQt2muA .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snOcQt2muA .card:hover img {
  filter: blur(3px);
}
.cid-snOcQt2muA .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snOcQt2muA .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snOcQt2muA .mbr-iconfont {
    opacity: 1;
  }
  .cid-snOcQt2muA img {
    filter: blur(3px);
  }
}
.cid-snOcRBsOe1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-snOcRBsOe1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snOcRBsOe1 p {
  color: #767676;
  text-align: left;
}
.cid-snOcRBsOe1 .card-wrapper {
  height: 100%;
}
.cid-snOcRBsOe1 .container-fluid {
  max-width: 1600px;
}
.cid-snOcRBsOe1 .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snOcRBsOe1 img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snOcRBsOe1 .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snOcRBsOe1 .card:hover img {
  filter: blur(3px);
}
.cid-snOcRBsOe1 .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snOcRBsOe1 .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snOcRBsOe1 .mbr-iconfont {
    opacity: 1;
  }
  .cid-snOcRBsOe1 img {
    filter: blur(3px);
  }
}
.cid-snOcSMernD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-snOcSMernD h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snOcSMernD p {
  color: #767676;
  text-align: left;
}
.cid-snOcSMernD .card-wrapper {
  height: 100%;
}
.cid-snOcSMernD .container-fluid {
  max-width: 1600px;
}
.cid-snOcSMernD .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snOcSMernD img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snOcSMernD .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snOcSMernD .card:hover img {
  filter: blur(3px);
}
.cid-snOcSMernD .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snOcSMernD .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snOcSMernD .mbr-iconfont {
    opacity: 1;
  }
  .cid-snOcSMernD img {
    filter: blur(3px);
  }
}
.cid-snOcUNj42t {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-snOcUNj42t h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snOcUNj42t p {
  color: #767676;
  text-align: left;
}
.cid-snOcUNj42t .card-wrapper {
  height: 100%;
}
.cid-snOcUNj42t .container-fluid {
  max-width: 1600px;
}
.cid-snOcUNj42t .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snOcUNj42t img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snOcUNj42t .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snOcUNj42t .card:hover img {
  filter: blur(3px);
}
.cid-snOcUNj42t .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snOcUNj42t .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snOcUNj42t .mbr-iconfont {
    opacity: 1;
  }
  .cid-snOcUNj42t img {
    filter: blur(3px);
  }
}
.cid-srFw7UvXuq {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #223558;
}
.cid-srFw7UvXuq .mbr-section-subtitle {
  color: #fff000;
}
.cid-srFw7UvXuq H2 {
  color: #ffffff;
}
.cid-sHGuw0e0iI {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sHGuw0e0iI h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sHGuw0e0iI p {
  color: #767676;
  text-align: left;
}
.cid-sHGuw0e0iI .card-wrapper {
  height: 100%;
}
.cid-sHGuw0e0iI .container-fluid {
  max-width: 1600px;
}
.cid-sHGuw0e0iI .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sHGuw0e0iI img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-sHGuw0e0iI .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #dd1b1b;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sHGuw0e0iI .card:hover img {
  filter: blur(3px);
}
.cid-sHGuw0e0iI .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-sHGuw0e0iI .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sHGuw0e0iI .mbr-iconfont {
    opacity: 1;
  }
  .cid-sHGuw0e0iI img {
    filter: blur(3px);
  }
}
.cid-sHGuw0e0iI P {
  color: #232323;
}
.cid-sFHvoZuyx8 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sFHvoZuyx8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sFHvoZuyx8 p {
  color: #767676;
  text-align: left;
}
.cid-sFHvoZuyx8 .card-wrapper {
  height: 100%;
}
.cid-sFHvoZuyx8 .container-fluid {
  max-width: 1600px;
}
.cid-sFHvoZuyx8 .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sFHvoZuyx8 img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-sFHvoZuyx8 .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #dd1b1b;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sFHvoZuyx8 .card:hover img {
  filter: blur(3px);
}
.cid-sFHvoZuyx8 .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-sFHvoZuyx8 .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sFHvoZuyx8 .mbr-iconfont {
    opacity: 1;
  }
  .cid-sFHvoZuyx8 img {
    filter: blur(3px);
  }
}
.cid-sFHvoZuyx8 P {
  color: #232323;
}
.cid-sB0uB2U4Hs {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sB0uB2U4Hs h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sB0uB2U4Hs p {
  color: #767676;
  text-align: left;
}
.cid-sB0uB2U4Hs .card-wrapper {
  height: 100%;
}
.cid-sB0uB2U4Hs .container-fluid {
  max-width: 1600px;
}
.cid-sB0uB2U4Hs .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sB0uB2U4Hs img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-sB0uB2U4Hs .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #dd1b1b;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sB0uB2U4Hs .card:hover img {
  filter: blur(3px);
}
.cid-sB0uB2U4Hs .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-sB0uB2U4Hs .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sB0uB2U4Hs .mbr-iconfont {
    opacity: 1;
  }
  .cid-sB0uB2U4Hs img {
    filter: blur(3px);
  }
}
.cid-sB0uB2U4Hs P {
  color: #232323;
}
.cid-sz7rhXlUet {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sz7rhXlUet h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sz7rhXlUet p {
  color: #767676;
  text-align: left;
}
.cid-sz7rhXlUet .card-wrapper {
  height: 100%;
}
.cid-sz7rhXlUet .container-fluid {
  max-width: 1600px;
}
.cid-sz7rhXlUet .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sz7rhXlUet img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-sz7rhXlUet .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #dd1b1b;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sz7rhXlUet .card:hover img {
  filter: blur(3px);
}
.cid-sz7rhXlUet .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-sz7rhXlUet .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sz7rhXlUet .mbr-iconfont {
    opacity: 1;
  }
  .cid-sz7rhXlUet img {
    filter: blur(3px);
  }
}
.cid-sz7rhXlUet P {
  color: #232323;
}
.cid-sxMj3F4Gw3 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sxMj3F4Gw3 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sxMj3F4Gw3 p {
  color: #767676;
  text-align: left;
}
.cid-sxMj3F4Gw3 .card-wrapper {
  height: 100%;
}
.cid-sxMj3F4Gw3 .container-fluid {
  max-width: 1600px;
}
.cid-sxMj3F4Gw3 .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-sxMj3F4Gw3 img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-sxMj3F4Gw3 .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #dd1b1b;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-sxMj3F4Gw3 .card:hover img {
  filter: blur(3px);
}
.cid-sxMj3F4Gw3 .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-sxMj3F4Gw3 .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-sxMj3F4Gw3 .mbr-iconfont {
    opacity: 1;
  }
  .cid-sxMj3F4Gw3 img {
    filter: blur(3px);
  }
}
.cid-sxMj3F4Gw3 P {
  color: #232323;
}
.cid-svPoGarlcn {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svPoGarlcn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-svPoGarlcn p {
  color: #767676;
  text-align: left;
}
.cid-svPoGarlcn .card-wrapper {
  height: 100%;
}
.cid-svPoGarlcn .container-fluid {
  max-width: 1600px;
}
.cid-svPoGarlcn .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-svPoGarlcn img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-svPoGarlcn .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #dd1b1b;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-svPoGarlcn .card:hover img {
  filter: blur(3px);
}
.cid-svPoGarlcn .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-svPoGarlcn .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-svPoGarlcn .mbr-iconfont {
    opacity: 1;
  }
  .cid-svPoGarlcn img {
    filter: blur(3px);
  }
}
.cid-svPoGarlcn P {
  color: #232323;
}
.cid-stOhjL29yW {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-stOhjL29yW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-stOhjL29yW p {
  color: #767676;
  text-align: left;
}
.cid-stOhjL29yW .card-wrapper {
  height: 100%;
}
.cid-stOhjL29yW .container-fluid {
  max-width: 1600px;
}
.cid-stOhjL29yW .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-stOhjL29yW img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-stOhjL29yW .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #dd1b1b;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-stOhjL29yW .card:hover img {
  filter: blur(3px);
}
.cid-stOhjL29yW .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-stOhjL29yW .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-stOhjL29yW .mbr-iconfont {
    opacity: 1;
  }
  .cid-stOhjL29yW img {
    filter: blur(3px);
  }
}
.cid-stOhjL29yW P {
  color: #232323;
}
.cid-srPSY4ymwW {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-srPSY4ymwW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-srPSY4ymwW p {
  color: #767676;
  text-align: left;
}
.cid-srPSY4ymwW .card-wrapper {
  height: 100%;
}
.cid-srPSY4ymwW .container-fluid {
  max-width: 1600px;
}
.cid-srPSY4ymwW .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-srPSY4ymwW img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-srPSY4ymwW .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #dd1b1b;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-srPSY4ymwW .card:hover img {
  filter: blur(3px);
}
.cid-srPSY4ymwW .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-srPSY4ymwW .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-srPSY4ymwW .mbr-iconfont {
    opacity: 1;
  }
  .cid-srPSY4ymwW img {
    filter: blur(3px);
  }
}
.cid-srPSY4ymwW P {
  color: #232323;
}
.cid-sva0fiALXt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sva0fiALXt .item {
  padding-bottom: 2rem;
}
.cid-sva0fiALXt .item-wrapper {
  height: 100%;
}
.cid-sva0fiALXt .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-sva0fiALXt .carousel-control,
.cid-sva0fiALXt .close {
  background: #1b1b1b;
}
.cid-sva0fiALXt .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-sva0fiALXt .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-sva0fiALXt .close {
  position: fixed;
  opacity: .5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  font-family: 'MobiriseIcons';
}
.cid-sva0fiALXt .close::before {
  content: '\e91a';
}
.cid-sva0fiALXt .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sva0fiALXt .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: .5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-sva0fiALXt .carousel-inner > .active {
  display: block;
}
.cid-sva0fiALXt .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sva0fiALXt .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sva0fiALXt .carousel-control .icon-next,
.cid-sva0fiALXt .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sva0fiALXt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-sva0fiALXt .carousel-control,
  .cid-sva0fiALXt .carousel-indicators,
  .cid-sva0fiALXt .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-sva0fiALXt .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-sva0fiALXt .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sva0fiALXt .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-sva0fiALXt .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-sva0fiALXt .carousel-indicators {
    display: none;
  }
}
.cid-sva0fiALXt .carousel-indicators .active,
.cid-sva0fiALXt .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: .5;
  border: 4px solid #1b1b1b;
}
.cid-sva0fiALXt .carousel-indicators .active {
  background: #fff;
}
.cid-sva0fiALXt .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-sva0fiALXt .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-sva0fiALXt .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-sva0fiALXt .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-sva0fiALXt .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-sva0fiALXt .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(98.25vh);
  height: fit-content;
}
.cid-sva0fiALXt .carousel {
  width: 100%;
}
.cid-sva0fiALXt .modal-backdrop.in {
  opacity: .8;
}
.cid-sva0fiALXt .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-sva0fiALXt .modal.fade .modal-dialog,
.cid-sva0fiALXt .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-snOddwJwYH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-snOdet1n0G {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #223558;
}
@media (max-width: 767px) {
  .cid-snOdet1n0G .content {
    text-align: center;
  }
  .cid-snOdet1n0G .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-snOdet1n0G .img-logo img {
  height: 6rem;
}
.cid-snOdet1n0G .form-group,
.cid-snOdet1n0G .input-group-btn {
  padding: 0;
}
.cid-snOdet1n0G .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-snOdet1n0G .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-snOdet1n0G .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-snOdet1n0G .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-snOdet1n0G .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-snOdet1n0G .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-snOdet1n0G .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-snOdet1n0G .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-snOdet1n0G .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-snOdet1n0G .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-snOdet1n0G .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-snOdet1n0G .foot-logo {
    text-align: center !important;
  }
  .cid-snOdet1n0G .foot-title {
    text-align: center !important;
  }
  .cid-snOdet1n0G .mbr-text {
    text-align: center !important;
  }
  .cid-snOdet1n0G .form-group {
    margin: 0;
  }
}
.cid-snOdet1n0G .mbr-links-column {
  color: #ffffff;
}
.cid-snOdet1n0G .foot-title {
  color: #f7ed4a;
}
.cid-rQLWmo9xJt .navbar {
  padding: .5rem 0;
  background: #223558;
  transition: none;
  min-height: 77px;
}
.cid-rQLWmo9xJt .navbar-dropdown.bg-color.transparent.opened {
  background: #223558;
}
.cid-rQLWmo9xJt a {
  font-style: normal;
}
.cid-rQLWmo9xJt .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rQLWmo9xJt .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rQLWmo9xJt .nav-item:focus,
.cid-rQLWmo9xJt .nav-link:focus {
  outline: none;
}
.cid-rQLWmo9xJt .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rQLWmo9xJt .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rQLWmo9xJt .menu-logo {
  margin-right: auto;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rQLWmo9xJt .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rQLWmo9xJt .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rQLWmo9xJt .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rQLWmo9xJt .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rQLWmo9xJt .dropdown .dropdown-menu {
  background: #223558;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rQLWmo9xJt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rQLWmo9xJt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rQLWmo9xJt .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rQLWmo9xJt .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rQLWmo9xJt .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rQLWmo9xJt .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rQLWmo9xJt .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rQLWmo9xJt .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rQLWmo9xJt .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rQLWmo9xJt .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rQLWmo9xJt .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rQLWmo9xJt button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rQLWmo9xJt button.navbar-toggler:focus {
  outline: none;
}
.cid-rQLWmo9xJt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rQLWmo9xJt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rQLWmo9xJt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rQLWmo9xJt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rQLWmo9xJt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rQLWmo9xJt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQLWmo9xJt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rQLWmo9xJt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rQLWmo9xJt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQLWmo9xJt .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rQLWmo9xJt .collapsed .btn {
  display: -webkit-flex;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse.collapsing,
.cid-rQLWmo9xJt .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rQLWmo9xJt .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rQLWmo9xJt .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rQLWmo9xJt .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rQLWmo9xJt .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-rQLWmo9xJt .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-rQLWmo9xJt .collapsed button.navbar-toggler {
  display: block;
}
.cid-rQLWmo9xJt .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rQLWmo9xJt .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rQLWmo9xJt .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rQLWmo9xJt .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rQLWmo9xJt .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rQLWmo9xJt .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-rQLWmo9xJt .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rQLWmo9xJt img {
    height: 3.8rem !important;
  }
  .cid-rQLWmo9xJt .btn {
    display: -webkit-flex;
  }
  .cid-rQLWmo9xJt button.navbar-toggler {
    display: block;
  }
  .cid-rQLWmo9xJt .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rQLWmo9xJt .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rQLWmo9xJt .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rQLWmo9xJt .navbar-collapse.collapsing,
  .cid-rQLWmo9xJt .navbar-collapse.show {
    display: block !important;
  }
  .cid-rQLWmo9xJt .navbar-collapse.collapsing .navbar-nav,
  .cid-rQLWmo9xJt .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rQLWmo9xJt .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rQLWmo9xJt .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rQLWmo9xJt .navbar-collapse.collapsing .navbar-buttons,
  .cid-rQLWmo9xJt .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rQLWmo9xJt .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rQLWmo9xJt .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rQLWmo9xJt .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rQLWmo9xJt .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rQLWmo9xJt .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rQLWmo9xJt .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rQLWmo9xJt .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rQLWmo9xJt .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rQLWmo9xJt .nav-link:hover,
.cid-rQLWmo9xJt .dropdown-item:hover {
  color: #f7ed4a !important;
}
.cid-tzKgR6dIqs .container,
.cid-tzKgR6dIqs .container-fluid {
  padding: 0;
  width: 100% !important;
  max-width: 100% !important;
}
.cid-tzKgR6dIqs .video-wrapper iframe {
  width: 100%;
}
.cid-tzKgR6dIqs .app-video-wrapper:before {
  font-size: 16px;
  padding: 28px 28px 28px 30px;
  background-color: #FFFFFF;
  color: #4D2E12;
  line-height: 15px;
  text-shadow: none;
}
.cid-sL5pUVIvBo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sL5pUVIvBo P {
  color: #767676;
}
.cid-sL5pUVIvBo H1 {
  color: #f7ed4a;
}
.cid-tTbBMlOvhv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-tTbBMlOvhv .card-img {
  background-color: #fff;
}
.cid-tTbBMlOvhv .card-box {
  padding: 2rem;
  background-color: #4c4a4a;
}
.cid-tTbBMlOvhv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tTbBMlOvhv p {
  text-align: left;
}
.cid-tTbBMlOvhv .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tTbBMlOvhv .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tTbBMlOvhv .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-tTbBMlOvhv .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-tTbBMlOvhv .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-tWtSdvnL8I {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tWtSdvnL8I P {
  color: #767676;
}
.cid-tWtSdvnL8I H1 {
  color: #dd1b1b;
}
.cid-tWtSdvnL8I .mbr-text,
.cid-tWtSdvnL8I .mbr-section-btn {
  color: #ffffff;
}
.cid-tWtZbfBr6q {
  background-image: url("../../../assets/images/nes24220collage201-2000x1127.jpg");
}
.cid-tWtZbfBr6q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tWtZbfBr6q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tWtZbfBr6q .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-tWtZbfBr6q .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tWtZbfBr6q .container {
    padding: 0;
  }
}
.cid-tWtZbfBr6q .title-wrapper {
  padding: 0 16px;
}
.cid-tWtZbfBr6q .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tWtZbfBr6q .title-wrapper .mbr-text {
  margin: 25px 0 0 0;
}
.cid-tWtZbfBr6q .title-wrapper .mbr-section-btn {
  margin-top: 100px;
}
@media (max-width: 992px) {
  .cid-tWtZbfBr6q .title-wrapper .mbr-section-btn {
    margin-top: 40px;
  }
}
.cid-tWtZbfBr6q .mbr-section-title {
  color: #ffffff;
}
.cid-tWtZbfBr6q .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tWtZbfBr6q .mbr-section-title,
.cid-tWtZbfBr6q .mbr-section-btn {
  text-align: center;
}
.cid-uck4bYy633 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-uck4bYy633 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uck4bYy633 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uck4bYy633 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uck4bYy633 .mbr-section-title {
  color: #24262b;
}
.cid-uck4bYy633 .mbr-section-subtitle {
  color: #24262b;
}
.cid-uck4bYy633 .items-row {
  row-gap: 32px;
}
.cid-uck4bYy633 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uck4bYy633 .item-wrapper img {
  width: 100%;
  aspect-ratio: calc(8 / (1 * 4));
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uck4bYy633 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uck4bYy633 .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uck4bYy633 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uck4bYy633 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uck4bYy633 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uck4bYy633 .mbr-item-subtitle {
  color: #24262b;
}
.cid-uck4bYy633 .carousel-control,
.cid-uck4bYy633 .close {
  background: #1b1b1b;
}
.cid-uck4bYy633 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uck4bYy633 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uck4bYy633 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uck4bYy633 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uck4bYy633 .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-uck4bYy633 .close::before {
  content: '\e91a';
}
.cid-uck4bYy633 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uck4bYy633 .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-uck4bYy633 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uck4bYy633 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uck4bYy633 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uck4bYy633 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uck4bYy633 .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-uck4bYy633 .carousel-indicators li.active,
.cid-uck4bYy633 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uck4bYy633 .carousel-indicators li::after,
.cid-uck4bYy633 .carousel-indicators li::before {
  content: none;
}
.cid-uck4bYy633 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uck4bYy633 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uck4bYy633 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uck4bYy633 .carousel-indicators {
    display: none;
  }
}
.cid-uck4bYy633 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uck4bYy633 .carousel-inner > .active {
  display: block;
}
.cid-uck4bYy633 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uck4bYy633 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uck4bYy633 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uck4bYy633 .carousel-control,
  .cid-uck4bYy633 .carousel-indicators,
  .cid-uck4bYy633 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uck4bYy633 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uck4bYy633 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uck4bYy633 .carousel-indicators .active,
.cid-uck4bYy633 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uck4bYy633 .carousel-indicators .active {
  background: #fff;
}
.cid-uck4bYy633 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uck4bYy633 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uck4bYy633 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uck4bYy633 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uck4bYy633 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uck4bYy633 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uck4bYy633 .carousel {
  width: 100%;
}
.cid-uck4bYy633 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uck4bYy633 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uck4bYy633 .modal.fade .modal-dialog,
.cid-uck4bYy633 .modal.in .modal-dialog {
  transform: none;
}
.cid-uck4bYy633 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uck4bYy633 H6 {
  text-align: center;
}
.cid-tWtW1cqiy0 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uG0S4Sfrd5 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uG0S4Sfrd5 .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uG0S4Sfrd5 .image-block:hover img {
  transform: scale(1.1);
}
.cid-uG0S4Sfrd5 .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uG0S4Sfrd5 img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uG0S4Sfrd5 .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uG0S4Sfrd5 .wrap {
    opacity: 1 !important;
  }
  .cid-uG0S4Sfrd5 .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uG0S4Sfrd5 .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uG0S4Sfrd5 P {
  color: #bbbbbb;
}
.cid-uG0S4Sfrd5 H4 {
  color: #dd1b1b;
}
.cid-uXPQHIsJg0 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uXPQHIsJg0 .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uXPQHIsJg0 .image-block:hover img {
  transform: scale(1.1);
}
.cid-uXPQHIsJg0 .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uXPQHIsJg0 img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uXPQHIsJg0 .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uXPQHIsJg0 .wrap {
    opacity: 1 !important;
  }
  .cid-uXPQHIsJg0 .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uXPQHIsJg0 .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uXPQHIsJg0 P {
  color: #bbbbbb;
}
.cid-uXPQHIsJg0 H4 {
  color: #dd1b1b;
}
.cid-uVSEtJVK8D {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uVSEtJVK8D .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uVSEtJVK8D .image-block:hover img {
  transform: scale(1.1);
}
.cid-uVSEtJVK8D .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uVSEtJVK8D img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uVSEtJVK8D .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uVSEtJVK8D .wrap {
    opacity: 1 !important;
  }
  .cid-uVSEtJVK8D .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uVSEtJVK8D .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uVSEtJVK8D P {
  color: #bbbbbb;
}
.cid-uVSEtJVK8D H4 {
  color: #dd1b1b;
}
.cid-uTTnPsa5IR {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uTTnPsa5IR .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uTTnPsa5IR .image-block:hover img {
  transform: scale(1.1);
}
.cid-uTTnPsa5IR .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uTTnPsa5IR img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uTTnPsa5IR .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uTTnPsa5IR .wrap {
    opacity: 1 !important;
  }
  .cid-uTTnPsa5IR .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uTTnPsa5IR .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uTTnPsa5IR P {
  color: #bbbbbb;
}
.cid-uTTnPsa5IR H4 {
  color: #dd1b1b;
}
.cid-uRThM8YFIm {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uRThM8YFIm .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uRThM8YFIm .image-block:hover img {
  transform: scale(1.1);
}
.cid-uRThM8YFIm .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uRThM8YFIm img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uRThM8YFIm .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uRThM8YFIm .wrap {
    opacity: 1 !important;
  }
  .cid-uRThM8YFIm .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uRThM8YFIm .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uRThM8YFIm P {
  color: #bbbbbb;
}
.cid-uRThM8YFIm H4 {
  color: #dd1b1b;
}
.cid-uPV5UiJulc {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uPV5UiJulc .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uPV5UiJulc .image-block:hover img {
  transform: scale(1.1);
}
.cid-uPV5UiJulc .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uPV5UiJulc img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uPV5UiJulc .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uPV5UiJulc .wrap {
    opacity: 1 !important;
  }
  .cid-uPV5UiJulc .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uPV5UiJulc .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uPV5UiJulc P {
  color: #bbbbbb;
}
.cid-uPV5UiJulc H4 {
  color: #dd1b1b;
}
.cid-uNVQ18lt5D {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uNVQ18lt5D .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uNVQ18lt5D .image-block:hover img {
  transform: scale(1.1);
}
.cid-uNVQ18lt5D .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uNVQ18lt5D img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uNVQ18lt5D .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uNVQ18lt5D .wrap {
    opacity: 1 !important;
  }
  .cid-uNVQ18lt5D .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uNVQ18lt5D .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uNVQ18lt5D P {
  color: #bbbbbb;
}
.cid-uNVQ18lt5D H4 {
  color: #dd1b1b;
}
.cid-uLYvqJxzEE {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uLYvqJxzEE .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uLYvqJxzEE .image-block:hover img {
  transform: scale(1.1);
}
.cid-uLYvqJxzEE .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uLYvqJxzEE img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uLYvqJxzEE .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uLYvqJxzEE .wrap {
    opacity: 1 !important;
  }
  .cid-uLYvqJxzEE .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uLYvqJxzEE .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uLYvqJxzEE P {
  color: #bbbbbb;
}
.cid-uLYvqJxzEE H4 {
  color: #dd1b1b;
}
.cid-uJZeDxMHGl {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uJZeDxMHGl .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uJZeDxMHGl .image-block:hover img {
  transform: scale(1.1);
}
.cid-uJZeDxMHGl .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uJZeDxMHGl img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uJZeDxMHGl .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uJZeDxMHGl .wrap {
    opacity: 1 !important;
  }
  .cid-uJZeDxMHGl .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uJZeDxMHGl .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uJZeDxMHGl P {
  color: #bbbbbb;
}
.cid-uJZeDxMHGl H4 {
  color: #dd1b1b;
}
.cid-uI0Q0A9xKL {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uI0Q0A9xKL .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uI0Q0A9xKL .image-block:hover img {
  transform: scale(1.1);
}
.cid-uI0Q0A9xKL .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uI0Q0A9xKL img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uI0Q0A9xKL .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uI0Q0A9xKL .wrap {
    opacity: 1 !important;
  }
  .cid-uI0Q0A9xKL .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uI0Q0A9xKL .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uI0Q0A9xKL P {
  color: #bbbbbb;
}
.cid-uI0Q0A9xKL H4 {
  color: #dd1b1b;
}
.cid-uE3SCDWI98 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uE3SCDWI98 .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uE3SCDWI98 .image-block:hover img {
  transform: scale(1.1);
}
.cid-uE3SCDWI98 .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uE3SCDWI98 img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uE3SCDWI98 .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uE3SCDWI98 .wrap {
    opacity: 1 !important;
  }
  .cid-uE3SCDWI98 .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uE3SCDWI98 .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uE3SCDWI98 P {
  color: #bbbbbb;
}
.cid-uE3SCDWI98 H4 {
  color: #dd1b1b;
}
.cid-uC54NexuE5 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uC54NexuE5 .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uC54NexuE5 .image-block:hover img {
  transform: scale(1.1);
}
.cid-uC54NexuE5 .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uC54NexuE5 img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uC54NexuE5 .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uC54NexuE5 .wrap {
    opacity: 1 !important;
  }
  .cid-uC54NexuE5 .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uC54NexuE5 .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uC54NexuE5 P {
  color: #bbbbbb;
}
.cid-uC54NexuE5 H4 {
  color: #dd1b1b;
}
.cid-uA65JLFoS4 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uA65JLFoS4 .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uA65JLFoS4 .image-block:hover img {
  transform: scale(1.1);
}
.cid-uA65JLFoS4 .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uA65JLFoS4 img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uA65JLFoS4 .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uA65JLFoS4 .wrap {
    opacity: 1 !important;
  }
  .cid-uA65JLFoS4 .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uA65JLFoS4 .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uA65JLFoS4 P {
  color: #bbbbbb;
}
.cid-uA65JLFoS4 H4 {
  color: #dd1b1b;
}
.cid-uy6wSiuaQZ {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uy6wSiuaQZ .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uy6wSiuaQZ .image-block:hover img {
  transform: scale(1.1);
}
.cid-uy6wSiuaQZ .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uy6wSiuaQZ img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uy6wSiuaQZ .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uy6wSiuaQZ .wrap {
    opacity: 1 !important;
  }
  .cid-uy6wSiuaQZ .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uy6wSiuaQZ .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uy6wSiuaQZ P {
  color: #bbbbbb;
}
.cid-uy6wSiuaQZ H4 {
  color: #dd1b1b;
}
.cid-uw77UG4UCb {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uw77UG4UCb .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uw77UG4UCb .image-block:hover img {
  transform: scale(1.1);
}
.cid-uw77UG4UCb .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uw77UG4UCb img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uw77UG4UCb .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uw77UG4UCb .wrap {
    opacity: 1 !important;
  }
  .cid-uw77UG4UCb .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uw77UG4UCb .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uw77UG4UCb P {
  color: #bbbbbb;
}
.cid-uw77UG4UCb H4 {
  color: #dd1b1b;
}
.cid-uu8GmK4Crp {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uu8GmK4Crp .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uu8GmK4Crp .image-block:hover img {
  transform: scale(1.1);
}
.cid-uu8GmK4Crp .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uu8GmK4Crp img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uu8GmK4Crp .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uu8GmK4Crp .wrap {
    opacity: 1 !important;
  }
  .cid-uu8GmK4Crp .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uu8GmK4Crp .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uu8GmK4Crp P {
  color: #bbbbbb;
}
.cid-uu8GmK4Crp H4 {
  color: #dd1b1b;
}
.cid-us9PB2AMgJ {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-us9PB2AMgJ .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-us9PB2AMgJ .image-block:hover img {
  transform: scale(1.1);
}
.cid-us9PB2AMgJ .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-us9PB2AMgJ img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-us9PB2AMgJ .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-us9PB2AMgJ .wrap {
    opacity: 1 !important;
  }
  .cid-us9PB2AMgJ .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-us9PB2AMgJ .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-us9PB2AMgJ P {
  color: #bbbbbb;
}
.cid-us9PB2AMgJ H4 {
  color: #dd1b1b;
}
.cid-uqaHdPeoj8 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uqaHdPeoj8 .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uqaHdPeoj8 .image-block:hover img {
  transform: scale(1.1);
}
.cid-uqaHdPeoj8 .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uqaHdPeoj8 img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uqaHdPeoj8 .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uqaHdPeoj8 .wrap {
    opacity: 1 !important;
  }
  .cid-uqaHdPeoj8 .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uqaHdPeoj8 .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uqaHdPeoj8 P {
  color: #bbbbbb;
}
.cid-uqaHdPeoj8 H4 {
  color: #dd1b1b;
}
.cid-uocnwbGzMa {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uocnwbGzMa .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uocnwbGzMa .image-block:hover img {
  transform: scale(1.1);
}
.cid-uocnwbGzMa .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uocnwbGzMa img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uocnwbGzMa .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uocnwbGzMa .wrap {
    opacity: 1 !important;
  }
  .cid-uocnwbGzMa .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uocnwbGzMa .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uocnwbGzMa P {
  color: #bbbbbb;
}
.cid-uocnwbGzMa H4 {
  color: #dd1b1b;
}
.cid-umdcjFC5pj {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-umdcjFC5pj .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-umdcjFC5pj .image-block:hover img {
  transform: scale(1.1);
}
.cid-umdcjFC5pj .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-umdcjFC5pj img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-umdcjFC5pj .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-umdcjFC5pj .wrap {
    opacity: 1 !important;
  }
  .cid-umdcjFC5pj .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-umdcjFC5pj .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-umdcjFC5pj P {
  color: #bbbbbb;
}
.cid-umdcjFC5pj H4 {
  color: #dd1b1b;
}
.cid-ukePpKkaiI {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-ukePpKkaiI .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-ukePpKkaiI .image-block:hover img {
  transform: scale(1.1);
}
.cid-ukePpKkaiI .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-ukePpKkaiI img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-ukePpKkaiI .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-ukePpKkaiI .wrap {
    opacity: 1 !important;
  }
  .cid-ukePpKkaiI .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-ukePpKkaiI .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-ukePpKkaiI P {
  color: #bbbbbb;
}
.cid-ukePpKkaiI H4 {
  color: #dd1b1b;
}
.cid-uieVhq7H8c {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uieVhq7H8c .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uieVhq7H8c .image-block:hover img {
  transform: scale(1.1);
}
.cid-uieVhq7H8c .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uieVhq7H8c img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uieVhq7H8c .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uieVhq7H8c .wrap {
    opacity: 1 !important;
  }
  .cid-uieVhq7H8c .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uieVhq7H8c .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uieVhq7H8c P {
  color: #bbbbbb;
}
.cid-uieVhq7H8c H4 {
  color: #dd1b1b;
}
.cid-ugh5zD2iSE {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-ugh5zD2iSE .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-ugh5zD2iSE .image-block:hover img {
  transform: scale(1.1);
}
.cid-ugh5zD2iSE .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-ugh5zD2iSE img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-ugh5zD2iSE .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-ugh5zD2iSE .wrap {
    opacity: 1 !important;
  }
  .cid-ugh5zD2iSE .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-ugh5zD2iSE .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-ugh5zD2iSE P {
  color: #bbbbbb;
}
.cid-ugh5zD2iSE H4 {
  color: #dd1b1b;
}
.cid-ueiSyU3VWp {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-ueiSyU3VWp .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-ueiSyU3VWp .image-block:hover img {
  transform: scale(1.1);
}
.cid-ueiSyU3VWp .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-ueiSyU3VWp img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-ueiSyU3VWp .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-ueiSyU3VWp .wrap {
    opacity: 1 !important;
  }
  .cid-ueiSyU3VWp .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-ueiSyU3VWp .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-ueiSyU3VWp P {
  color: #bbbbbb;
}
.cid-ueiSyU3VWp H4 {
  color: #dd1b1b;
}
.cid-uck1XB4N6R {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uck1XB4N6R .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uck1XB4N6R .image-block:hover img {
  transform: scale(1.1);
}
.cid-uck1XB4N6R .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uck1XB4N6R img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uck1XB4N6R .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uck1XB4N6R .wrap {
    opacity: 1 !important;
  }
  .cid-uck1XB4N6R .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uck1XB4N6R .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uck1XB4N6R P {
  color: #bbbbbb;
}
.cid-uck1XB4N6R H4 {
  color: #dd1b1b;
}
.cid-uakELgjS0t {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-uakELgjS0t .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-uakELgjS0t .image-block:hover img {
  transform: scale(1.1);
}
.cid-uakELgjS0t .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-uakELgjS0t img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-uakELgjS0t .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-uakELgjS0t .wrap {
    opacity: 1 !important;
  }
  .cid-uakELgjS0t .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-uakELgjS0t .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-uakELgjS0t P {
  color: #bbbbbb;
}
.cid-uakELgjS0t H4 {
  color: #dd1b1b;
}
.cid-u8ltO5bvQz {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-u8ltO5bvQz .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-u8ltO5bvQz .image-block:hover img {
  transform: scale(1.1);
}
.cid-u8ltO5bvQz .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-u8ltO5bvQz img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-u8ltO5bvQz .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-u8ltO5bvQz .wrap {
    opacity: 1 !important;
  }
  .cid-u8ltO5bvQz .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-u8ltO5bvQz .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-u8ltO5bvQz P {
  color: #bbbbbb;
}
.cid-u8ltO5bvQz H4 {
  color: #dd1b1b;
}
.cid-u6mggiIJRY {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-u6mggiIJRY .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-u6mggiIJRY .image-block:hover img {
  transform: scale(1.1);
}
.cid-u6mggiIJRY .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-u6mggiIJRY img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-u6mggiIJRY .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-u6mggiIJRY .wrap {
    opacity: 1 !important;
  }
  .cid-u6mggiIJRY .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-u6mggiIJRY .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-u6mggiIJRY P {
  color: #bbbbbb;
}
.cid-u6mggiIJRY H4 {
  color: #dd1b1b;
}
.cid-u4nqvvXSek {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-u4nqvvXSek .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-u4nqvvXSek .image-block:hover img {
  transform: scale(1.1);
}
.cid-u4nqvvXSek .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-u4nqvvXSek img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-u4nqvvXSek .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-u4nqvvXSek .wrap {
    opacity: 1 !important;
  }
  .cid-u4nqvvXSek .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-u4nqvvXSek .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-u4nqvvXSek P {
  color: #bbbbbb;
}
.cid-u4nqvvXSek H4 {
  color: #dd1b1b;
}
.cid-u2pneHs14u {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-u2pneHs14u .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-u2pneHs14u .image-block:hover img {
  transform: scale(1.1);
}
.cid-u2pneHs14u .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-u2pneHs14u img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-u2pneHs14u .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-u2pneHs14u .wrap {
    opacity: 1 !important;
  }
  .cid-u2pneHs14u .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-u2pneHs14u .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-u2pneHs14u P {
  color: #bbbbbb;
}
.cid-u2pneHs14u H4 {
  color: #dd1b1b;
}
.cid-u0s3ximiQn {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-u0s3ximiQn .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-u0s3ximiQn .image-block:hover img {
  transform: scale(1.1);
}
.cid-u0s3ximiQn .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-u0s3ximiQn img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-u0s3ximiQn .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-u0s3ximiQn .wrap {
    opacity: 1 !important;
  }
  .cid-u0s3ximiQn .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-u0s3ximiQn .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-u0s3ximiQn P {
  color: #bbbbbb;
}
.cid-u0s3ximiQn H4 {
  color: #dd1b1b;
}
.cid-tYsQaUNKIy {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tYsQaUNKIy .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tYsQaUNKIy .image-block:hover img {
  transform: scale(1.1);
}
.cid-tYsQaUNKIy .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tYsQaUNKIy img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tYsQaUNKIy .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tYsQaUNKIy .wrap {
    opacity: 1 !important;
  }
  .cid-tYsQaUNKIy .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tYsQaUNKIy .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tYsQaUNKIy P {
  color: #bbbbbb;
}
.cid-tYsQaUNKIy H4 {
  color: #dd1b1b;
}
.cid-tXNMJiHxIo {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-tXNMJiHxIo .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tXNMJiHxIo .image-block:hover img {
  transform: scale(1.1);
}
.cid-tXNMJiHxIo .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tXNMJiHxIo img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tXNMJiHxIo .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tXNMJiHxIo .wrap {
    opacity: 1 !important;
  }
  .cid-tXNMJiHxIo .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tXNMJiHxIo .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tXNMJiHxIo P {
  color: #bbbbbb;
}
.cid-tXNMJiHxIo H4 {
  color: #dd1b1b;
}
.cid-tVP7Bvprl7 {
  background: #232323;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tVP7Bvprl7 .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tVP7Bvprl7 .image-block:hover img {
  transform: scale(1.1);
}
.cid-tVP7Bvprl7 .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tVP7Bvprl7 img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tVP7Bvprl7 .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tVP7Bvprl7 .wrap {
    opacity: 1 !important;
  }
  .cid-tVP7Bvprl7 .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tVP7Bvprl7 .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tVP7Bvprl7 P {
  color: #bbbbbb;
}
.cid-tVP7Bvprl7 H4 {
  color: #dd1b1b;
}
.cid-tTQcJwHvNV {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tTQcJwHvNV .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tTQcJwHvNV .image-block:hover img {
  transform: scale(1.1);
}
.cid-tTQcJwHvNV .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tTQcJwHvNV img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tTQcJwHvNV .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tTQcJwHvNV .wrap {
    opacity: 1 !important;
  }
  .cid-tTQcJwHvNV .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tTQcJwHvNV .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tTQcJwHvNV P {
  color: #bbbbbb;
}
.cid-tTQcJwHvNV H4 {
  color: #dd1b1b;
}
.cid-tRPLw8zRDK {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tRPLw8zRDK .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tRPLw8zRDK .image-block:hover img {
  transform: scale(1.1);
}
.cid-tRPLw8zRDK .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tRPLw8zRDK img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tRPLw8zRDK .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tRPLw8zRDK .wrap {
    opacity: 1 !important;
  }
  .cid-tRPLw8zRDK .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tRPLw8zRDK .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tRPLw8zRDK P {
  color: #bbbbbb;
}
.cid-tRPLw8zRDK H4 {
  color: #dd1b1b;
}
.cid-tPSH0SIG0e {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tPSH0SIG0e .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tPSH0SIG0e .image-block:hover img {
  transform: scale(1.1);
}
.cid-tPSH0SIG0e .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tPSH0SIG0e img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tPSH0SIG0e .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tPSH0SIG0e .wrap {
    opacity: 1 !important;
  }
  .cid-tPSH0SIG0e .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tPSH0SIG0e .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tPSH0SIG0e P {
  color: #bbbbbb;
}
.cid-tPSH0SIG0e H4 {
  color: #dd1b1b;
}
.cid-tNTe3UJvxB {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tNTe3UJvxB .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tNTe3UJvxB .image-block:hover img {
  transform: scale(1.1);
}
.cid-tNTe3UJvxB .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tNTe3UJvxB img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tNTe3UJvxB .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tNTe3UJvxB .wrap {
    opacity: 1 !important;
  }
  .cid-tNTe3UJvxB .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tNTe3UJvxB .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tNTe3UJvxB P {
  color: #bbbbbb;
}
.cid-tNTe3UJvxB H4 {
  color: #dd1b1b;
}
.cid-tLTKO3PwVE {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tLTKO3PwVE .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tLTKO3PwVE .image-block:hover img {
  transform: scale(1.1);
}
.cid-tLTKO3PwVE .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tLTKO3PwVE img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tLTKO3PwVE .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tLTKO3PwVE .wrap {
    opacity: 1 !important;
  }
  .cid-tLTKO3PwVE .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tLTKO3PwVE .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tLTKO3PwVE P {
  color: #bbbbbb;
}
.cid-tLTKO3PwVE H4 {
  color: #dd1b1b;
}
.cid-tJV4cTUQZs {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tJV4cTUQZs .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tJV4cTUQZs .image-block:hover img {
  transform: scale(1.1);
}
.cid-tJV4cTUQZs .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tJV4cTUQZs img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tJV4cTUQZs .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tJV4cTUQZs .wrap {
    opacity: 1 !important;
  }
  .cid-tJV4cTUQZs .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tJV4cTUQZs .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tJV4cTUQZs P {
  color: #bbbbbb;
}
.cid-tJV4cTUQZs H4 {
  color: #dd1b1b;
}
.cid-tHXtDeFQq9 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tHXtDeFQq9 .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tHXtDeFQq9 .image-block:hover img {
  transform: scale(1.1);
}
.cid-tHXtDeFQq9 .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tHXtDeFQq9 img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tHXtDeFQq9 .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tHXtDeFQq9 .wrap {
    opacity: 1 !important;
  }
  .cid-tHXtDeFQq9 .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tHXtDeFQq9 .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tHXtDeFQq9 P {
  color: #bbbbbb;
}
.cid-tHXtDeFQq9 H4 {
  color: #dd1b1b;
}
.cid-tFX0QR0JXg {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tFX0QR0JXg .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tFX0QR0JXg .image-block:hover img {
  transform: scale(1.1);
}
.cid-tFX0QR0JXg .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tFX0QR0JXg img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tFX0QR0JXg .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tFX0QR0JXg .wrap {
    opacity: 1 !important;
  }
  .cid-tFX0QR0JXg .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tFX0QR0JXg .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tFX0QR0JXg P {
  color: #bbbbbb;
}
.cid-tFX0QR0JXg H4 {
  color: #dd1b1b;
}
.cid-tE071iPFKP {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tE071iPFKP .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tE071iPFKP .image-block:hover img {
  transform: scale(1.1);
}
.cid-tE071iPFKP .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tE071iPFKP img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tE071iPFKP .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tE071iPFKP .wrap {
    opacity: 1 !important;
  }
  .cid-tE071iPFKP .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tE071iPFKP .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tE071iPFKP P {
  color: #bbbbbb;
}
.cid-tE071iPFKP H4 {
  color: #dd1b1b;
}
.cid-tC07IIkHuo {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tC07IIkHuo .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tC07IIkHuo .image-block:hover img {
  transform: scale(1.1);
}
.cid-tC07IIkHuo .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tC07IIkHuo img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tC07IIkHuo .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tC07IIkHuo .wrap {
    opacity: 1 !important;
  }
  .cid-tC07IIkHuo .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tC07IIkHuo .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tC07IIkHuo P {
  color: #bbbbbb;
}
.cid-tC07IIkHuo H4 {
  color: #dd1b1b;
}
.cid-tA1QtxYlPy {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tA1QtxYlPy .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tA1QtxYlPy .image-block:hover img {
  transform: scale(1.1);
}
.cid-tA1QtxYlPy .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tA1QtxYlPy img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tA1QtxYlPy .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tA1QtxYlPy .wrap {
    opacity: 1 !important;
  }
  .cid-tA1QtxYlPy .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tA1QtxYlPy .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tA1QtxYlPy P {
  color: #bbbbbb;
}
.cid-tA1QtxYlPy H4 {
  color: #dd1b1b;
}
.cid-ty2ZEWunNR {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-ty2ZEWunNR .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-ty2ZEWunNR .image-block:hover img {
  transform: scale(1.1);
}
.cid-ty2ZEWunNR .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-ty2ZEWunNR img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-ty2ZEWunNR .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-ty2ZEWunNR .wrap {
    opacity: 1 !important;
  }
  .cid-ty2ZEWunNR .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-ty2ZEWunNR .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-ty2ZEWunNR P {
  color: #bbbbbb;
}
.cid-ty2ZEWunNR H4 {
  color: #dd1b1b;
}
.cid-tw3m4PdRli {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tw3m4PdRli .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tw3m4PdRli .image-block:hover img {
  transform: scale(1.1);
}
.cid-tw3m4PdRli .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tw3m4PdRli img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tw3m4PdRli .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tw3m4PdRli .wrap {
    opacity: 1 !important;
  }
  .cid-tw3m4PdRli .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tw3m4PdRli .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tw3m4PdRli P {
  color: #bbbbbb;
}
.cid-tw3m4PdRli H4 {
  color: #dd1b1b;
}
.cid-tu5wvcDM5b {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tu5wvcDM5b .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tu5wvcDM5b .image-block:hover img {
  transform: scale(1.1);
}
.cid-tu5wvcDM5b .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tu5wvcDM5b img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tu5wvcDM5b .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tu5wvcDM5b .wrap {
    opacity: 1 !important;
  }
  .cid-tu5wvcDM5b .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tu5wvcDM5b .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tu5wvcDM5b P {
  color: #bbbbbb;
}
.cid-tu5wvcDM5b H4 {
  color: #dd1b1b;
}
.cid-ts68dx3PbC {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-ts68dx3PbC .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-ts68dx3PbC .image-block:hover img {
  transform: scale(1.1);
}
.cid-ts68dx3PbC .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-ts68dx3PbC img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-ts68dx3PbC .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-ts68dx3PbC .wrap {
    opacity: 1 !important;
  }
  .cid-ts68dx3PbC .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-ts68dx3PbC .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-ts68dx3PbC P {
  color: #bbbbbb;
}
.cid-ts68dx3PbC H4 {
  color: #dd1b1b;
}
.cid-tq7lXJzXVz {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tq7lXJzXVz .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tq7lXJzXVz .image-block:hover img {
  transform: scale(1.1);
}
.cid-tq7lXJzXVz .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tq7lXJzXVz img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tq7lXJzXVz .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tq7lXJzXVz .wrap {
    opacity: 1 !important;
  }
  .cid-tq7lXJzXVz .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tq7lXJzXVz .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tq7lXJzXVz P {
  color: #bbbbbb;
}
.cid-tq7lXJzXVz H4 {
  color: #dd1b1b;
}
.cid-to8UYku4sd {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-to8UYku4sd .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-to8UYku4sd .image-block:hover img {
  transform: scale(1.1);
}
.cid-to8UYku4sd .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-to8UYku4sd img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-to8UYku4sd .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-to8UYku4sd .wrap {
    opacity: 1 !important;
  }
  .cid-to8UYku4sd .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-to8UYku4sd .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-to8UYku4sd P {
  color: #bbbbbb;
}
.cid-to8UYku4sd H4 {
  color: #dd1b1b;
}
.cid-tm9jxCPWRK {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tm9jxCPWRK .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tm9jxCPWRK .image-block:hover img {
  transform: scale(1.1);
}
.cid-tm9jxCPWRK .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tm9jxCPWRK img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tm9jxCPWRK .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tm9jxCPWRK .wrap {
    opacity: 1 !important;
  }
  .cid-tm9jxCPWRK .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tm9jxCPWRK .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tm9jxCPWRK P {
  color: #bbbbbb;
}
.cid-tm9jxCPWRK H4 {
  color: #dd1b1b;
}
.cid-tkbepoFtH9 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tkbepoFtH9 .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tkbepoFtH9 .image-block:hover img {
  transform: scale(1.1);
}
.cid-tkbepoFtH9 .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tkbepoFtH9 img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tkbepoFtH9 .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tkbepoFtH9 .wrap {
    opacity: 1 !important;
  }
  .cid-tkbepoFtH9 .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tkbepoFtH9 .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tkbepoFtH9 P {
  color: #bbbbbb;
}
.cid-tkbepoFtH9 H4 {
  color: #dd1b1b;
}
.cid-tic7iExuHI {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tic7iExuHI .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tic7iExuHI .image-block:hover img {
  transform: scale(1.1);
}
.cid-tic7iExuHI .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tic7iExuHI img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tic7iExuHI .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tic7iExuHI .wrap {
    opacity: 1 !important;
  }
  .cid-tic7iExuHI .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tic7iExuHI .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tic7iExuHI P {
  color: #bbbbbb;
}
.cid-tic7iExuHI H4 {
  color: #dd1b1b;
}
.cid-tgerVNeZcT {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tgerVNeZcT .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tgerVNeZcT .image-block:hover img {
  transform: scale(1.1);
}
.cid-tgerVNeZcT .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tgerVNeZcT img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tgerVNeZcT .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tgerVNeZcT .wrap {
    opacity: 1 !important;
  }
  .cid-tgerVNeZcT .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tgerVNeZcT .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tgerVNeZcT P {
  color: #bbbbbb;
}
.cid-tgerVNeZcT H4 {
  color: #dd1b1b;
}
.cid-teeBmSvYr6 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-teeBmSvYr6 .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-teeBmSvYr6 .image-block:hover img {
  transform: scale(1.1);
}
.cid-teeBmSvYr6 .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-teeBmSvYr6 img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-teeBmSvYr6 .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-teeBmSvYr6 .wrap {
    opacity: 1 !important;
  }
  .cid-teeBmSvYr6 .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-teeBmSvYr6 .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-teeBmSvYr6 P {
  color: #bbbbbb;
}
.cid-teeBmSvYr6 H4 {
  color: #dd1b1b;
}
.cid-tcfbuWLNB6 {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tcfbuWLNB6 .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tcfbuWLNB6 .image-block:hover img {
  transform: scale(1.1);
}
.cid-tcfbuWLNB6 .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tcfbuWLNB6 img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tcfbuWLNB6 .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tcfbuWLNB6 .wrap {
    opacity: 1 !important;
  }
  .cid-tcfbuWLNB6 .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tcfbuWLNB6 .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tcfbuWLNB6 P {
  color: #bbbbbb;
}
.cid-tcfbuWLNB6 H4 {
  color: #dd1b1b;
}
.cid-tagH5nbe6F {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-tagH5nbe6F .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-tagH5nbe6F .image-block:hover img {
  transform: scale(1.1);
}
.cid-tagH5nbe6F .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-tagH5nbe6F img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-tagH5nbe6F .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-tagH5nbe6F .wrap {
    opacity: 1 !important;
  }
  .cid-tagH5nbe6F .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-tagH5nbe6F .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-tagH5nbe6F P {
  color: #bbbbbb;
}
.cid-tagH5nbe6F H4 {
  color: #dd1b1b;
}
.cid-t8iaH0xDlG {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-t8iaH0xDlG .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t8iaH0xDlG .image-block:hover img {
  transform: scale(1.1);
}
.cid-t8iaH0xDlG .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t8iaH0xDlG img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t8iaH0xDlG .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t8iaH0xDlG .wrap {
    opacity: 1 !important;
  }
  .cid-t8iaH0xDlG .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t8iaH0xDlG .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t8iaH0xDlG P {
  color: #bbbbbb;
}
.cid-t8iaH0xDlG H4 {
  color: #dd1b1b;
}
.cid-t6G2GRfzZd {
  background: #232323;
  padding-top: 15px;
  padding-bottom: 0px;
}
.cid-t6G2GRfzZd .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6G2GRfzZd .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6G2GRfzZd .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6G2GRfzZd img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6G2GRfzZd .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6G2GRfzZd .wrap {
    opacity: 1 !important;
  }
  .cid-t6G2GRfzZd .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6G2GRfzZd .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6G2GRfzZd P {
  color: #bbbbbb;
}
.cid-t6G2GRfzZd H4 {
  color: #dd1b1b;
}
.cid-t6G5guVAtv {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6G5guVAtv .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6G5guVAtv .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6G5guVAtv .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6G5guVAtv img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6G5guVAtv .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6G5guVAtv .wrap {
    opacity: 1 !important;
  }
  .cid-t6G5guVAtv .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6G5guVAtv .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6G5guVAtv P {
  color: #bbbbbb;
}
.cid-t6G5guVAtv H4 {
  color: #dd1b1b;
}
.cid-t6G7GQ1x8Q {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6G7GQ1x8Q .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6G7GQ1x8Q .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6G7GQ1x8Q .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6G7GQ1x8Q img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6G7GQ1x8Q .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6G7GQ1x8Q .wrap {
    opacity: 1 !important;
  }
  .cid-t6G7GQ1x8Q .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6G7GQ1x8Q .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6G7GQ1x8Q P {
  color: #bbbbbb;
}
.cid-t6G7GQ1x8Q H4 {
  color: #dd1b1b;
}
.cid-t6G8XsL20O {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6G8XsL20O .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6G8XsL20O .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6G8XsL20O .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6G8XsL20O img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6G8XsL20O .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6G8XsL20O .wrap {
    opacity: 1 !important;
  }
  .cid-t6G8XsL20O .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6G8XsL20O .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6G8XsL20O P {
  color: #bbbbbb;
}
.cid-t6G8XsL20O H4 {
  color: #dd1b1b;
}
.cid-t6G9yn4rBq {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6G9yn4rBq .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6G9yn4rBq .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6G9yn4rBq .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6G9yn4rBq img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6G9yn4rBq .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6G9yn4rBq .wrap {
    opacity: 1 !important;
  }
  .cid-t6G9yn4rBq .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6G9yn4rBq .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6G9yn4rBq P {
  color: #bbbbbb;
}
.cid-t6G9yn4rBq H4 {
  color: #dd1b1b;
}
.cid-t6Gae8Lfks {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6Gae8Lfks .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6Gae8Lfks .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6Gae8Lfks .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6Gae8Lfks img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6Gae8Lfks .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6Gae8Lfks .wrap {
    opacity: 1 !important;
  }
  .cid-t6Gae8Lfks .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6Gae8Lfks .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6Gae8Lfks P {
  color: #bbbbbb;
}
.cid-t6Gae8Lfks H4 {
  color: #dd1b1b;
}
.cid-t6Gkf97jZe {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6Gkf97jZe .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6Gkf97jZe .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6Gkf97jZe .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6Gkf97jZe img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6Gkf97jZe .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6Gkf97jZe .wrap {
    opacity: 1 !important;
  }
  .cid-t6Gkf97jZe .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6Gkf97jZe .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6Gkf97jZe P {
  color: #bbbbbb;
}
.cid-t6Gkf97jZe H4 {
  color: #dd1b1b;
}
.cid-t6GkN8Ld4j {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6GkN8Ld4j .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6GkN8Ld4j .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6GkN8Ld4j .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6GkN8Ld4j img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6GkN8Ld4j .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6GkN8Ld4j .wrap {
    opacity: 1 !important;
  }
  .cid-t6GkN8Ld4j .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6GkN8Ld4j .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6GkN8Ld4j P {
  color: #bbbbbb;
}
.cid-t6GkN8Ld4j H4 {
  color: #dd1b1b;
}
.cid-t6GmgxTsv9 {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6GmgxTsv9 .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6GmgxTsv9 .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6GmgxTsv9 .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6GmgxTsv9 img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6GmgxTsv9 .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6GmgxTsv9 .wrap {
    opacity: 1 !important;
  }
  .cid-t6GmgxTsv9 .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6GmgxTsv9 .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6GmgxTsv9 P {
  color: #bbbbbb;
}
.cid-t6GmgxTsv9 H4 {
  color: #dd1b1b;
}
.cid-t6GmOPJpdz {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6GmOPJpdz .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6GmOPJpdz .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6GmOPJpdz .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6GmOPJpdz img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6GmOPJpdz .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6GmOPJpdz .wrap {
    opacity: 1 !important;
  }
  .cid-t6GmOPJpdz .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6GmOPJpdz .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6GmOPJpdz P {
  color: #bbbbbb;
}
.cid-t6GmOPJpdz H4 {
  color: #dd1b1b;
}
.cid-t6Gnj85oqZ {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6Gnj85oqZ .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6Gnj85oqZ .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6Gnj85oqZ .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6Gnj85oqZ img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6Gnj85oqZ .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6Gnj85oqZ .wrap {
    opacity: 1 !important;
  }
  .cid-t6Gnj85oqZ .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6Gnj85oqZ .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6Gnj85oqZ P {
  color: #bbbbbb;
}
.cid-t6Gnj85oqZ H4 {
  color: #dd1b1b;
}
.cid-t6GnMDaDpC {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6GnMDaDpC .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6GnMDaDpC .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6GnMDaDpC .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6GnMDaDpC img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6GnMDaDpC .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6GnMDaDpC .wrap {
    opacity: 1 !important;
  }
  .cid-t6GnMDaDpC .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6GnMDaDpC .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6GnMDaDpC P {
  color: #bbbbbb;
}
.cid-t6GnMDaDpC H4 {
  color: #dd1b1b;
}
.cid-t6GKBfgEY8 {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6GKBfgEY8 .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6GKBfgEY8 .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6GKBfgEY8 .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6GKBfgEY8 img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6GKBfgEY8 .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6GKBfgEY8 .wrap {
    opacity: 1 !important;
  }
  .cid-t6GKBfgEY8 .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6GKBfgEY8 .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6GKBfgEY8 P {
  color: #bbbbbb;
}
.cid-t6GKBfgEY8 H4 {
  color: #dd1b1b;
}
.cid-t6GLcV1mNm {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6GLcV1mNm .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6GLcV1mNm .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6GLcV1mNm .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6GLcV1mNm img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6GLcV1mNm .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6GLcV1mNm .wrap {
    opacity: 1 !important;
  }
  .cid-t6GLcV1mNm .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6GLcV1mNm .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6GLcV1mNm P {
  color: #bbbbbb;
}
.cid-t6GLcV1mNm H4 {
  color: #dd1b1b;
}
.cid-t6GLOig3jb {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6GLOig3jb .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6GLOig3jb .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6GLOig3jb .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6GLOig3jb img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6GLOig3jb .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6GLOig3jb .wrap {
    opacity: 1 !important;
  }
  .cid-t6GLOig3jb .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6GLOig3jb .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6GLOig3jb P {
  color: #bbbbbb;
}
.cid-t6GLOig3jb H4 {
  color: #dd1b1b;
}
.cid-t6GMlRhQvv {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6GMlRhQvv .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6GMlRhQvv .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6GMlRhQvv .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6GMlRhQvv img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6GMlRhQvv .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6GMlRhQvv .wrap {
    opacity: 1 !important;
  }
  .cid-t6GMlRhQvv .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6GMlRhQvv .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6GMlRhQvv P {
  color: #bbbbbb;
}
.cid-t6GMlRhQvv H4 {
  color: #dd1b1b;
}
.cid-t6GMQguOcg {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6GMQguOcg .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6GMQguOcg .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6GMQguOcg .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6GMQguOcg img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6GMQguOcg .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6GMQguOcg .wrap {
    opacity: 1 !important;
  }
  .cid-t6GMQguOcg .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6GMQguOcg .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6GMQguOcg P {
  color: #bbbbbb;
}
.cid-t6GMQguOcg H4 {
  color: #dd1b1b;
}
.cid-t6GNnqWccF {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6GNnqWccF .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6GNnqWccF .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6GNnqWccF .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6GNnqWccF img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6GNnqWccF .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6GNnqWccF .wrap {
    opacity: 1 !important;
  }
  .cid-t6GNnqWccF .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6GNnqWccF .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6GNnqWccF P {
  color: #bbbbbb;
}
.cid-t6GNnqWccF H4 {
  color: #dd1b1b;
}
.cid-t6GO3qGWoa {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6GO3qGWoa .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6GO3qGWoa .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6GO3qGWoa .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6GO3qGWoa img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6GO3qGWoa .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6GO3qGWoa .wrap {
    opacity: 1 !important;
  }
  .cid-t6GO3qGWoa .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6GO3qGWoa .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6GO3qGWoa P {
  color: #bbbbbb;
}
.cid-t6GO3qGWoa H4 {
  color: #dd1b1b;
}
.cid-t6GOxP85zW {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6GOxP85zW .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6GOxP85zW .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6GOxP85zW .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6GOxP85zW img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6GOxP85zW .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6GOxP85zW .wrap {
    opacity: 1 !important;
  }
  .cid-t6GOxP85zW .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6GOxP85zW .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6GOxP85zW P {
  color: #bbbbbb;
}
.cid-t6GOxP85zW H4 {
  color: #dd1b1b;
}
.cid-t6GP13yI7w {
  background: #232323;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-t6GP13yI7w .image-block {
  margin: auto;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
.cid-t6GP13yI7w .image-block:hover img {
  transform: scale(1.1);
}
.cid-t6GP13yI7w .wrap {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 2rem;
  transition: all 0.3s;
  z-index: 3;
}
.cid-t6GP13yI7w img {
  width: 100%;
  height: 100%;
  transition: all 2s;
  object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 992px) {
  .cid-t6GP13yI7w .image-block {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .cid-t6GP13yI7w .wrap {
    opacity: 1 !important;
  }
  .cid-t6GP13yI7w .image-block:before {
    opacity: 0.2 !important;
  }
  .cid-t6GP13yI7w .sm-pb {
    margin-bottom: 1rem;
  }
}
.cid-t6GP13yI7w P {
  color: #bbbbbb;
}
.cid-t6GP13yI7w H4 {
  color: #dd1b1b;
}
.cid-snNbrtB1lz {
  background: #232323;
  padding-top: 60px;
  padding-bottom: 15px;
}
.cid-snNbrtB1lz .image-block {
  margin: auto;
}
.cid-snNbrtB1lz figcaption {
  position: relative;
}
.cid-snNbrtB1lz figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-snNbrtB1lz .image-block {
    width: 100% !important;
  }
}
.cid-snNbrtB1lz DIV {
  color: #dd1b1b;
}
.cid-snNc4GAMGp {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-snNc4GAMGp .image-block {
  margin: auto;
}
.cid-snNc4GAMGp figcaption {
  position: relative;
}
.cid-snNc4GAMGp figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-snNc4GAMGp .image-block {
    width: 100% !important;
  }
}
.cid-rR4Vx265Tq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rR4Vx265Tq P {
  color: #767676;
}
.cid-rR4Vx265Tq H1 {
  color: #ffffff;
}
.cid-rTklopvzey {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rTklopvzey .mbr-text,
.cid-rTklopvzey blockquote {
  color: #767676;
}
.cid-rTklopvzey .mbr-text P {
  text-align: center;
}
.cid-rTklopvzey .mbr-text {
  color: #ffffff;
}
.cid-syDSKVbWKA {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #000000;
}
.cid-syDSKVbWKA .images-container.container-fluid {
  padding: 0;
}
.cid-syDSKVbWKA .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-syDSKVbWKA .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-syDSKVbWKA .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-syDSKVbWKA .media-container-row .img-item .img-caption {
  background: #7f1933;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-syDSKVbWKA .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-syDSKVbWKA .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-syDSKVbWKA .img-item {
    width: 100% !important;
  }
  .cid-syDSKVbWKA .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-syDSKVbWKA P {
  color: #ffffff;
}
.cid-s7WQ9j945t {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #767676;
}
.cid-s7WQ9j945t .mbr-section-subtitle {
  color: #ffffff;
}
.cid-s7WQ9j945t H2 {
  color: #f7ed4a;
}
.cid-s9zZpXnUg9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #767676;
}
.cid-s9zZpXnUg9 .images-container.container-fluid {
  padding: 0;
}
.cid-s9zZpXnUg9 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-s9zZpXnUg9 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-s9zZpXnUg9 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-s9zZpXnUg9 .media-container-row .img-item .img-caption {
  background: #767676;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-s9zZpXnUg9 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-s9zZpXnUg9 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-s9zZpXnUg9 .img-item {
    width: 100% !important;
  }
  .cid-s9zZpXnUg9 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-s9zZpXnUg9 P {
  text-align: center;
}
.cid-rZndgV5kG5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rZndgV5kG5 .mbr-text,
.cid-rZndgV5kG5 blockquote {
  color: #767676;
}
.cid-rWlQA7zdfp {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-rWlQA7zdfp P {
  color: #767676;
}
.cid-rWlQA7zdfp H1 {
  color: #ffffff;
}
.cid-su1ksqDPJY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-su1ksqDPJY h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-su1ksqDPJY p {
  color: #767676;
  text-align: left;
}
.cid-su1ksqDPJY .card-wrapper {
  height: 100%;
}
.cid-su1ksqDPJY .container-fluid {
  max-width: 1600px;
}
.cid-su1ksqDPJY .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-su1ksqDPJY img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-su1ksqDPJY .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-su1ksqDPJY .card:hover img {
  filter: blur(3px);
}
.cid-su1ksqDPJY .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-su1ksqDPJY .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-su1ksqDPJY .mbr-iconfont {
    opacity: 1;
  }
  .cid-su1ksqDPJY img {
    filter: blur(3px);
  }
}
.cid-su1ksqDPJY .card-title {
  color: #232323;
}
.cid-su1ksqDPJY P {
  color: #ffffff;
}
.cid-snNJwsi2i6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-snNJwsi2i6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snNJwsi2i6 p {
  color: #767676;
  text-align: left;
}
.cid-snNJwsi2i6 .card-wrapper {
  height: 100%;
}
.cid-snNJwsi2i6 .container-fluid {
  max-width: 1600px;
}
.cid-snNJwsi2i6 .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snNJwsi2i6 img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snNJwsi2i6 .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snNJwsi2i6 .card:hover img {
  filter: blur(3px);
}
.cid-snNJwsi2i6 .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snNJwsi2i6 .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snNJwsi2i6 .mbr-iconfont {
    opacity: 1;
  }
  .cid-snNJwsi2i6 img {
    filter: blur(3px);
  }
}
.cid-snNJwsi2i6 .card-title {
  color: #232323;
}
.cid-snNJwsi2i6 P {
  color: #ffffff;
}
.cid-snNHUQUaJf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-snNHUQUaJf h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snNHUQUaJf p {
  color: #767676;
  text-align: left;
}
.cid-snNHUQUaJf .card-wrapper {
  height: 100%;
}
.cid-snNHUQUaJf .container-fluid {
  max-width: 1600px;
}
.cid-snNHUQUaJf .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snNHUQUaJf img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snNHUQUaJf .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snNHUQUaJf .card:hover img {
  filter: blur(3px);
}
.cid-snNHUQUaJf .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snNHUQUaJf .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snNHUQUaJf .mbr-iconfont {
    opacity: 1;
  }
  .cid-snNHUQUaJf img {
    filter: blur(3px);
  }
}
.cid-snNHUQUaJf .card-title {
  color: #232323;
}
.cid-snNHUQUaJf P {
  color: #ffffff;
}
.cid-snNGsKjeNM {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-snNGsKjeNM h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snNGsKjeNM p {
  color: #767676;
  text-align: left;
}
.cid-snNGsKjeNM .card-wrapper {
  height: 100%;
}
.cid-snNGsKjeNM .container-fluid {
  max-width: 1600px;
}
.cid-snNGsKjeNM .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-snNGsKjeNM img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-snNGsKjeNM .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-snNGsKjeNM .card:hover img {
  filter: blur(3px);
}
.cid-snNGsKjeNM .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-snNGsKjeNM .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-snNGsKjeNM .mbr-iconfont {
    opacity: 1;
  }
  .cid-snNGsKjeNM img {
    filter: blur(3px);
  }
}
.cid-snNGsKjeNM .card-title {
  color: #232323;
}
.cid-snNGsKjeNM P {
  color: #ffffff;
}
.cid-s3T9D9uExr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-s3T9D9uExr h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-s3T9D9uExr p {
  color: #767676;
  text-align: left;
}
.cid-s3T9D9uExr .card-wrapper {
  height: 100%;
}
.cid-s3T9D9uExr .container-fluid {
  max-width: 1600px;
}
.cid-s3T9D9uExr .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-s3T9D9uExr img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-s3T9D9uExr .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-s3T9D9uExr .card:hover img {
  filter: blur(3px);
}
.cid-s3T9D9uExr .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-s3T9D9uExr .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-s3T9D9uExr .mbr-iconfont {
    opacity: 1;
  }
  .cid-s3T9D9uExr img {
    filter: blur(3px);
  }
}
.cid-s3T9D9uExr .card-title {
  color: #232323;
}
.cid-s3T9D9uExr P {
  color: #ffffff;
}
.cid-s01FhI367O {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-s01FhI367O h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-s01FhI367O p {
  color: #767676;
  text-align: left;
}
.cid-s01FhI367O .card-wrapper {
  height: 100%;
}
.cid-s01FhI367O .container-fluid {
  max-width: 1600px;
}
.cid-s01FhI367O .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-s01FhI367O img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-s01FhI367O .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-s01FhI367O .card:hover img {
  filter: blur(3px);
}
.cid-s01FhI367O .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-s01FhI367O .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-s01FhI367O .mbr-iconfont {
    opacity: 1;
  }
  .cid-s01FhI367O img {
    filter: blur(3px);
  }
}
.cid-s01FhI367O P {
  color: #ffffff;
}
.cid-rZbHwjo6NN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-rZbHwjo6NN h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rZbHwjo6NN p {
  color: #767676;
  text-align: left;
}
.cid-rZbHwjo6NN .card-wrapper {
  height: 100%;
}
.cid-rZbHwjo6NN .container-fluid {
  max-width: 1600px;
}
.cid-rZbHwjo6NN .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-rZbHwjo6NN img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-rZbHwjo6NN .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-rZbHwjo6NN .card:hover img {
  filter: blur(3px);
}
.cid-rZbHwjo6NN .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-rZbHwjo6NN .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-rZbHwjo6NN .mbr-iconfont {
    opacity: 1;
  }
  .cid-rZbHwjo6NN img {
    filter: blur(3px);
  }
}
.cid-rZbHwjo6NN P {
  color: #ffffff;
}
.cid-s824oRqVJt {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #767676;
}
.cid-s824oRqVJt .mbr-section-subtitle {
  color: #767676;
}
.cid-s824oRqVJt H2 {
  color: #ffffff;
}
.cid-sx3kYiQakJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #767676;
}
.cid-sx3kYiQakJ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sx3kYiQakJ p {
  color: #767676;
  text-align: left;
}
.cid-sx3kYiQakJ .card-box {
  padding-top: 2rem;
}
.cid-sx3kYiQakJ .card-wrapper {
  height: 100%;
}
.cid-sx3kYiQakJ P {
  text-align: left;
  color: #232323;
}
.cid-snNPUBM6Zh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #767676;
}
.cid-snNPUBM6Zh h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snNPUBM6Zh p {
  color: #767676;
  text-align: left;
}
.cid-snNPUBM6Zh .card-box {
  padding-top: 2rem;
}
.cid-snNPUBM6Zh .card-wrapper {
  height: 100%;
}
.cid-snNPUBM6Zh P {
  text-align: left;
  color: #232323;
}
.cid-snNOrSTfec {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #767676;
}
.cid-snNOrSTfec h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snNOrSTfec p {
  color: #767676;
  text-align: left;
}
.cid-snNOrSTfec .card-box {
  padding-top: 2rem;
}
.cid-snNOrSTfec .card-wrapper {
  height: 100%;
}
.cid-snNOrSTfec P {
  text-align: left;
  color: #232323;
}
.cid-s9A09h17XE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #767676;
}
.cid-s9A09h17XE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-s9A09h17XE p {
  color: #767676;
  text-align: left;
}
.cid-s9A09h17XE .card-box {
  padding-top: 2rem;
}
.cid-s9A09h17XE .card-wrapper {
  height: 100%;
}
.cid-s9A09h17XE P {
  text-align: left;
  color: #232323;
}
.cid-rRshaDggp2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #223558;
}
.cid-rRshaDggp2 P {
  color: #767676;
}
.cid-rRshaDggp2 H1 {
  color: #ffffff;
}
.cid-rZngUkD757 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rZngUkD757 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rZngUkD757 p {
  color: #767676;
  text-align: left;
}
.cid-rZngUkD757 .card-wrapper {
  height: 100%;
}
.cid-rZngUkD757 .container-fluid {
  max-width: 1600px;
}
.cid-rZngUkD757 .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-rZngUkD757 img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-rZngUkD757 .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-rZngUkD757 .card:hover img {
  filter: blur(3px);
}
.cid-rZngUkD757 .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-rZngUkD757 .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-rZngUkD757 .mbr-iconfont {
    opacity: 1;
  }
  .cid-rZngUkD757 img {
    filter: blur(3px);
  }
}
.cid-rZngUkD757 .card-title {
  color: #dd1b1b;
}
.cid-rW3IL042eF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rW3IL042eF h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rW3IL042eF p {
  color: #767676;
  text-align: left;
}
.cid-rW3IL042eF .card-wrapper {
  height: 100%;
}
.cid-rW3IL042eF .container-fluid {
  max-width: 1600px;
}
.cid-rW3IL042eF .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-rW3IL042eF img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-rW3IL042eF .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-rW3IL042eF .card:hover img {
  filter: blur(3px);
}
.cid-rW3IL042eF .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-rW3IL042eF .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-rW3IL042eF .mbr-iconfont {
    opacity: 1;
  }
  .cid-rW3IL042eF img {
    filter: blur(3px);
  }
}
.cid-rVSa10Wbdk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rVSa10Wbdk h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rVSa10Wbdk p {
  color: #767676;
  text-align: left;
}
.cid-rVSa10Wbdk .card-wrapper {
  height: 100%;
}
.cid-rVSa10Wbdk .container-fluid {
  max-width: 1600px;
}
.cid-rVSa10Wbdk .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-rVSa10Wbdk img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-rVSa10Wbdk .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-rVSa10Wbdk .card:hover img {
  filter: blur(3px);
}
.cid-rVSa10Wbdk .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-rVSa10Wbdk .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-rVSa10Wbdk .mbr-iconfont {
    opacity: 1;
  }
  .cid-rVSa10Wbdk img {
    filter: blur(3px);
  }
}
.cid-rVSc9uoI2x {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rVSc9uoI2x h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rVSc9uoI2x p {
  color: #767676;
  text-align: left;
}
.cid-rVSc9uoI2x .card-wrapper {
  height: 100%;
}
.cid-rVSc9uoI2x .container-fluid {
  max-width: 1600px;
}
.cid-rVSc9uoI2x .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-rVSc9uoI2x img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-rVSc9uoI2x .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-rVSc9uoI2x .card:hover img {
  filter: blur(3px);
}
.cid-rVSc9uoI2x .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-rVSc9uoI2x .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-rVSc9uoI2x .mbr-iconfont {
    opacity: 1;
  }
  .cid-rVSc9uoI2x img {
    filter: blur(3px);
  }
}
.cid-rVSd0YVrou {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rVSd0YVrou h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rVSd0YVrou p {
  color: #767676;
  text-align: left;
}
.cid-rVSd0YVrou .card-wrapper {
  height: 100%;
}
.cid-rVSd0YVrou .container-fluid {
  max-width: 1600px;
}
.cid-rVSd0YVrou .card-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.cid-rVSd0YVrou img {
  object-fit: cover;
  height: 100%;
  transition: all 0.3s;
}
.cid-rVSd0YVrou .mbr-iconfont {
  position: absolute;
  font-size: 1.8rem;
  color: #149dcc;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  opacity: 0;
  z-index: 2;
}
.cid-rVSd0YVrou .card:hover img {
  filter: blur(3px);
}
.cid-rVSd0YVrou .card:hover .mbr-iconfont {
  opacity: 1;
}
.cid-rVSd0YVrou .title {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-rVSd0YVrou .mbr-iconfont {
    opacity: 1;
  }
  .cid-rVSd0YVrou img {
    filter: blur(3px);
  }
}
.cid-rQM9ESelSI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #223558;
}
.cid-rQM9ESelSI .mbr-section-subtitle {
  color: #767676;
}
.cid-rQM9ESelSI .btn {
  margin: 0 0 .5rem 0;
}
.cid-rQM9ESelSI H2 {
  text-align: center;
  color: #ffffff;
}
.cid-rX03JMG9a9 {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rX03JMG9a9 .images-container.container-fluid {
  padding: 0;
}
.cid-rX03JMG9a9 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rX03JMG9a9 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rX03JMG9a9 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rX03JMG9a9 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rX03JMG9a9 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rX03JMG9a9 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rX03JMG9a9 .img-item {
    width: 100% !important;
  }
  .cid-rX03JMG9a9 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rR4UAaJMxO {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rR4UAaJMxO P {
  color: #767676;
}
.cid-rSM8Mo4FOC {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #223558;
}
@media (max-width: 767px) {
  .cid-rSM8Mo4FOC .content {
    text-align: center;
  }
  .cid-rSM8Mo4FOC .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rSM8Mo4FOC .img-logo img {
  height: 6rem;
}
.cid-rSM8Mo4FOC .form-group,
.cid-rSM8Mo4FOC .input-group-btn {
  padding: 0;
}
.cid-rSM8Mo4FOC .form-control {
  font-size: .75rem;
  text-align: center;
  min-width: 150px;
}
.cid-rSM8Mo4FOC .input-group-btn .btn {
  padding: .75rem 1.5625rem !important;
  margin-left: .625rem;
  text-transform: none;
  color: #fff;
  text-align: center;
}
.cid-rSM8Mo4FOC .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rSM8Mo4FOC .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-rSM8Mo4FOC .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rSM8Mo4FOC .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rSM8Mo4FOC .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rSM8Mo4FOC .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .cid-rSM8Mo4FOC .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rSM8Mo4FOC .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-rSM8Mo4FOC .form-group {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-rSM8Mo4FOC .foot-logo {
    text-align: center !important;
  }
  .cid-rSM8Mo4FOC .foot-title {
    text-align: center !important;
  }
  .cid-rSM8Mo4FOC .mbr-text {
    text-align: center !important;
  }
  .cid-rSM8Mo4FOC .form-group {
    margin: 0;
  }
}
.cid-rSM8Mo4FOC .mbr-links-column {
  color: #ffffff;
}
.cid-rQLWmo9xJt .navbar {
  padding: .5rem 0;
  background: #223558;
  transition: none;
  min-height: 77px;
}
.cid-rQLWmo9xJt .navbar-dropdown.bg-color.transparent.opened {
  background: #223558;
}
.cid-rQLWmo9xJt a {
  font-style: normal;
}
.cid-rQLWmo9xJt .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rQLWmo9xJt .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rQLWmo9xJt .nav-item:focus,
.cid-rQLWmo9xJt .nav-link:focus {
  outline: none;
}
.cid-rQLWmo9xJt .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rQLWmo9xJt .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rQLWmo9xJt .menu-logo {
  margin-right: auto;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rQLWmo9xJt .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rQLWmo9xJt .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rQLWmo9xJt .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rQLWmo9xJt .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rQLWmo9xJt .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rQLWmo9xJt .dropdown .dropdown-menu {
  background: #223558;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rQLWmo9xJt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rQLWmo9xJt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rQLWmo9xJt .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rQLWmo9xJt .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rQLWmo9xJt .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rQLWmo9xJt .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rQLWmo9xJt .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rQLWmo9xJt .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rQLWmo9xJt .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rQLWmo9xJt .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rQLWmo9xJt .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rQLWmo9xJt button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rQLWmo9xJt button.navbar-toggler:focus {
  outline: none;
}
.cid-rQLWmo9xJt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rQLWmo9xJt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rQLWmo9xJt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rQLWmo9xJt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rQLWmo9xJt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rQLWmo9xJt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQLWmo9xJt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rQLWmo9xJt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rQLWmo9xJt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQLWmo9xJt .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rQLWmo9xJt .collapsed .btn {
  display: -webkit-flex;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse.collapsing,
.cid-rQLWmo9xJt .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rQLWmo9xJt .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rQLWmo9xJt .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rQLWmo9xJt .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rQLWmo9xJt .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rQLWmo9xJt .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-rQLWmo9xJt .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-rQLWmo9xJt .collapsed button.navbar-toggler {
  display: block;
}
.cid-rQLWmo9xJt .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rQLWmo9xJt .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rQLWmo9xJt .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rQLWmo9xJt .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rQLWmo9xJt .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rQLWmo9xJt .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-rQLWmo9xJt .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rQLWmo9xJt img {
    height: 3.8rem !important;
  }
  .cid-rQLWmo9xJt .btn {
    display: -webkit-flex;
  }
  .cid-rQLWmo9xJt button.navbar-toggler {
    display: block;
  }
  .cid-rQLWmo9xJt .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rQLWmo9xJt .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rQLWmo9xJt .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rQLWmo9xJt .navbar-collapse.collapsing,
  .cid-rQLWmo9xJt .navbar-collapse.show {
    display: block !important;
  }
  .cid-rQLWmo9xJt .navbar-collapse.collapsing .navbar-nav,
  .cid-rQLWmo9xJt .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rQLWmo9xJt .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rQLWmo9xJt .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rQLWmo9xJt .navbar-collapse.collapsing .navbar-buttons,
  .cid-rQLWmo9xJt .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rQLWmo9xJt .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rQLWmo9xJt .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rQLWmo9xJt .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rQLWmo9xJt .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rQLWmo9xJt .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rQLWmo9xJt .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rQLWmo9xJt .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rQLWmo9xJt .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rQLWmo9xJt .nav-link:hover,
.cid-rQLWmo9xJt .dropdown-item:hover {
  color: #f7ed4a !important;
}
.cid-sEtl5H5S8N {
  padding-top: 135px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-sEtl5H5S8N .back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background-color: #ffffff;
}
.cid-sEtl5H5S8N img {
  width: 100%;
}
.cid-sEtl5H5S8N p {
  margin-top: 6rem;
}
.cid-sEtl5H5S8N .content-wrapper {
  max-width: 750px;
  margin: auto;
  position: relative;
  padding: 0 2rem;
}
.cid-sEtl5H5S8N .content-wrapper {
  padding-top: 6rem;
}
.cid-sEtl5H5S8N h4 {
  position: absolute;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 6rem;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  bottom: 0;
}
@media (max-width: 1200px) {
  .cid-sEtl5H5S8N .content-wrapper {
    padding-top: 0rem;
  }
  .cid-sEtl5H5S8N p {
    margin-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-sEtl5H5S8N .back {
    width: 100%;
    height: 75%;
  }
  .cid-sEtl5H5S8N .content-wrapper {
    padding: 0 3rem;
    padding-top: 4rem;
  }
  .cid-sEtl5H5S8N p {
    margin-top: 4rem;
  }
}
.cid-sEtl5H5S8N .content-wrapper {
  padding-right: 8rem;
}
@media (max-width: 767px) {
  .cid-sEtl5H5S8N .content-wrapper {
    padding: 0rem;
    padding-top: 4rem;
  }
  .cid-sEtl5H5S8N .content-wrapper {
    padding-right: 3rem;
  }
  .cid-sEtl5H5S8N h4 {
    right: 2rem;
  }
}
.cid-sEtl5H5S8N .mbr-text,
.cid-sEtl5H5S8N .mbr-section-btn {
  text-align: center;
  color: #223558;
}
.cid-sEtl5H5S8N H1 {
  color: #223558;
}
.cid-sEtl5H5S8N H3 {
  color: #223558;
}
.cid-sEtp8ApieN {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
