.vs-cards-block {
    background-color: #f1f1f1;
    padding: 60px 0;
    --vs-peek: 56px;
  }

  .vs-cards-block h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
  }

  .vs-card {
    position: relative;
    overflow: hidden;
    height: 460px;
    border-radius: 20px;
    border: none;
  }

  .vs-card .card-body {
    position: relative;
    height: 100%;
    padding: 0;
  }

  .vs-card-default,
  .vs-card-expanded {
    position: absolute;
    inset: 0;
    padding: 2.25rem;
    transition: opacity 280ms ease, visibility 280ms ease;
  }

  .vs-card-default {
    display: flex;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
  }

  .vs-card-expanded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
    background: #fff;
  }

  .vs-card.is-expanded .vs-card-default {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .vs-card.is-expanded .vs-card-expanded {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .vs-card-default h4 {
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    color: #fff;
  }

  .vs-card-default h5 {
    font-size: 24px;
    font-weight: 100;
    color: #fff;
  }

  .vs-card-expanded p {
    font-size: 21px;
  }

  .vs-toggle {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 38px;
    height: 38px;
    padding: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    line-height: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff !important;
    z-index: 10;
  }

  .vs-card.is-expanded .vs-toggle {
    background: #f1f1f1 !important;
  }

  .vs-card .card-body button:focus {
    outline: none;
  }

  .vs-icon {
    position: relative;
    width: 18px;
    height: 18px;
    display: inline-block;
    font-size: 0;
    line-height: 0;
    color: transparent;
  }

  .vs-icon::before,
  .vs-icon::after {
    content: "";
    position: absolute;
    background-color: #000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2px;
  }

  .vs-icon::before {
    width: 16px;
    height: 2px;
  }

  .vs-icon::after {
    width: 2px;
    height: 16px;
  }

  .vs-card.is-expanded .vs-icon::after {
    display: none;
  }

  .vs-card--cta .vs-card-default {
    justify-content: flex-end;
    align-items: center;
    text-align: center;
  }

  .vs-card--cta h5 {
    font-size: 21px;
    font-weight: 400;
    padding-bottom: 2rem;
  }

  .vs-card--cta a {
    margin-bottom: 3rem;
    background: #fff;
    color: #8C0C0C;
    padding: 20px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
  }

  .vs-carousel-viewport {
    overflow: hidden;
    width: 100%;
    padding: 0 .5rem;
  }

  .vs-carousel-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    transition: transform 300ms ease;
    will-change: transform;
    touch-action: pan-y;
  }

  .vs-slide {
    flex: 0 0 calc(100% - var(--vs-peek));
    max-width: calc(100% - var(--vs-peek));
  }

  .vs-carousel .vs-card {
    height: 460px;
    border-radius: 20px;
  }

  .vs-carousel .funnel-cta {
    max-width: 300px;
    margin: 0 auto;
  }

  .vs-carousel .funnel-cta a {
    background-color: #E22338;
    width: 100%;
    padding: 20px 30px;
    color: #fff;
    border-radius: 50px;
    margin-top: 2rem;
    text-align: center;
  }

  @media (min-width:768px) and (max-width:991.98px) {
    .vs-cards-block {
      --vs-peek: 64px;
    }

    .vs-slide {
      flex: 0 0 calc(50% - (var(--vs-peek)/2));
      max-width: calc(50% - (var(--vs-peek)/2));
    }
  }

  @media (max-width:360px) {
    .vs-cards-block {
      --vs-peek: 42px;
    }
  }