.vs-double-card-it {
    background-color: #f1f1f1;
    padding: 60px 0;
  }

  .vs-double-card-it h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
  }

  .custom-split-card {
    width: 100%;
    max-width: 320px;
    height: 460px !important;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 25px;
    border: none;
    position: relative;
  }

  .custom-split-card,
  .custom-split-card * {
    box-sizing: border-box;
  }

  .custom-split-card__default,
  .custom-split-card__expanded-view {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;

    transition: opacity .35s ease, visibility .35s ease;
  }

  .custom-split-card__default {
    display: flex;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }

  .custom-split-card__expanded-view {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 1.5rem;
    padding-bottom: 3rem;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
  }

  .custom-split-card.is-expanded .custom-split-card__default {
    opacity: 0;
    visibility: hidden;
    z-index: 1;
  }

  .custom-split-card.is-expanded .custom-split-card__expanded-view {
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }

  .custom-split-card__media {
    flex: 0 0 50%;
    height: 50%;
    overflow: hidden;
    min-height: 0;
  }

  .custom-split-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .custom-split-card__body {
    flex: 0 0 50%;
    height: 50%;
    padding: 1.5rem;
    padding-bottom: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
  }

  .custom-split-card__summary {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
  }

  .custom-split-card__body h5 {
    font-size: 16px;
    font-style: italic;
  }

  .custom-split-card__body>.custom-split-card__summary>p {
    font-size: 26px;
    color: #000 !important;
    font-weight: lighter;
  }

  .custom-split-card__expanded-content {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
  }

  .custom-split-card__expanded-view p {
    margin: 0;
    font-size: 21px;
    line-height: 1.4;
    color: #000;
  }

  .custom-split-card__toggle {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background-color: #000 !important;
    border-color: #000 !important;
  }

  .custom-split-card__toggle:hover {
    background-color: #000 !important;
    outline: none;
  }

  .vs-double-card-it .btn-cta a {
    background-color: #ED002F;
    color: #fff;
    text-transform: none !important;
    font-weight: 400 !important;
    padding: 20px 50px !important;
    border-radius: 50px !important;
  }