
.faq .faq-right {
    /* width: 50%; */
    max-width: 90%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.faq .faq-right .faq-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: rgb(26, 45, 80);
}

.faq-questions {
    display: inline-block;
    width: 100%;
}

.question-block {
    display: block;
    padding: 14px 10px 14px 10px;
    background-color: #f5f5f5;
}

.faq-questions .question-block:not(:last-of-type) {
    /* border-bottom: 1px solid #e8e6e6; */
    margin-bottom: 10px;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

.question .expand-btn {
    height: fit-content;
}

.question .expand-btn i {
    display: inline-block;
    height: fit-content;
    font-size: 20px;
}

.answer {
    color: #575757;
    margin-top: 4px;
    padding-right: 15px;
    font-size: 0.9375rem;
}

.answer p a {
    text-decoration: underline;
    color: dodgerblue;
}

.hide {
    display: none;
}

.rotate {
    transform: rotate(180deg);
    transition: ease-in-out;
    transition: 0.2s;
}

@media only screen and (max-width: 1024px) {
    .faq-questions {
        width: 100%;
    }
}
