.faqs-page {
    margin-top: 234px;
}
.faq-top-title {
    padding-left: var(--extra-small-container);
}
.faq-top-title:before {
    content: "";
    position: absolute;
    top: 11px;
    bottom: 11px;
    left:0;
    width: 10px;
    background-color: var(--primary);
}
.faqs-results {
    font-family: "Montserrat", sans-serif;
    margin-top: 96px;
    padding-left: calc(var(--extra-small-container) + 4px);
}
.faq-answer {
    display: none;
}
.faq-main.active .faq-answer {
    display: block;
}
.faq-toggle {
    cursor: pointer;
    transition: .5s ease all;
}
.faq-toggle:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 10px;
    background-color: var(--primary);
    transition: all .5s ease;
    z-index: -1;
}
.faq-toggle:hover:before {
    width: 100%;
}
.faq-main.active .faq-toggle:before {
    width: 100%;
}
.faq-res-plus {
    width: 10px;
    height: 10px;
}
.faq-res-plus:before,
.faq-res-plus:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--default);
}
.faq-res-plus:before {
    width: 100%;
    height: 2px;
}
.faq-res-plus:after {
    height: 100%;
    width: 2px;
    transition: all. 5s ease;
}
.faq-main.active .faq-res-plus:after {
    height: 0;
}
.faq-boxes {
    position: absolute;
    top: 34px;
    left: -8%;
    right: -8%;
    z-index: -1;
}
@media(max-width: 1499.98px) {
    .faqs-page {
        margin-top: 134px;
    }
}
@media(max-width: 991.98px) {
    .faq-boxes {
        top: 60px;
        left: -8%;
        right: -7%;
    }
    .faqs-results {
        padding-left: 0;
        margin-top: 15px;
    }
    .faq-toggle:before {
        content: none;
    }
    .faq-toggle {
        line-height: 1.4;
    }
    .faq-toggle-title {
        background-image: linear-gradient(var(--primary), var(--primary));
        background-position: 0 100%;
        background-size: 0% 2px;
        background-repeat: no-repeat;
        transition: background-size .3s ease;
    }
    .faq-toggle:hover .faq-toggle-title,
    .faq-main.active .faq-toggle .faq-toggle-title{
        background-size: 100% 2px;
    }
    .faqs-page {
        margin-top: 40px;
    }
    .faq-top-title:before {
        top: 3px;
        bottom: 3px;
        left: var(--min-grid);
        width: 6px;
    }
}