/* FAQ */
.hero__faq__text {
    font-size: 40px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0em;
    margin: 16px 0;
    text-align: center;
}

.faq__helphub_inline_link {
    color: #5ba9ff;
}

@media screen and (max-width: 450px) {
    .hero__faq__text {
        font-size: 22px;
    }
}

.faq__question_and_icon {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.faq__question {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 1px solid #dcdddd;
    padding: 16px;
    cursor: pointer;
}

.faq__question__dropdown {
    align-self: center;
    transition: 0.3s;
    height: 24px;
    width: 24px;
}

.faq__question__text {
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    margin: 0;
}

@media screen and (max-width: 450px) {
    .faq__question__text {
        font-size: 16px;
    }
}

.faq__answer {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
    overflow: hidden;
    max-height: 0;
    margin: 0;
}

.clicked .faq__answer {
    max-height: fit-content;
    margin-top: 16px;
}

@media screen and (max-width: 450px) {
    .faq__answer {
        font-size: 14px;
        line-height: 18px;
    }
}

.clicked .faq__question__dropdown {
    transform: rotate(180deg);
}

.faq__see_all_faq_container {
    display: flex;
    justify-content: center;
    padding: 12px 0;
}

.faq__see_all_faq_container__link {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    color: #5ba9ff;
}

@media screen and (max-width: 450px) {
    .faq__see_all_faq_container__link {
        font-size: 16px;
    }
}