.wrapper-page.faq #top-nav {
    background-color: #f8f8f8;
}
section.faq-top {
    position: relative;
    padding-top: 140px;
    padding-bottom: 0;
    background-color: #f8f8f8;
    padding-inline: 0;
}
.faq-top h1 {
    font-size: 3.0rem;
    font-weight: 300;
    text-align: center;
    margin-inline: auto;
    padding-inline: 25px;
    max-width: 900px;
    margin-bottom: 0;
    color: rgba(var(--color-headings), 0.9);
}
.faq-top h1 span {
    font-weight: 500;
    font-style: italic;
    color: rgba(var(--color-red), 1);
}
.faq-top p {
    font-size: 1.35rem;
    line-height: 140%;
    text-align: center;
    margin-inline: auto;
    margin-bottom: 0;
}
.faq-top p span {
    text-decoration: underline;
}
.faq-top img {
    height: 140px;
    width: 100%;
}
@media (max-width: 575.98px) {
    .faq-top {
        padding-top: 120px;
    }
    .faq-top h1 {
        font-size: 2.75rem;
        margin-bottom: 0;
    }
}
section.faq-list {
    position: relative;
    padding-inline: 0;
    padding-top: 20px;
    padding-bottom: 80px;
}
.faq-list nav {
    padding: 13px 15px 15px 15px;
    display: block;
}
.faq-list nav a {
    display: block;
    padding-block: 5px;
    width: fit-content;
}
.faq-list nav a.active {
    color: rgba(var(--color-headings), 1);
    font-weight: bold;
    text-decoration: none;
}
.questions {
    max-width: 750px;
}
.question {
    position: relative;
    padding: 15px 20px 15px 25px;
    border-radius:8px;
    border: 2px solid transparent;
    margin-bottom: 25px;
}
.question:hover {
    border: 2px solid rgba(var(--color-blue), 0.4);
}
.question .title {
    font-size: 1.1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    width: 100%;
    column-gap: 20px;
    cursor: pointer;
    color:rgba(var(--color-headings), 1);
}
.question .icon {
    margin-left: auto;
    font-size: 1.1rem;
    color: rgba(var(--color-blue), 0.7);
}
.question:hover .icon {
    color: rgba(var(--color-blue), 0.9);
}
.question .permalink {
    position: absolute;
    bottom: 15px;
    right: 17px;
}
.question .permalink a {
    color: rgba(var(--color-blue), 0.7);
}
.answer {
    padding-top: 25px;
    padding-bottom: 0px;
    padding-inline: 15px;
}
.left-col {
    border-right: 4px solid #f8f8f8;
}
.row-help {
    gap: 50px;
}

@media (max-width: 1199.98px) { }
@media (max-width: 991.98px) {
    .left-col {
        border-right: none;
    }
    .faq-list nav {
        padding: 0;
        display: flex;
        gap: 25px;
        width: fit-content;
        margin-inline: auto;
        max-width: 100%;
    }
    .row-help {
        gap: 20px;
    }
}
@media (max-width: 767.98px) { }
@media (max-width: 575.98px) {
    .question {
        padding-inline: 10px;
    }
    .faq-top img {
        height: 80px;
    }
}
