.quiz-section {
    min-height: 100vh;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.quiz__background {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.quiz-wrapper {
    max-width: 628px;
    margin: 100px auto auto;
    padding: 16px;
    border-radius: 15px;
    background: #FFF;
}

.quiz__top {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 48px;
}

.quiz-progress {
    color: rgba(1, 26, 70, 0.20);
    font-family: var(--font-secondary);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 12px */
    display: inline-block;
    margin-bottom: 16px;
}

.quiz-situation__eyebrow {
    color: #FFF;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 14px */
    letter-spacing: -0.42px;
    background: #011A46;
    text-transform: uppercase;
    padding: 8px;
    display: inline-block;
    margin-bottom: 8px;
    text-align: center;
}

.quiz-situation {
    color: #011A46;
    font-family: var(--font-secondary);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 30.8px */
    letter-spacing: -0.84px;
}

.quiz-question {
    color: #011A46;
    font-family: var(--font-secondary);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 20px */
    letter-spacing: -0.6px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.quiz-answer {
    display: block;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-left: 40px;
    z-index: 1;
}

.quiz-answer::before {
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(1, 26, 70, 0.60);
    position: absolute;
}

.quiz-answer:has(input:checked)::after {
    content: '';
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #011A46;
    position: absolute;
}

.quiz-answers {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}

.quiz-answers span {
    color: #011A46;
    font-family: var(--font-secondary);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 22px */
    letter-spacing: -0.6px;
}

.quiz-answers input {
    position: absolute;
    opacity: 0;
    z-index: -3;
}

.quiz-btn {
    color: white;
    border: none;
    cursor: pointer;
}

.quiz-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.quiz-nav button {
    background: transparent;
    display: flex;
    flex-flow: row;
    align-items: center;
    gap: 8px;
    color: #011A46;
    text-align: right;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 14px */
    letter-spacing: -0.42px;
}

.quiz-nav button.off {
    color: rgba(1, 26, 70, 0.40);
}

.quiz-nav button.off svg path {
    fill: rgba(1, 26, 70, 0.40);;
}

.quiz-btn.prev {
    justify-content: flex-start;
	transition: all 500ms ease;
    opacity: 0.4;
}

.quiz-btn.prev:hover {
    opacity: 1;
}

.quiz-btn.next {
    justify-content: flex-end;
	transition: all 500ms ease;
	opacity: 0.8;
}

.quiz-btn.next:hover {
	opacity: 1;
}

.hidden {
    display: none !important;
}

.quiz-form h2 {
    color: #011A46;
    font-family: var(--font-secondary);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 30.8px */
    letter-spacing: -0.84px;
    margin-bottom: 32px;
}

.quiz-form input::placeholder {
    color: #000;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */
}

.quiz-form input {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #014D90;
    background: #FFF;
    color: #000;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 16px */
}

.quiz-form input:nth-of-type(2)::placeholder,
.quiz-form input:last-of-type {
    color: #D0D0D0;
}

.quiz-form input:last-of-type {
    margin-bottom: 24px;
}

#resaultAgain,
#submitQuiz {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #FFF;
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 16px */
    letter-spacing: -0.48px;
    border-radius: 40px;
    background: #014D90;
    padding: 12px;
    max-width: 100%;
    width: 358px;
    margin: auto;
}

.quiz-result {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.quiz-result span {
    color: #FFF;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 14px */
    letter-spacing: -0.42px;
    background: #011A46;
    text-transform: uppercase;
    padding: 8px;
    display: inline-block;
    margin-bottom: 8px;
    text-align: center;
}

#resultTitle {
    color: #011A46;
    font-family: var(--font-secondary);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 35.2px */
    letter-spacing: -0.96px;
    margin-bottom: 16px;
}

#resultText {
    color: #1D1D1D;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%; /* 20px */
    margin-bottom: 40px;
}
#resaultAgain {
    margin-bottom: 8px;
}

#resaultHome {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #014D90;
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 16px */
    letter-spacing: -0.48px;
    border-radius: 40px;
    background: #fff;
    border: 1px solid #014D90;
    padding: 12px;
    max-width: 100%;
    width: 358px;
    margin: auto;
    
}
@media only screen and (min-width: 768px) {
    .quiz__background {
        display: block;
    }

    .quiz-wrapper {
        border: 1px solid #D0D0D0;
        box-shadow: 4px 4px 25px 0 rgba(0, 0, 0, 0.16);
        padding: 40px;
        margin: auto;
    }

    .quiz__top {
        margin-bottom: 96px;
    }

    .quiz-situation__eyebrow {
        min-width: 163px;
    }

}