
.exam-calc-header p {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}

.exam-midterm-point-inputs {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 180fr 180fr 80fr 36fr;
    gap: 24px;
}

@media (max-width: 991px) {
    .exam-calc-header p {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 540px) {
    .exam-midterm-point-inputs {
        grid-template-columns: 1fr 1fr;
    }
}

.exam-calc-which-career {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    margin-bottom: 200px;
}

.exam-calc-which-career-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.exam-calc-which-career-header h2 {
    color: #0D0D12;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: -0.48px;
    font-weight: 500;
    text-align: center;
    font-family: ClashGrotesk-Medium;
}

.exam-calc-which-career-header p {
    margin: 0 auto;
    color: #36394A;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
    max-width: 68%;
    text-align: center;
}
.exam-calc-which-career-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 24px;
    grid-row-gap: 0;
}

.exam-calc-which-career-card-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #F8F9FB;
    border-radius: 24px;
    padding: 24px;
}

.exam-calc-which-career-card-item i {
    font-size: 30px;
    color: #00B7FD;
}

.exam-calc-which-career-card-item span {
    color: #0D0D12;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.exam-calc-which-career-card-item p {
    color: #36394A;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

@media (max-width: 768px) {
    .exam-calc-which-career-cards {
        grid-template-columns: 1fr;
        grid-column-gap: 24px;
        gap: 24px;
    }


    .exam-calc-which-career-header h2 {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: 0;
    }

    .exam-calc-which-career-header p {
        width: 100%;
        max-width: 100%;
    }
}

.exam-calc-passing-score {
    width: 100%;
    max-width: 86%;
    padding: 5px 12px 5px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    border-radius: 62px;
    background: #FFF;
    transition: 300ms;
    box-shadow: 0px 0px 0px 1px rgba(18, 55, 105, 0.08), 0px 1px 2px 0px rgba(164, 172, 185, 0.24);
    margin-bottom: 20px;
}

.exam-calc-passing-score input{
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    color: var(--text-loud-900, #0D0D12);
    z-index: 1;
}

.exam-calc-passing-score:hover, .textArea-innerWrapper{
    box-shadow: 0px 0px 0px 1px rgba(9, 25, 72, 0.16), 0px 1px 2px 0px rgba(9, 25, 72, 0.16);
}

.exam-calc-passing-score.focus, .textArea-innerWrapper.focus{
    box-shadow: 0px 0px 0px 1px #19cefb
}

@media (max-width: 768px) {
    .exam-calc-passing-score {
        max-width: 100%;
    }
}

.exam-calc-cvl-cta {
    margin-bottom: 160px;
}

.exam-calc-cvl-cta-header h4 {
    font-size: 48px;
    width: 100%;
    max-width: 70%;
    text-align: center;
    margin: 0 auto;
    font-family: ClashGrotesk-Medium;
}

@media (max-width: 768px) {
    .exam-calc-cvl-cta-header h4 {
        font-size: 24px;
        max-width: 100%;
    }


    .exam-calc-cvl-cta {
        margin-bottom: 80px;
    }
    .exam-calc-which-career {
        margin-bottom: 100px;
    }
}