.container {
    max-width: 1440px;
    margin: 0 auto;
  }
  
  .card-pretitle {
    margin-top: 0;
    height: 36px;
  }
  
  .card-title{
    margin-top: 0;
    height: 86px
  }
  
  .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: 1.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: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .1);
    z-index: 3;
    background: #fff !important;
  }

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

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

  .vs-icon {
    font-size: 20px;
    line-height: 1;
    color: #000;
  }

  .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;
    }
  }
