*,
*::before,
*::after {
    box-sizing: border-box;
}
.page-title {
    padding-top: 1rem;
    padding-bottom: 3rem;
}
.btn {
    margin-left: 0.2rem;
    font-size: 13px;
}
.btn:focus {
    border: 0;
    box-shadow: none;
}
.relative {
    display: inline-block;
    position: relative;
}
.heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.form-search {
    display: flex;
    flex-direction: row;
    margin: auto 0;
}
.form-search input {
    display: inline-block;
    position: relative;
    padding: 1rem;
    border: 0;
    border: 1px solid #c4c4c4;
    border-radius: 8px;
    height: 3.2rem;
}
.hide li {
    margin-bottom: 0.9rem;
}
.btn__collapsible {
    /* padding: 1rem 0; */
    position: relative;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    cursor: pointer;
}
.btn__collapsible:hover {
    color: #2b72d0;
}
.btn__collapsible::after,
.btn__active::after {
    position: absolute;
    top: 0.9rem;
    right: 0.8rem;
}
.btn__collapsible::after {
    background-image: url('/static/images/FAQ\ PAGE_ICONS-02.png');
    background-repeat: no-repeat;
    background-size: 1.8rem 1.8rem;
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    content: '';
    top: 20%
}
.btn__active::after {
    background-image: url('/static/images/FAQ\ PAGE_ICONS-03.png');
    background-repeat: no-repeat;
    background-size: 1.8rem 1.8rem;
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    content: '';
}
.btn__clear {
    position: absolute;
    background-image: url('/static/images/FAQ\ PAGE_ICONS-02.png');
    background-repeat: no-repeat;
    background-size: 1.8rem 1.8rem;
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    content: '';
    top: 0.5rem;
    right: 1rem;
    transform: rotate(45deg);
}
.faqs-group {
    margin-top: 2.5rem;
}
.faqs-group__title {
    color: #353535;
    font-family: "Playfair Display";
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    text-transform: none !important;
}
.faq__answer {
    color: #353535;
    font-family: Manrope;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.8125rem;
    list-style: none;
    padding: 0 1rem;
    margin-bottom: 2rem;
}
.faq__answer li {
    position: relative;
}
/* .faq__answer li::before {
    position: absolute;
    left: -2rem;
    top: 0;
    image: url('/static/images/FAQ\ PAGE_ICONS-05.png');
    background-repeat: no-repeat;
    background-size: 1.8rem 1.8rem;
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    content: '';
} */
.title {
    border-bottom: 0.125rem solid #2646EA;
    padding-bottom: 0.62rem;
    color: #353535;
    font-family: "Playfair Display";
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: 3.125rem;
}
/* .faq__question {
    border-bottom: 1px solid #c4c4c4;
} */
.question__text {
    color: #353535;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 29px; /* 181.25% */
    max-width: 85%;
    position: relative;
    /* top: 50%;
    transform: translate(0, -50%); */
}
.hide {
    width: 100%;
    display: none;
}
.highlight {
    color: #2646EA;
    font-weight: bold;
}
.empty {
    padding: 1rem;
}
.no-results {
    text-align: center;
    opacity: 0.5;
    margin: 0;
}
.contact-us {
    padding: 3rem;
}
.contact-us p {
    margin: 0;
}
@media (max-width: 325px) {
    .question__text {
        max-width: 85%;
    }
}
@media (max-width: 580px) {
    .form-search {
        flex-direction: column;
        align-items: center;
    }
    .btn__search {
        margin: 1rem;
    }
}
@media (max-width: 1000px) {
    .heading {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 1024px) {
    .title {
        font-size: 1.4375rem;
        line-height: 2.3125rem; /* 160.87% */
    }
    .question__text, .faq__answer {
        line-height: 1.625rem; /* 162.5% */
    }
}