.font-24 {
    font-size: 24;
}
.color-E9A42A{
    color: #E9A42A;
}

.title {
    color: var(--primary-color);
    font-family: Aurora Regular;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.modal-title {
    color: var(--primary-color);
    font-family: Aurora Regular;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.sub-title {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.88px;
    text-transform: capitalize;
    background: var(--gold, linear-gradient(180deg, #E9A42A 0%, #F2C875 121.79%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description-text {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.88px;
    line-height: 25px;
}

.disclaimer_section {
    margin-top: 600px;
}

.disclaimer_section h3,
.disclaimer_section p {
    letter-spacing: 2.88px;
}

.disclaimer_section h4 {
    color: #FFF;
    text-align: center;
    font-family: Aurora Regular;
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: 54px;
    padding-bottom: 20px;
}

.continue_btn {
    padding: 18px 40px;
    border-radius: 100px;
    background: linear-gradient(180deg, #E9A42A 0%, #F2C875 121.79%);
    line-height: 70px;
    color: #291E3C;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; /* 114.286% */
    letter-spacing: 1.68px;
    text-transform: uppercase;
    width: auto;
}

.discover_btn{
    animation: blink 1s infinite;
}
.discover_btn:hover {
    animation: none;
}

@keyframes blink {
    0%, 100% {
      background-color: #FF00A8;
      transform: scale(1);
    }
    50% {
      background-color: #ce118f;
      transform: scale(1.1);
    }
  }

.continue_btn:hover {
    text-decoration: none;
    background: linear-gradient(0deg, #E9A42A 0%, #F2C875 121.79%);
    color: #291E3C;
}

.scene {
    height: 260px;
    perspective: 600px;
  }
  
  .card {
    width: 100%;
    transition: transform 1s;
    transform-style: preserve-3d;
    cursor: pointer;
    position: relative;
    height: 0%;
    background-color: transparent;
  }
  
  .card.is-flipped {
    transform: rotateY(180deg);
  }
  
  .card__face {
    position: absolute;
    width: 100%;
    height: 100%;
    line-height: 250px;
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 40px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .card__face--front {
    background: #2c2b40;
  }
  
  .card__face--back {
    background: #2c2b40;
    transform: rotateY(180deg);
  }

  .card img{
    width: 150px;
    height: 250px;
  }

  .result-card-title, .card-title {
    font-size: 20px;
  }
  
@media (max-width: 767px) {
    .title {
        font-size: 20px;
    }

    .modal-title {
        font-size: 20px !important;
    }

    .result-card-title, .card-title {
        font-size: 15px;
    }

    .content-modal, .card-title {
        font-size: 16px;
    }

    .description-text {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .scene {
        height: 110px;
        perspective: 120px;
    }

    .card__face{
        height: auto;
        line-height: unset;
        font-size: 18px;
    }

    .card img {
        width: 100%;
        height: 110px;
    }

    .sub-title {
        font-size: 14px;
    }

    .continue_btn {
        font-size: 12px;
        width: 220px;
        padding: 7px 40px;
    }
}