.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: 18px;
    font-weight: 400;
    letter-spacing: 1.88px;
    line-height: 25px;
}

.select-birthdate select {
    text-align: center;
    min-height: 40px;
    margin: 5px 0;
    padding: 10px;
    font-size: 25px;
    background-color: transparent;
    border: solid 1px #E9A42A;
    cursor: pointer;
    color: #fff;
}

.select-birthdate select:focus {
    border-color: #E9A42A;
    background-color: #E9A42A;
    ;
    outline: 0;
    color: #fff;
}

.calculation-card {
    border-radius: 30px;
    background-color: #302f4e;
}

.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);
    }
}

.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;
}

.question {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.88px;
    text-transform: capitalize;
    color: #E9A42A;
}

.question-option input {
    display: none;
}

.question-option label {
    box-sizing: border-box;
    min-height: 46px;
    padding: 10px 15px;
    color: #fff;
    background: transparent;
    border: 1px solid #E9A42A;
    position: relative;
    cursor: pointer;
    transition: .2s;
    font-size: 22px;
    font-weight: inherit;
    margin-top: 20px;
    display: inline-block;
    min-width: 500px;
    justify-content: center;
}
.color-E9A42A{
    color: #E9A42A;
}

.my-progress-bar {
    position: relative;
}

.progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    font-family: verdana;
    font-weight: bold;
    color: #fff;
}
.videoScreen video {
    width: 700px;
}

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

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

    .result {
        font-size: 20px;
    }

    .continue_btn {
        font-size: 12px;
    }

    .select-birthdate select {
        font-size: 14px;
    }
    .question-option label {
        min-width: 100%;
    }
    .videoScreen video {
        width: 350px;
    }
}