*,
*::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;
    min-width: 300px;
}
.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: '';
}
.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 {
    text-transform: none !important;
}
.faq {
    margin-left: -1rem;
}
.faq__answer {
    list-style: none;
    font-size: 0.875rem;
    padding: 0 3rem;
    margin-bottom: 2rem;
}
.faq__answer li {
    position: relative;
}
.faq__answer li::before {
    position: absolute;
    left: -2rem;
    top: 0;
    background-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 {
    margin-top: 1.2rem;
}
.faq__question {
    border-bottom: 1px solid #c4c4c4;
}
.question__text {
    max-width: 85%;
    position: relative;
    top: 50%;
    transform: translate(0, -50%);
}
.hide {
    width: 100%;
    display: none;
}
.highlight {
    color: #2b72d0;
    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) {
    .faq {
        margin: 1rem;
        padding: 0;
    }
    .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;
    }
}
