body {
  font-family: Space Grotesk;
}
.display-1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 7.8rem;
  line-height: 100%;
}
.display-1 > .mbr-iconfont {
  font-size: 9.75rem;
}
.display-2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 6rem;
  line-height: 100%;
}
.display-2 > .mbr-iconfont {
  font-size: 7.5rem;
}
.display-4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  line-height: 100%;
}
.display-4 > .mbr-iconfont {
  font-size: 1.40625rem;
}
.display-5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.7rem;
  line-height: 100%;
}
.display-5 > .mbr-iconfont {
  font-size: 3.375rem;
}
.display-7 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  line-height: 124%;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 6.24rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 5.46rem;
    font-size: calc( 3.38rem + (7.8 - 3.38) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.38rem + (7.8 - 3.38) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 4.8rem;
    font-size: calc( 2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.75rem + (6 - 2.75) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 2.16rem;
    font-size: calc( 1.595rem + (2.7 - 1.595) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.595rem + (2.7 - 1.595) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 15em;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 15em;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 15em;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 15em;
}
.bg-primary {
  background-color: #ed2d03 !important;
}
.bg-success {
  background-color: #2cc703 !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #edeb03 !important;
}
.bg-danger {
  background-color: #edb503 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ed2d03 !important;
  border-color: #ed2d03 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #971d02 !important;
  border-color: #971d02 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #971d02 !important;
  border-color: #971d02 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #1d61f1 !important;
  border-color: #1d61f1 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0b3fad !important;
  border-color: #0b3fad !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0b3fad !important;
  border-color: #0b3fad !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #2cc703 !important;
  border-color: #2cc703 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #197202 !important;
  border-color: #197202 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #197202 !important;
  border-color: #197202 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #edeb03 !important;
  border-color: #edeb03 !important;
  color: #000000 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #979602 !important;
  border-color: #979602 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #000000 !important;
  background-color: #979602 !important;
  border-color: #979602 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #edb503 !important;
  border-color: #edb503 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #977402 !important;
  border-color: #977402 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #977402 !important;
  border-color: #977402 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ed2d03;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #971d02 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ed2d03 !important;
  border-color: #ed2d03 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1d61f1;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #0b3fad !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #1d61f1 !important;
  border-color: #1d61f1 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #2cc703;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #197202 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #2cc703 !important;
  border-color: #2cc703 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #edeb03;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #979602 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #000000 !important;
  background-color: #edeb03 !important;
  border-color: #edeb03 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #edb503;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #977402 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #edb503 !important;
  border-color: #edb503 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ed2d03 !important;
}
.text-secondary {
  color: #1d61f1 !important;
}
.text-success {
  color: #2cc703 !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #edeb03 !important;
}
.text-danger {
  color: #edb503 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #881a02 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0a399e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #166301 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #888702 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #886802 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ed2d03;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #edeb03;
}
.alert-danger {
  background-color: #edb503;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ed2d03;
  border-color: #ed2d03;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ed2d03;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fec9be;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #72fc4d;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fefebe;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #feefbe;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  line-height: 100%;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.40625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ed2d03 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  line-height: 100%;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.40625rem;
}
blockquote {
  border-color: #ed2d03;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ed2d03;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ed2d03;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ed2d03;
  border-bottom-color: #ed2d03;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #ed2d03 !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: #1d61f1 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ed2d03' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  box-shadow: none;
  padding: 20px 32px;
  height: 76px;
}
.mbr-section-btn .btn:hover,
.mbr-section-btn-main .btn:hover,
.mbr-section-btn .btn:focus,
.mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.mbr-section-btn-main .btn {
  padding: 20px;
  height: auto;
}
.mbr-background-video {
  padding: 0;
}
.cid-tzrlqeVNpJ {
  background-color: #f6f6f6 !important;
  border: 18px solid #f6f6f6;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-tzrlqeVNpJ {
    border: 8px solid #f6f6f6;
    margin-top: -8px;
  }
}
.cid-tzrlqeVNpJ .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-tzrlqeVNpJ section .mbr-background-video-preview {
  border-radius: 1.2rem !important;
}
.cid-tzrlqeVNpJ .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
}
.cid-tzrlqeVNpJ .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzrlqeVNpJ .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/stockcake-red-and-blue-abstract-digital-images-and-photos-1761363767-1344x768.jpg");
}
@media (max-width: 992px) {
  .cid-tzrlqeVNpJ .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-tzrlqeVNpJ .title-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tzrlqeVNpJ .title-wrapper {
    margin-bottom: 40px;
  }
}
.cid-tzrlqeVNpJ .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-tzrlqeVNpJ .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tzrlqeVNpJ .title-wrapper .title-wrap .mbr-desc {
  margin-bottom: 62px;
}
@media (max-width: 992px) {
  .cid-tzrlqeVNpJ .title-wrapper .title-wrap .mbr-desc {
    margin-bottom: 20px;
  }
}
.cid-tzrlqeVNpJ .image-wrapper img {
  height: 700px;
  object-fit: cover;
  border-radius: 1.2em;
}
@media (max-width: 992px) {
  .cid-tzrlqeVNpJ .image-wrapper img {
    height: 300px;
  }
}
.cid-tzrlqeVNpJ .mbr-section-title {
  color: #ffffff;
}
.cid-tzrlqeVNpJ .mbr-desc {
  color: #ffffff;
  text-align: center;
}
.cid-tzrlqeVNpJ .mbr-section-title,
.cid-tzrlqeVNpJ .mbr-section-btn {
  text-align: center;
}
.cid-tzrluXDL7P {
  background-color: #f6f6f6 !important;
  border: 18px solid #f6f6f6;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-tzrluXDL7P {
    border: 8px solid #f6f6f6;
    margin-top: -8px;
  }
}
.cid-tzrluXDL7P .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-tzrluXDL7P .mbr-overlay {
  border-radius: 1.2rem;
}
.cid-tzrluXDL7P .row {
  position: relative;
  padding: 0 28px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ed2c03;
}
.cid-tzrluXDL7P .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzrluXDL7P .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzrluXDL7P .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-tzrluXDL7P .title-wrapper .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-tzrluXDL7P .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-tzrluXDL7P .card {
  padding: 0 6px;
}
@media (max-width: 992px) {
  .cid-tzrluXDL7P .card {
    padding: 0 12px;
    margin-bottom: 24px;
  }
}
.cid-tzrluXDL7P .card .card-wrapper {
  padding: 26px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 2em;
}
@media (max-width: 992px) {
  .cid-tzrluXDL7P .card .card-wrapper {
    padding: 30px 15px;
    margin-bottom: 16px;
    min-height: 300px;
  }
}
.cid-tzrluXDL7P .card .card-wrapper .icon-wrapper .mbr-iconfont {
  font-size: 72px;
  display: inline-flex;
  color: #ed2c03;
}
.cid-tzrluXDL7P .card .card-wrapper .mbr-card-title {
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .cid-tzrluXDL7P .card .card-wrapper .mbr-card-title {
    margin-bottom: 15px;
  }
}
.cid-tzrluXDL7P .card .card-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tzrluXDL7P .mbr-section-title {
  color: #ffffff;
}
.cid-tzrluXDL7P .mbr-card-title {
  color: #ed2c03;
}
.cid-tzrluXDL7P .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tzrluXDL7P .mbr-card-title,
.cid-tzrluXDL7P .icon-wrapper {
  text-align: center;
}
.cid-v2s9237v0A {
  background-color: #f6f6f6 !important;
  border: 18px solid #f6f6f6;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-v2s9237v0A {
    border: 8px solid #f6f6f6;
    margin-top: -8px;
  }
}
.cid-v2s9237v0A .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-v2s9237v0A .mbr-overlay {
  border-radius: 1.2rem;
}
.cid-v2s9237v0A .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #111111;
}
.cid-v2s9237v0A .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2s9237v0A .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v2s9237v0A .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-v2s9237v0A .title-wrapper .mbr-section-title {
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .cid-v2s9237v0A .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-v2s9237v0A .title-wrapper .link-wrap {
  display: block;
}
.cid-v2s9237v0A .title-wrapper .link-wrap .mbr-link {
  position: relative;
  display: inline-flex;
  margin-bottom: 0;
}
.cid-v2s9237v0A .title-wrapper .link-wrap .mbr-link:hover::before {
  width: 100%;
}
.cid-v2s9237v0A .title-wrapper .link-wrap .mbr-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: #ed2c03;
  transition: all 0.3s ease-out;
}
.cid-v2s9237v0A .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-v2s9237v0A .mbr-link {
  color: #ed2c03;
}
.cid-v2s9237v0A .mbr-link,
.cid-v2s9237v0A .link-wrap {
  text-align: center;
}
.cid-tzrlE8s9mt {
  background-color: #f6f6f6 !important;
  border: 18px solid #f6f6f6;
  margin-top: -18px;
}
@media (max-width: 768px) {
  .cid-tzrlE8s9mt {
    border: 8px solid #f6f6f6;
    margin-top: -8px;
  }
}
.cid-tzrlE8s9mt .container-fluid {
  padding: 0;
  margin: 0;
}
.cid-tzrlE8s9mt .mbr-overlay {
  border-radius: 1.2rem;
}
.cid-tzrlE8s9mt .row {
  position: relative;
  padding: 0 18px 0;
  margin: 0;
  justify-content: center;
  border-radius: 1.2em;
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #535353;
}
.cid-tzrlE8s9mt .row .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzrlE8s9mt .row .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tzrlE8s9mt .row {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-tzrlE8s9mt .copyright-wrap .copyright {
  opacity: .5;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-tzrlE8s9mt .copyright-wrap .copyright {
    margin-bottom: 32px;
  }
}
.cid-tzrlE8s9mt .title-wrap {
  text-align: right;
}
.cid-tzrlE8s9mt .title-wrap a {
  display: inline-flex;
  align-items: center;
}
.cid-tzrlE8s9mt .title-wrap a .mbr-section-title {
  opacity: .5;
  margin-left: 16px;
  margin-bottom: 0;
}
.cid-tzrlE8s9mt .title-wrap a img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: .5em;
}
.cid-tzrlE8s9mt .mbr-section-title {
  color: #ffffff;
}
.cid-tzrlE8s9mt .copyright {
  color: #ffffff;
}
