.font-24{
    font-size: 24;
}
.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;
}
.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;
}

.continue_btn:hover {
    text-decoration: none;
    background: linear-gradient(0deg, #E9A42A 0%, #F2C875 121.79%);
    color: #291E3C;
}
.description-text{
	font-family: 'Lato', sans-serif;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 1.88px;
    line-height: 25px;
}

.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);
    }
  }
.pulsing-text {
    animation: pulsingText 1s infinite;
    text-transform: uppercase;
    font-weight: bolder;
}
  @keyframes pulsingText {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }
  .color-0ce10c, .color-0ce10c p{
    display: inline-block;
    color: #0ce10c;
  }
  .color-ff0000, .color-ff0000 p {
    display: inline-block;
    color: #ff0000;
  }
  .color-f51ef5, .color-f51ef5 p {
    display: inline-block;
    color: #f51ef5;
  }
  .disclaimer_section{
    margin-top: 600px;
  }
  .disclaimer_section h3, .disclaimer_section p{
    letter-spacing: 2.88px;
  }

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

  /* Flip Image */
.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: relative;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}
.hiddenImage{
    cursor: pointer;
}
  /* Flip Image */

  .resultImageFlipped{
    width: 150px;
    height: 250px;  
  }

@media (max-width: 767px) {
    .title{
        font-size: 20px;
    }
    .sub-title{
        font-size: 14px;
    }
    .continue_btn {
        font-size: 12px;
    }
    .description-text {
        font-size: 10px;
        font-weight: 400;
        letter-spacing: 0.88px;
        line-height: 21px;
    }
    .resultDescription {
        font-size: 20px;
    }
}