.sales-landing-card-app {
    font-family: sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
  }
  #toggle-card-bottom {
    display: none;
  }
  
  .toggle-card-bottom-label {
    width: 100%;
    position: absolute;
    height: 68px;
    bottom: 0;
    left: 0;
    z-index: 2;
    transition: transform 500ms ease;
  }
  
  .sales-landing-card-header-exp {
    font-style: italic;
    font-weight: 100;
    font-size: 9px;
    letter-spacing: 0.04em;
    line-height: 10px;
    margin-bottom: 8px;
  }
  .sales-landing-card-bottom-wrapper > input[type="checkbox"] {
    display: none;
  }
  .sales-landing-card-bottom-wrapper > input[type="checkbox"]:checked ~ .toggle-card-bottom-label {
    transform: translatey(-250%);
  }
  .sales-landing-card-bottom-wrapper > input[type="checkbox"]:checked ~ .sales-landing-card-bottom {
    transform: scaleY(1);
  }
  
  .sales-landing-card {
    background-color: lightblue;
    height: 418px;
    width: 280px;
    border: 1px solid rgb(196, 195, 195);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    margin: 10px 5px 0 5px;
    text-align: center;
  }
  .sales-landing-card-header {
    box-sizing: border-box;
    width: 100%;
    margin: 10px auto;
    width: 90%;
    background-color: white;
    border-radius: 2px;
    line-height: 30px;
    font-size: 16px;
    font-weight: 800;
    position: absolute;
    z-index: 1;
    left: 50%;
    margin-left: -45%;
  }
  .card-image {
  }
  
  @media (hover) {
    .sales-landing-card:hover .sales-landing-card-bottom {
      transform: scaleY(1);
    }
    .sales-landing-card:hover .toggle-card-bottom-label {
      transform: translatey(-250%);
    }
  }
  
  .sales-landing-card-bottom {
    height: 56%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 14px 14px 0 0;
    position: relative;
    padding-top: 22px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    position: absolute;
    z-index: 1;
    bottom: 0;
  
    transform: translatey(70%);
    transform-origin: bottom;
    transition: transform 500ms ease;
    /* change */
    transform: translatey(79%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .sales-landing-card-bottom::after {
    content: "";
    background-color: #909090e6;
    width: 20px;
    height: 3px;
    z-index: 2;
    position: absolute;
    border-radius: 2px;
    top: 8px;
    left: 50%;
    margin-left: -10px;
  }
  .sales-landing-card-bottom-header {
    margin-top: 10px;
    margin-bottom: 17px;
    font-size: 16px;
    font-weight: 800;
    /* change */
    margin: 0;
  }
  
  .sales-landing-card-bottom-button {
    display: inline-block;
    width: 121px;
    line-height: 36px;
    background: #222222;
    border: none;
    color: white !important;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    margin: 25px 0;
    /* change  */
    margin-top: 8px;
    margin-bottom: 10px;
  }
  .sales-landing-card-bottom-button:active,
  .sales-landing-card-bottom-button:hover {
    filter: brightness(1.3);
  }
  Save