h1 {
    width: 100%;
    font-size: 86px;
    text-align: center;
}

.action-btns {
    height: 72px;
    width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

button[type="button"], .pri-btn, .sec-btn {
    padding: 0px 24px;
    padding-top: 16px;
    padding-bottom: 12px;
    text-transform: uppercase;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.pri-btn {
    color: var(--pri-clr-white);
    background-color: var(--pri-clr-coral);
    border: 2px solid var(--pri-clr-coral);
}

.sec-btn {
    color: var(--pri-clr-coral);
    background-color: var(--pri-clr-white);
    border: 2px solid var(--pri-clr-coral);
}

.sec-btn:hover {
    color: var(--pri-clr-white);
    background-color: var(--sec-clr-gray);
    border-color: var(--pri-clr-white);
}

.secp {
    width: 633px;
    max-width: 100%;
    margin: -30px 0;
    text-align: center;
    font-family: 'Roboto Mono';
    font-size: 20px;
}

#numeri-sec {
    height: 726px;
}

section {
    position: relative;
    height: 632px;
    width: 80%;
    padding-bottom: 50px;
}

section h2 {
    font-style: italic;
    font-size: 48px;
    line-height: 64px;
    letter-spacing: 0%;
}

#numeri-sec .selection {
    height: 552px;
    top: 144px;
}

.five .selection {
    height: 384px;
    top: 144px;
}

.four .selection {
    height: 288px;
    top: 180px;
}

.three .selection {
    height: 216px;
    top: 240px;
}

.selection {
    position: absolute;
    width: 640px;
    left: 0px;
    background-color: #fff;
    z-index: 2;
}

#numeri-sec .question {
    height: calc(100% / 7);
}

.five .question {
    height: calc(100% / 5);
}

.four .question {
    height: calc(100% / 4);
}

.three .question {
    height: calc(100% / 3);
}

.question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    cursor: pointer;
    border-bottom: 1px solid var(--sec-clr-gray);
}

.question h6 {
    width: 75%;
    padding: 0px 15px;
    margin-bottom: -4px;
    font-size: 16px;
}

.question svg {
    height: 40%;
    aspect-ratio: 1 / 1;
    transition: 0.3s ease;
}

.question:hover svg {
    transform: translate(3px);
}

.question svg path {
    color: var(--pri-clr-black);
}

.question:hover svg path {
    color: var(--sec-clr-blue);
}

.question:hover .bubble {
    background-color: var(--sec-clr-blue);
}

.bubble {
    height: 40%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: var(--pri-clr-coral);
}

.selected {
    background-color: var(--sec-clr-blue);
    fill: var(--sec-clr-blue);
}

#numeri-sec .display {
    height: 604px;
}

.display {
    position: absolute;
    height: 472px;
    width: 648px;
    right: 0px;
    top: 112px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: 16px;
    background-color: #FAFBFF;
}

#numeri-sec .texts {
    height: 550px;
}

.texts {
    height: 418px;
    width: 472px;
    left: 144px;
    top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.texts p {
    width: 100%;
    margin-right: 80px;
    font-family: 'Urw Din Cond';
}

.ttle {
    height: 56px;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0%;
}

.ppp {
    height: 322px;
    font-size: 18px;
    font-weight: 400;
    line-height: 2rem;
}

/* Adjustability */

@media screen and (max-width: 1450px) {
    #numeri-sec {
        height: 1050px;
        margin-bottom: 300px;
    }
    .five {
        height: 800px;
        margin-bottom: 250px;
    }
    .four {
        height: 700px;
        margin-bottom: 250px;
    }
    .four .selection {
        margin-top: -50px;
    }
    .three {
        height: 600px;
        margin-bottom: 250px;
    }
    .three .selection {
        margin-top: -100px;
    }
    .selection {
        left: 50%;
        top: 50%;
        transform: translate(-50%, 0%);
    }
    .display {
        left: 50%;
        top: 100%;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width: 650px) {
    .selection {
        margin-left: -50px;
    }
    .display {
        margin-left: -50px;
    }
}

