.two-column-product-info-section {
  @media (min-width: 768px) {
      padding: 8rem 0 !important;
  }
  @media (min-width: 1400px) {
    .container {
        max-width: 1350px;
    }
  }
  .section-title {
    text-align: center;
    margin-bottom: 60px;
  }

  .cards-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

    .product-card {
      background:  #F7F7F7;
      border-radius: 10px;
      padding: 60px 225px 60px 40px;
      position: relative;
      flex-basis: 650px;
      max-width: 100%;

      @media(max-width:767px) {
        padding: 40px 225px 40px 40px;
      }

      @media(max-width:575px) {
        padding: 30px;
        overflow: hidden;
        max-width: 350px;
      }

      .card-title {
        color: var(--color-dark-gray);
        font-size: 24px;
        font-family: 'Simula', sans-serif;
        line-height: 32px;
        @media(max-width:767px){
          white-space: nowrap;
        }
      }

      .card-subtitle {
        font-size: 12px;
        line-height: 20px;
        color: #535353;
      }

      .card-price-block {
        font-size: 16px;
        line-height: 24px;

        .card-price {
          color: #535353;
          margin-right: 4px;
        }
        .strike-through {
          text-decoration: line-through;
        }

        .green-text {
          font-weight: 700;
          color: #176F4F;
          @media(max-width:767px){
            display: block;
          }
        }
      }

      .card-billing-duration {
        font-size: 12px;
        line-height: 20px;
        color: #535353;
      }

      .comparison-items {
        margin-top: 40px;

        @media(max-width: 575px) {
          padding-right: 70px;
        }

        .comparison-item {
          font-style: italic;
          font-family: 'Simula', sans-serif;
          font-size: 16px;
          line-height: 24px;
          color: #535353;
          border-top: solid 1px #bbb;
          padding: 16px 0;
          &:last-child {
            border-bottom: solid 1px #bbb;
          }

          @media(max-width: 575px) {
            font-size: 15px;
          }
        }
      }

      .product-image-wrapper {
        position: absolute;
        bottom: 0;
        right: 0;

        @media(max-width:575px) {
          right: -120px;
          .card-image {
            width: 90%;
          }
        
        }
      }

        
      .card-button {
        margin-top: 40px;
        background-color: var(--color-dark-gray);
        color: white;
        border-radius: 5px;
        height: 48px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        min-width: 188px;
        font-size: 12px;
        line-height: 20px;
        letter-spacing: 1.6px;
        text-align: center;
        text-transform: uppercase;

        @media(max-width:575px) {
          width: 100%;
          z-index: 10;
          position: relative;
        }

      }
      
    }
    
  }

  .bottom-disclaimer {
    margin-top: 20px;
    p {
      font-size: 12px;
      line-height: 18px;
    }
  }
}

.dual-product-slide {
  display: none;
  transition: all 1s ease;
  &.active {
    display: block;
  }
}

.image-disclaimer {
  width: 100%;
  font-style: italic;
  font-size: 10px;
  color: #737373;
  text-align: center;
  /* margin-top: 2rem; */
}

.footer-disclaimer > p {
  font-size: 10px;
  line-height: 16px;
  color: #535353;
}