/* Webflow FAQ styles */
.faq-container {
    overflow: hidden;
    color: var(--teal);
    border: 2px solid var(--teal-lightest);
    border-radius: 12px;
    box-sizing: border-box;
    font-family: var(--body-font-family);
}
.faq-container a {
    color:  var(--teal-light);
}
.h4.faq {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    font-family: var(--heading-font-family);
    font-size: 21px;
    line-height: 26px;
    font-weight: 600;
    background-color: var(--teal-lightest);
}
@media screen and (min-width: 650px) {
    .h4.faq {
        font-size: 32px;
        line-height: 36px;
    }
}
.faq-question {
    display: flex;
    height: 90px;
    padding-left: 20px;
    -webkit-box-align: center;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
}
.faq-plus-wrap {
    position: relative;
    display: flex;
    width: 20px;
    height: 20px;
    margin-right: 25px;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    transition: transform 0.5s;
}
.faq-plus-l {
    position: absolute;
    width: 5px;
    height: 20px;
    border-radius: 3px;
    background-color: var(--teal-light);
    color: var(--teal-light);
    transition: height 0.5s;
}
.faq-plus {
    width: 20px;
    height: 5px;
    border-radius: 3px;
    background-color: var(--teal-light);
}
.faq-q-text {
    font-size: 16px;
    font-weight: 600;
}
.faq-answer {
    overflow: hidden;
    padding-left: 45px;
    border-bottom: 1px solid rgba(45,62,80,.12);
    max-height: 0;
    transition: max-height 0.5s;
}
.faq-answer-text {
    margin-top: 0;
    margin-bottom: 30px;
    padding-right: 20px;
    padding-left: 20px;
    color: #026c71;
    font-size: 16px;
    line-height: 28px;
}
.faq-question.active .faq-plus-wrap {
    transform: rotate(180deg);
}
.faq-question.active .faq-plus-l {
    height: 0;
}
.faq-question.active ~ .faq-answer {
    max-height: 100vh;
}
