body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.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.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #b22b35 !important;
}
.bg-success {
  background-color: #522c67 !important;
}
.bg-info {
  background-color: #ffbf4f !important;
}
.bg-warning {
  background-color: #5ec049 !important;
}
.bg-danger {
  background-color: #338ba0 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #b22b35 !important;
  border-color: #b22b35 !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: #6c1a20 !important;
  border-color: #6c1a20 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #6c1a20 !important;
  border-color: #6c1a20 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #b22b35 !important;
  border-color: #b22b35 !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: #6c1a20 !important;
  border-color: #6c1a20 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #6c1a20 !important;
  border-color: #6c1a20 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffbf4f !important;
  border-color: #ffbf4f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #f79d00 !important;
  border-color: #f79d00 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #f79d00 !important;
  border-color: #f79d00 !important;
}
.btn-success,
.btn-success:active {
  background-color: #522c67 !important;
  border-color: #522c67 !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: #22122a !important;
  border-color: #22122a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #22122a !important;
  border-color: #22122a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #5ec049 !important;
  border-color: #5ec049 !important;
  color: #ffffff !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: #3d842e !important;
  border-color: #3d842e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #3d842e !important;
  border-color: #3d842e !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #338ba0 !important;
  border-color: #338ba0 !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: #1e525e !important;
  border-color: #1e525e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e525e !important;
  border-color: #1e525e !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: #b22b35;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #6c1a20 !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: #b22b35 !important;
  border-color: #b22b35 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #b22b35;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #6c1a20 !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: #b22b35 !important;
  border-color: #b22b35 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffbf4f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #f79d00 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #ffbf4f !important;
  border-color: #ffbf4f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #522c67;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #22122a !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: #522c67 !important;
  border-color: #522c67 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #5ec049;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #3d842e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #5ec049 !important;
  border-color: #5ec049 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #338ba0;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #1e525e !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: #338ba0 !important;
  border-color: #338ba0 !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: #b22b35 !important;
}
.text-secondary {
  color: #b22b35 !important;
}
.text-success {
  color: #522c67 !important;
}
.text-info {
  color: #ffbf4f !important;
}
.text-warning {
  color: #5ec049 !important;
}
.text-danger {
  color: #338ba0 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #60171d !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #60171d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #190d20 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #e89400 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #38792a !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #1a4853 !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: #b22b35;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffbf4f;
}
.alert-warning {
  background-color: #5ec049;
}
.alert-danger {
  background-color: #338ba0;
}
.mbr-gallery-filter li.active .btn {
  background-color: #b22b35;
  border-color: #b22b35;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #b22b35;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e07d84;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #975ab9;
}
.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: #b2e1a8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #7dc4d6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #b22b35 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #b22b35;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #b22b35;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #b22b35;
}
.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: #b22b35;
  border-bottom-color: #b22b35;
}
.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: #b22b35 !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: #b22b35 !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='%23b22b35' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-vhmyCFjY6e {
  padding: 60px;
  background-color: #000000;
}
@media (max-width: 768px) {
  .cid-vhmyCFjY6e {
    padding: 26px;
  }
}
.cid-vhmyCFjY6e .container-fluid {
  padding: 0 60px;
  padding: 60px;
}
@media (max-width: 768px) {
  .cid-vhmyCFjY6e .container-fluid {
    padding: 26px;
  }
}
@media (max-width: 768px) {
  .cid-vhmyCFjY6e .container-fluid {
    padding: 26px;
  }
}
@media (max-width: 768px) {
  .cid-vhmyCFjY6e .container {
    padding: 26px;
  }
}
.cid-vhmyCFjY6e .container-fluid,
.cid-vhmyCFjY6e .container {
  background-image: url("../../../assets/images/mbr-5.webp");
  background-size: cover;
}
.cid-vhmyCFjY6e .container-fluid .mbr-fallback-image.disabled,
.cid-vhmyCFjY6e .container .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhmyCFjY6e .container-fluid .mbr-fallback-image,
.cid-vhmyCFjY6e .container .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhmyCFjY6e .title-wrapper {
  position: relative;
  padding-top: 35%;
}
.cid-vhmyCFjY6e .title-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-vhmyCFjY6e .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vhmyCFjY6e .title-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-vhmyCFjY6e .mbr-section-title {
  color: #ffffff;
}
.cid-vhmyCFjY6e .mbr-text {
  color: #ffffff;
}
.cid-vhmLfVBCiE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #9a0712;
}
.cid-vhmLfVBCiE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhmLfVBCiE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhmLfVBCiE .content-wrapper .title-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-vhmLfVBCiE .content-wrapper .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vhmLfVBCiE .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-vhmLfVBCiE .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-vhmLfVBCiE .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  margin-bottom: 0;
}
.cid-vhmLfVBCiE .content-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-vhmLfVBCiE .mbr-section-title {
  color: #111111;
}
.cid-vhmLfVBCiE .mbr-section-subtitle {
  color: #ff6d99;
}
.cid-vhmLfVBCiE .mbr-text,
.cid-vhmLfVBCiE .text-wrapper {
  color: #ffffff;
  text-align: center;
}
.cid-vhmLfVBCiE .mbr-section-title,
.cid-vhmLfVBCiE .mbr-section-btn {
  text-align: center;
  color: #d5d5d5;
}
.cid-vgZx10kbZC {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vgZx10kbZC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgZx10kbZC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgZx10kbZC .title-wrapper {
  border-top: 1px solid #e0e0e0;
  padding-top: 90px;
}
@media (max-width: 992px) {
  .cid-vgZx10kbZC .title-wrapper {
    padding-top: 30px;
  }
}
.cid-vgZx10kbZC .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vgZx10kbZC .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-vgZx10kbZC .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 220px;
  max-width: 220px;
}
@media (max-width: 767px) {
  .cid-vgZx10kbZC .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vgZx10kbZC .embla__slide .slide-content {
  width: 100%;
}
.cid-vgZx10kbZC .embla__slide .slide-content:hover .item-wrapper,
.cid-vgZx10kbZC .embla__slide .slide-content:focus .item-wrapper {
  background-color: #e4ed64;
}
.cid-vgZx10kbZC .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
}
.cid-vgZx10kbZC .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vgZx10kbZC .embla__button--next,
.cid-vgZx10kbZC .embla__button--prev {
  display: flex;
}
.cid-vgZx10kbZC .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-vgZx10kbZC .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-vgZx10kbZC .embla__button.embla__button--prev {
  left: 0;
}
.cid-vgZx10kbZC .embla__button.embla__button--next {
  right: 0;
}
.cid-vgZx10kbZC .embla {
  position: relative;
  width: 100%;
}
.cid-vgZx10kbZC .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-vgZx10kbZC .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vgZx10kbZC .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vgZx10kbZC .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vgZx10kbZC .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vgZx10kbZC .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-vjleOdNirL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/gd-1.webp");
}
.cid-vjleOdNirL .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vjleOdNirL .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vjleOdNirL .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-vhmzHd79bW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-vhmzHd79bW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhmzHd79bW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhmzHd79bW .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-vhmzHd79bW .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vhmzHd79bW .embla__slide .slide-content {
  width: 100%;
}
.cid-vhmzHd79bW .embla__slide .slide-content .item-wrapper {
  position: relative;
  height: 100%;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  border: 1px solid #303030;
  will-change: transform;
}
@media (max-width: 1740px) {
  .cid-vhmzHd79bW .embla__slide .slide-content .item-wrapper {
    min-height: 700px;
  }
}
@media (max-width: 1440px) {
  .cid-vhmzHd79bW .embla__slide .slide-content .item-wrapper {
    min-height: 620px;
  }
}
@media (max-width: 1200px) {
  .cid-vhmzHd79bW .embla__slide .slide-content .item-wrapper {
    min-height: 520px;
  }
}
@media (max-width: 992px) {
  .cid-vhmzHd79bW .embla__slide .slide-content .item-wrapper {
    min-height: 350px;
  }
}
.cid-vhmzHd79bW .embla__slide .slide-content .item-wrapper .overlay-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.cid-vhmzHd79bW .embla__slide .slide-content .item-wrapper .gradient-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(30deg, #000000 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.cid-vhmzHd79bW .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vhmzHd79bW .embla__slide .slide-content .item-wrapper .card-box {
  position: relative;
  z-index: 1;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-vhmzHd79bW .embla__slide .slide-content .item-wrapper .card-box {
    padding: 24px;
  }
}
.cid-vhmzHd79bW .embla__slide .slide-content .item-wrapper .card-box .item-title {
  margin-bottom: 4px;
}
.cid-vhmzHd79bW .embla__slide .slide-content .item-wrapper .card-box .item-tag {
  margin-bottom: 0;
}
.cid-vhmzHd79bW .embla__slide .slide-content .item-wrapper .card-box .text-wrapper .item-text {
  margin-top: 24px;
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-vhmzHd79bW .embla__slide .slide-content .item-wrapper .card-box .text-wrapper .item-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-vhmzHd79bW .embla__slide .slide-content .item-wrapper .card-box .text-wrapper .item-text {
    width: 100%;
  }
}
.cid-vhmzHd79bW .embla__slide .slide-content .item-wrapper .card-box .mbr-section-btn {
  margin-bottom: -9.6px;
  margin-top: 14px;
}
.cid-vhmzHd79bW .embla__button--next,
.cid-vhmzHd79bW .embla__button--prev {
  display: flex;
}
.cid-vhmzHd79bW .embla__button {
  bottom: 0;
  width: 46px;
  height: 46px;
  font-size: 20px;
  background-color: transparent !important;
  background-image: linear-gradient(180deg, #8c8c8c -200%, transparent 60%) !important;
  color: #ffffff !important;
  border: 1px solid #303030 !important;
  border-radius: 100% !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vhmzHd79bW .embla__button:hover.embla__button--prev {
  transform: translateX(3px);
}
.cid-vhmzHd79bW .embla__button:hover.embla__button--next {
  transform: translateX(-3px);
}
.cid-vhmzHd79bW .embla__button:disabled {
  opacity: .5 !important;
}
.cid-vhmzHd79bW .embla__button:disabled.embla__button--prev {
  transform: none;
}
.cid-vhmzHd79bW .embla__button:disabled.embla__button--next {
  transform: none;
}
.cid-vhmzHd79bW .embla__button.embla__button--prev {
  transition: all 0.3s;
  left: 0;
}
.cid-vhmzHd79bW .embla__button.embla__button--next {
  transition: all 0.3s;
  right: 0;
}
.cid-vhmzHd79bW .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .cid-vhmzHd79bW .embla {
    padding-bottom: 4rem;
  }
}
.cid-vhmzHd79bW .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-vhmzHd79bW .embla__viewport {
    padding: 0;
  }
}
.cid-vhmzHd79bW .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vhmzHd79bW .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vhmzHd79bW .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vhmzHd79bW .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vhmzHd79bW .item-title {
  color: #ffffff;
}
.cid-vhmzHd79bW .item-tag {
  color: #8c8c8c;
}
.cid-vhmzHd79bW .item-text {
  color: #8c8c8c;
}
.cid-vjlgrZN0Sv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/portkeys.webp");
}
.cid-vjlgrZN0Sv .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vjlgrZN0Sv .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vjlgrZN0Sv .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-vhrTBMCu0a {
  padding-top: 4rem;
  padding-bottom: 5rem;
  align-items: flex-end;
  background-color: #000000;
}
.cid-vhrTBMCu0a .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhrTBMCu0a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhrTBMCu0a .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-vhrTBMCu0a .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-vhrTBMCu0a .content-wrapper .image-wrapper {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-vhrTBMCu0a .content-wrapper .image-wrapper {
    margin-top: 22px;
  }
}
.cid-vhrTBMCu0a .content-wrapper .image-wrapper img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
.cid-vhrTBMCu0a .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vjLzQcmDVl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  align-items: flex-end;
  background-color: #000000;
}
.cid-vjLzQcmDVl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjLzQcmDVl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjLzQcmDVl .content-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-vjLzQcmDVl .content-wrapper .mbr-section-title {
    margin-bottom: 48px;
  }
}
.cid-vjLzQcmDVl .content-wrapper .image-wrapper {
  margin-top: 32px;
}
@media (max-width: 992px) {
  .cid-vjLzQcmDVl .content-wrapper .image-wrapper {
    margin-top: 22px;
  }
}
.cid-vjLzQcmDVl .content-wrapper .image-wrapper img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}
.cid-vjLzQcmDVl .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vjlh5dj4lu {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/angel-photo-2.webp");
}
.cid-vjlh5dj4lu .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vjlh5dj4lu .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-vjlh5dj4lu .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-vjlheE6wyi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-vjlheE6wyi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vjlheE6wyi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vjlheE6wyi .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-vjlheE6wyi .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vjlheE6wyi .embla__slide .slide-content {
  width: 100%;
}
.cid-vjlheE6wyi .embla__slide .slide-content .item-wrapper {
  position: relative;
  height: 100%;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  border: 1px solid #303030;
  will-change: transform;
}
@media (max-width: 1740px) {
  .cid-vjlheE6wyi .embla__slide .slide-content .item-wrapper {
    min-height: 700px;
  }
}
@media (max-width: 1440px) {
  .cid-vjlheE6wyi .embla__slide .slide-content .item-wrapper {
    min-height: 620px;
  }
}
@media (max-width: 1200px) {
  .cid-vjlheE6wyi .embla__slide .slide-content .item-wrapper {
    min-height: 520px;
  }
}
@media (max-width: 992px) {
  .cid-vjlheE6wyi .embla__slide .slide-content .item-wrapper {
    min-height: 350px;
  }
}
.cid-vjlheE6wyi .embla__slide .slide-content .item-wrapper .overlay-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.cid-vjlheE6wyi .embla__slide .slide-content .item-wrapper .gradient-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(30deg, #000000 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.cid-vjlheE6wyi .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vjlheE6wyi .embla__slide .slide-content .item-wrapper .card-box {
  position: relative;
  z-index: 1;
  padding: 40px;
}
@media (max-width: 992px) {
  .cid-vjlheE6wyi .embla__slide .slide-content .item-wrapper .card-box {
    padding: 24px;
  }
}
.cid-vjlheE6wyi .embla__slide .slide-content .item-wrapper .card-box .item-title {
  margin-bottom: 4px;
}
.cid-vjlheE6wyi .embla__slide .slide-content .item-wrapper .card-box .item-tag {
  margin-bottom: 0;
}
.cid-vjlheE6wyi .embla__slide .slide-content .item-wrapper .card-box .text-wrapper .item-text {
  margin-top: 24px;
  display: inline-block;
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-vjlheE6wyi .embla__slide .slide-content .item-wrapper .card-box .text-wrapper .item-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-vjlheE6wyi .embla__slide .slide-content .item-wrapper .card-box .text-wrapper .item-text {
    width: 100%;
  }
}
.cid-vjlheE6wyi .embla__slide .slide-content .item-wrapper .card-box .mbr-section-btn {
  margin-bottom: -9.6px;
  margin-top: 14px;
}
.cid-vjlheE6wyi .embla__button--next,
.cid-vjlheE6wyi .embla__button--prev {
  display: flex;
}
.cid-vjlheE6wyi .embla__button {
  bottom: 0;
  width: 46px;
  height: 46px;
  font-size: 20px;
  background-color: transparent !important;
  background-image: linear-gradient(180deg, #8c8c8c -200%, transparent 60%) !important;
  color: #ffffff !important;
  border: 1px solid #303030 !important;
  border-radius: 100% !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
.cid-vjlheE6wyi .embla__button:hover.embla__button--prev {
  transform: translateX(3px);
}
.cid-vjlheE6wyi .embla__button:hover.embla__button--next {
  transform: translateX(-3px);
}
.cid-vjlheE6wyi .embla__button:disabled {
  opacity: .5 !important;
}
.cid-vjlheE6wyi .embla__button:disabled.embla__button--prev {
  transform: none;
}
.cid-vjlheE6wyi .embla__button:disabled.embla__button--next {
  transform: none;
}
.cid-vjlheE6wyi .embla__button.embla__button--prev {
  transition: all 0.3s;
  left: 0;
}
.cid-vjlheE6wyi .embla__button.embla__button--next {
  transition: all 0.3s;
  right: 0;
}
.cid-vjlheE6wyi .embla {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .cid-vjlheE6wyi .embla {
    padding-bottom: 4rem;
  }
}
.cid-vjlheE6wyi .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-vjlheE6wyi .embla__viewport {
    padding: 0;
  }
}
.cid-vjlheE6wyi .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vjlheE6wyi .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vjlheE6wyi .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vjlheE6wyi .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vjlheE6wyi .item-title {
  color: #ffffff;
}
.cid-vjlheE6wyi .item-tag {
  color: #8c8c8c;
}
.cid-vjlheE6wyi .item-text {
  color: #8c8c8c;
}
.cid-vhmIvq2uPl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f5f5;
}
.cid-vhmIvq2uPl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhmIvq2uPl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhmIvq2uPl .content-wrapper {
  margin-bottom: 44px;
}
@media (max-width: 992px) {
  .cid-vhmIvq2uPl .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-vhmIvq2uPl .content-wrapper .label-wrapper {
  margin-bottom: 32px;
}
.cid-vhmIvq2uPl .content-wrapper .label-wrapper .label-wrap {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background-color: #f5f5f5;
  border-top: 2px solid #ffffff;
  box-shadow: 0 8px 20px -8px #9c9c9c;
}
.cid-vhmIvq2uPl .content-wrapper .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  display: inline-block;
  margin-right: 8px;
}
.cid-vhmIvq2uPl .content-wrapper .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-vhmIvq2uPl .content-wrapper .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 60%;
  margin-bottom: 16px;
  position: relative;
  background-image: linear-gradient(-180deg, #000000, #9a0712 40%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 992px) {
  .cid-vhmIvq2uPl .content-wrapper .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-vhmIvq2uPl .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vhmIvq2uPl .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-vhmIvq2uPl .items-wrapper {
  margin: 0 -12px;
  justify-content: center;
}
.cid-vhmIvq2uPl .items-wrapper .item {
  padding: 0 12px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-vhmIvq2uPl .items-wrapper .item {
    margin-bottom: 18px;
  }
}
.cid-vhmIvq2uPl .items-wrapper .item .item-wrapper {
  height: 100%;
  background-color: #f5f5f5;
  border-top: 3px solid #9a0712;
  box-shadow: 0 8px 15px -8px #9c9c9c;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-vhmIvq2uPl .items-wrapper .item .item-wrapper {
    padding: 24px;
  }
}
.cid-vhmIvq2uPl .items-wrapper .item .item-wrapper .item-content .icon-wrapper {
  margin-bottom: 24px;
}
.cid-vhmIvq2uPl .items-wrapper .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 27px;
  background-image: linear-gradient(#000000 30%, #f5f5f5 130%);
  box-shadow: 0 8px 24px -5px #515151;
}
.cid-vhmIvq2uPl .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 10px;
}
.cid-vhmIvq2uPl .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 0;
  text-decoration: underline;
  text-decoration-color: inherit;
  cursor: pointer;
  transition: color 0.3s;
}
.cid-vhmIvq2uPl .items-wrapper .item .item-wrapper .item-content .item-text:hover,
.cid-vhmIvq2uPl .items-wrapper .item .item-wrapper .item-content .item-text:focus {
  text-decoration-color: transparent;
}
.cid-vhmIvq2uPl .mbr-label,
.cid-vhmIvq2uPl .label-wrapper {
  color: #000000;
  text-align: center;
}
.cid-vhmIvq2uPl .mbr-section-title,
.cid-vhmIvq2uPl .title-wrapper {
  color: #9a0712;
  text-align: center;
}
.cid-vhmIvq2uPl .mbr-text,
.cid-vhmIvq2uPl .text-wrapper {
  color: #515151;
  text-align: center;
}
.cid-vhmIvq2uPl .item-title {
  color: #515151;
}
.cid-vhmIvq2uPl .item-text {
  color: #000000;
}
.cid-ssGld77nMp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #9a0712;
}
.cid-ssGld77nMp .media-container-row .mbr-text {
  text-align: left;
}
.cid-vkhS06VXV3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vkhS06VXV3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkhS06VXV3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkhS06VXV3 .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vkhS06VXV3 .content-wrap {
    margin-bottom: 30px;
  }
}
.cid-vkhS06VXV3 .content-wrap .card {
  justify-content: flex-end;
}
.cid-vkhS06VXV3 .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vkhS06VXV3 .content-wrap .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vkhS06VXV3 .content-wrap .main-btn {
  margin-bottom: -9.6px;
}
.cid-vkhS06VXV3 .items-wrapper .items-wrap {
  display: grid;
  flex: 1 0 0;
  gap: 20px;
  grid-auto-rows: minmax(0px, 1fr);
  grid-template-columns: repeat(4, minmax(50px, 1fr));
  grid-template-rows: repeat(2, minmax(0px, 1fr));
  height: 1px;
  justify-content: center;
  min-height: 520px;
  overflow: visible;
  padding: 0px;
  position: relative;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vkhS06VXV3 .items-wrapper .items-wrap {
    display: block;
    min-height: auto;
    height: auto;
  }
}
.cid-vkhS06VXV3 .items-wrapper .items-wrap .image-wrap {
  overflow: hidden;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vkhS06VXV3 .items-wrapper .items-wrap .image-wrap {
    margin-top: 20px;
  }
  .cid-vkhS06VXV3 .items-wrapper .items-wrap .image-wrap:first-child {
    margin-top: 0;
  }
}
.cid-vkhS06VXV3 .items-wrapper .items-wrap .image-wrap img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .cid-vkhS06VXV3 .items-wrapper .items-wrap .image-wrap img {
    height: 300px;
  }
}
.cid-vkhS06VXV3 .items-wrapper .items-wrap .image-wrap img:hover,
.cid-vkhS06VXV3 .items-wrapper .items-wrap .image-wrap img:focus {
  transform: scale(1.08);
}
.cid-vkhS06VXV3 .items-wrapper .items-wrap .image-wrap_2 {
  grid-column: span 2;
}
.cid-vkhS06VXV3 .items-wrapper .items-wrap .image-wrap_3 {
  grid-column: 4;
  grid-row: 1 / span 2;
}
.cid-vkhS06VXV3 .items-wrapper .items-wrap .image-wrap_3 img {
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vkhS06VXV3 .items-wrapper .items-wrap .image-wrap_3 img {
    height: 300px;
  }
}
.cid-vkhS06VXV3 .mbr-section-title {
  color: #3a353e;
  text-align: justify;
}
.cid-vkhS06VXV3 .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vkhS06VXV3 .mbr-section-btn {
    text-align: left;
  }
}
