/* =========================================================
   VARGOU FAQ PAGE
   faq.css

   IMPORTANT:
   Everything is scoped under .faq-page
   so this stylesheet cannot interfere with index.html.
========================================================= */


/* =========================================================
   PAGE CONTAINER
========================================================= */

.faq-page .faq-page-container {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   HERO
========================================================= */

.faq-page .faq-page-hero {
    position: relative;
    overflow: hidden;

    padding: 32px 0 65px;

    background:
        linear-gradient(
            120deg,
            #f8fbff 0%,
            #edf5ff 100%
        );

    border-bottom: 1px solid #dfe7f1;
}


.faq-page .faq-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 42px;

    color: #8a96a6;
    font-size: 10px;
}


.faq-page .faq-page-breadcrumb a {
    color: #0a348b;
    text-decoration: none;
}


.faq-page .faq-page-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 60px;
}


.faq-page .faq-page-hero-content {
    max-width: 610px;
}


.faq-page .faq-page-eyebrow {
    display: inline-block;

    color: #0a348b;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.2px;
}


.faq-page .faq-page-hero-content h1 {
    margin: 10px 0 20px;

    color: #17243a;

    font-size: clamp(40px, 4.5vw, 58px);

    line-height: 1.05;

    letter-spacing: -1.8px;
}


.faq-page .faq-page-hero-content h1 span {
    color: #0a348b;
}


.faq-page .faq-page-hero-content > p {
    max-width: 540px;

    margin: 0;

    color: #687587;

    font-size: 14px;

    line-height: 1.8;
}


.faq-page .faq-page-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 22px;

    margin-top: 28px;
}


.faq-page .faq-page-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 22px;

    border-radius: 5px;

    background: #0a348b;

    color: #ffffff;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .2s ease,
        transform .2s ease;
}


.faq-page .faq-page-primary-btn:hover {
    background: #07276a;

    transform: translateY(-2px);
}


.faq-page .faq-page-secondary-link {
    color: #0a348b;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none;
}


.faq-page .faq-page-secondary-link span {
    margin-left: 5px;

    transition: margin .2s ease;
}


.faq-page .faq-page-secondary-link:hover span {
    margin-left: 9px;
}


/* =========================================================
   HERO ART
========================================================= */

.faq-page .faq-page-hero-art {
    position: relative;

    width: 100%;
    height: 360px;
}


.faq-page .faq-page-art-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    transform: translate(-50%, -50%);
}


.faq-page .faq-page-art-ring-1 {
    width: 300px;
    height: 300px;

    border: 1px solid #bfd0e5;
}


.faq-page .faq-page-art-ring-2 {
    width: 205px;
    height: 205px;

    border: 1px dashed #c3d4e9;
}


.faq-page .faq-page-art-question {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -54%);

    color: #0a348b;

    font-size: 180px;
    font-weight: 800;

    line-height: 1;

    opacity: .07;
}


.faq-page .faq-page-floating-card {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;

    gap: 11px;

    min-width: 205px;

    padding: 12px 15px;

    border: 1px solid #dbe5f1;

    border-radius: 7px;

    background: rgba(255,255,255,.96);

    box-shadow:
        0 14px 35px rgba(28,64,110,.10);
}


.faq-page .faq-page-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    border-radius: 50%;

    background: #edf3fc;

    color: #0a348b;

    font-size: 14px;
    font-weight: 800;
}


.faq-page .faq-page-floating-card strong {
    display: block;

    color: #1d2b41;

    font-size: 10px;
}


.faq-page .faq-page-floating-card small {
    display: block;

    margin-top: 3px;

    color: #8792a1;

    font-size: 8px;
}


.faq-page .faq-page-card-1 {
    left: 0;
    top: 62px;
}


.faq-page .faq-page-card-2 {
    right: 0;
    top: 20px;
}


.faq-page .faq-page-card-3 {
    right: 15px;
    bottom: 35px;
}


/* =========================================================
   SEARCH
========================================================= */

.faq-page .faq-page-search-section {
    position: relative;
    z-index: 10;

    margin-top: -28px;
}


.faq-page .faq-page-search-box {
    display: flex;
    align-items: center;

    min-height: 62px;

    padding: 0 19px;

    border: 1px solid #dbe4ef;

    border-radius: 7px;

    background: #ffffff;

    box-shadow:
        0 12px 35px rgba(24,58,100,.09);
}


.faq-page .faq-page-search-icon {
    margin-right: 12px;

    color: #0a348b;

    font-size: 24px;

    line-height: 1;
}


.faq-page #faqPageSearch {
    width: 100%;

    height: 60px;

    border: 0;
    outline: 0;

    background: transparent;

    color: #26354b;

    font-family: inherit;

    font-size: 12px;
}


.faq-page #faqPageSearch::placeholder {
    color: #9ba5b2;
}


.faq-page #clearFaqPageSearch {
    display: none;

    border: 0;

    padding: 5px;

    background: transparent;

    color: #0a348b;

    font-family: inherit;

    font-size: 9px;
    font-weight: 700;

    cursor: pointer;
}


/* =========================================================
   MAIN
========================================================= */

.faq-page .faq-page-main {
    padding: 75px 0 85px;

    background: #ffffff;
}


.faq-page .faq-page-layout {
    display: grid;

    grid-template-columns:
        220px
        minmax(0, 760px);

    justify-content: center;

    align-items: start;

    gap: 55px;
}


/* =========================================================
   SIDEBAR
========================================================= */

.faq-page .faq-page-sidebar {
    position: sticky;

    top: 25px;
}


.faq-page .faq-page-sidebar-title {
    margin-bottom: 12px;

    color: #17243a;

    font-size: 12px;
    font-weight: 700;
}


.faq-page .faq-page-category-list {
    display: flex;

    flex-direction: column;

    gap: 3px;
}


.faq-page .faq-page-category {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 11px 12px;

    border: 1px solid transparent;

    border-radius: 5px;

    background: transparent;

    color: #6e7989;

    font-family: inherit;

    font-size: 9px;

    text-align: left;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease;
}


.faq-page .faq-page-category b {
    min-width: 24px;

    padding: 3px 6px;

    border-radius: 20px;

    background: #f0f3f7;

    color: #8993a1;

    font-size: 7px;

    text-align: center;
}


.faq-page .faq-page-category:hover {
    background: #f4f7fb;

    color: #0a348b;
}


.faq-page .faq-page-category.active {
    background: #edf3fc;

    color: #0a348b;

    font-weight: 700;
}


.faq-page .faq-page-category.active b {
    background: #d9e7fb;

    color: #0a348b;
}


/* =========================================================
   SIDEBAR CTA
========================================================= */

.faq-page .faq-page-sidebar-cta {
    margin-top: 25px;

    padding: 21px;

    border-radius: 7px;

    background: #082e87;
}


.faq-page .faq-page-sidebar-cta-label {
    color: #a8c3ed;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: .8px;
}


.faq-page .faq-page-sidebar-cta h3 {
    margin: 9px 0 8px;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.35;
}


.faq-page .faq-page-sidebar-cta p {
    margin: 0 0 15px;

    color: #d7e3f8;

    font-size: 8px;

    line-height: 1.7;
}


.faq-page .faq-page-sidebar-cta a {
    color: #ffffff;

    font-size: 8px;
    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   CONTENT
========================================================= */

.faq-page .faq-page-content {
    min-width: 0;
}


.faq-page .faq-page-group {
    margin-bottom: 58px;
}


.faq-page .faq-page-group-heading {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 20px;
}


.faq-page .faq-page-group-number {
    color: #c3ccd7;

    font-size: 27px;
    font-weight: 700;

    line-height: 1;
}


.faq-page .faq-page-group-heading > div > span {
    color: #0a348b;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: 1px;
}


.faq-page .faq-page-group-heading h2 {
    margin: 4px 0 0;

    color: #17243a;

    font-size: 21px;

    line-height: 1.25;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-page .faq-page-item {
    overflow: hidden;

    margin-bottom: 8px;

    border: 1px solid #dfe6ef;

    border-radius: 6px;

    background: #ffffff;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.faq-page .faq-page-item:hover {
    border-color: #c5d5e8;
}


.faq-page .faq-page-item.is-open {
    border-color: #abc1df;

    box-shadow:
        0 8px 26px rgba(25,61,105,.06);
}


/* =========================================================
   QUESTION
========================================================= */

.faq-page .faq-page-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 17px 19px;

    border: 0;

    background: #ffffff;

    color: #28374d;

    font-family: inherit;

    font-size: 11px;
    font-weight: 600;

    text-align: left;

    cursor: pointer;
}


.faq-page .faq-page-question > span {
    min-width: 0;
}


.faq-page .faq-page-question > i {
    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef3f9;

    color: #0a348b;

    font-size: 16px;
    font-style: normal;

    line-height: 1;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}


.faq-page .faq-page-item.is-open
.faq-page-question > i {

    background: #0a348b;

    color: #ffffff;

    transform: rotate(45deg);
}


/* =========================================================
   ANSWER
========================================================= */

.faq-page .faq-page-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows .3s ease;
}


.faq-page .faq-page-answer > div {
    overflow: hidden;
}


.faq-page .faq-page-item.is-open
.faq-page-answer {

    grid-template-rows: 1fr;
}


.faq-page .faq-page-answer p {
    margin: 0;

    padding: 0 19px 17px;

    color: #697587;

    font-size: 10px;

    line-height: 1.8;
}


.faq-page .faq-page-answer p + p {
    padding-top: 0;
}


.faq-page .faq-page-answer a {
    display: inline-block;

    margin: 0 19px 18px;

    color: #0a348b;

    font-size: 9px;
    font-weight: 700;

    text-decoration: none;
}


.faq-page .faq-page-answer a:hover {
    text-decoration: underline;
}


/* =========================================================
   NO RESULTS
========================================================= */

.faq-page .faq-page-no-results {
    display: none;

    padding: 65px 20px;

    text-align: center;
}


.faq-page .faq-page-no-results.show {
    display: block;
}


.faq-page .faq-page-no-results-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 13px;

    border-radius: 50%;

    background: #edf3fb;

    color: #0a348b;

    font-size: 20px;
    font-weight: 800;
}


.faq-page .faq-page-no-results h3 {
    margin: 0 0 6px;

    color: #25334a;

    font-size: 17px;
}


.faq-page .faq-page-no-results p {
    margin: 0;

    color: #87919f;

    font-size: 10px;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.faq-page .faq-page-bottom-cta {
    padding: 0 0 75px;
}


.faq-page .faq-page-bottom-box {
    position: relative;

    min-height: 285px;

    overflow: hidden;

    padding: 48px 60px;

    border-radius: 8px;

    background: #082e87;
}


.faq-page .faq-page-bottom-content {
    position: relative;
    z-index: 5;

    max-width: 600px;
}


.faq-page .faq-page-bottom-label {
    color: #abc5ef;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1px;
}


.faq-page .faq-page-bottom-content h2 {
    margin: 8px 0 12px;

    color: #ffffff;

    font-size: 32px;

    line-height: 1.12;

    letter-spacing: -.5px;
}


.faq-page .faq-page-bottom-content p {
    max-width: 520px;

    margin: 0;

    color: #d8e4f8;

    font-size: 11px;

    line-height: 1.7;
}


.faq-page .faq-page-bottom-buttons {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 23px;
}


.faq-page .faq-page-yellow-btn,
.faq-page .faq-page-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 19px;

    border-radius: 5px;

    font-size: 9px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}


.faq-page .faq-page-yellow-btn {
    background: #ffd95d;

    color: #172e66;
}


.faq-page .faq-page-yellow-btn:hover {
    background: #ffffff;

    color: #0a348b;

    transform: translateY(-2px);
}


.faq-page .faq-page-outline-btn {
    border: 1px solid rgba(255,255,255,.35);

    background: transparent;

    color: #ffffff;
}


.faq-page .faq-page-outline-btn:hover {
    background: #ffffff;

    color: #0a348b;
}


/* =========================================================
   BOTTOM ART
========================================================= */

.faq-page .faq-page-bottom-art {
    position: absolute;

    right: 55px;
    top: 15px;

    width: 320px;
    height: 255px;
}


.faq-page .faq-page-bottom-circle {
    position: absolute;

    right: 10px;
    top: 25px;

    width: 185px;
    height: 185px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.18);

    border-radius: 50%;
}


.faq-page .faq-page-bottom-circle::before {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    border: 1px dashed rgba(255,255,255,.20);

    border-radius: 50%;
}


.faq-page .faq-page-bottom-circle span {
    position: relative;
    z-index: 2;

    color: rgba(255,255,255,.14);

    font-size: 125px;
    font-weight: 800;

    line-height: 1;
}


.faq-page .faq-page-bottom-line {
    position: absolute;

    height: 1px;

    background: rgba(255,255,255,.18);

    transform-origin: right center;
}


.faq-page .faq-page-bottom-line.line-a {
    width: 130px;

    right: 170px;
    top: 78px;

    transform: rotate(18deg);
}


.faq-page .faq-page-bottom-line.line-b {
    width: 160px;

    right: 145px;
    top: 155px;

    transform: rotate(-15deg);
}


.faq-page .faq-page-bottom-line.line-c {
    width: 100px;

    right: 70px;
    top: 215px;

    transform: rotate(32deg);
}


/* =========================================================
   FOOTER ISOLATION
========================================================= */

.faq-page .site-footer {
    position: relative;
    z-index: 1;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .faq-page .faq-page-hero-grid {
        gap: 35px;
    }


    .faq-page .faq-page-layout {
        grid-template-columns:
            190px
            minmax(0, 1fr);

        gap: 35px;
    }


    .faq-page .faq-page-bottom-art {
        right: -25px;

        opacity: .65;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 850px) {

    .faq-page .faq-page-hero-grid {
        grid-template-columns: 1fr;
    }


    .faq-page .faq-page-hero-content {
        max-width: 700px;
    }


    .faq-page .faq-page-hero-art {
        max-width: 600px;

        margin: 0 auto;
    }


    .faq-page .faq-page-layout {
        grid-template-columns: 1fr;
    }


    .faq-page .faq-page-sidebar {
        position: static;
    }


    .faq-page .faq-page-category-list {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 5px;
    }


    .faq-page .faq-page-sidebar-cta {
        margin-top: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .faq-page .faq-page-container {
        padding-left: 15px;
        padding-right: 15px;
    }


    .faq-page .faq-page-hero {
        padding: 25px 0 45px;
    }


    .faq-page .faq-page-breadcrumb {
        margin-bottom: 28px;
    }


    .faq-page .faq-page-hero-content h1 {
        font-size: 36px;

        letter-spacing: -1px;
    }


    .faq-page .faq-page-hero-content > p {
        font-size: 12px;
    }


    .faq-page .faq-page-hero-actions {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }


    .faq-page .faq-page-hero-art {
        height: 285px;
    }


    .faq-page .faq-page-art-ring-1 {
        width: 225px;
        height: 225px;
    }


    .faq-page .faq-page-art-ring-2 {
        width: 150px;
        height: 150px;
    }


    .faq-page .faq-page-art-question {
        font-size: 125px;
    }


    .faq-page .faq-page-floating-card {
        min-width: 150px;

        padding: 9px 10px;

        gap: 8px;
    }


    .faq-page .faq-page-card-icon {
        width: 26px;
        height: 26px;

        flex-basis: 26px;

        font-size: 11px;
    }


    .faq-page .faq-page-floating-card strong {
        font-size: 8px;
    }


    .faq-page .faq-page-floating-card small {
        font-size: 6px;
    }


    .faq-page .faq-page-card-1 {
        left: 0;
        top: 42px;
    }


    .faq-page .faq-page-card-2 {
        right: 0;
        top: 5px;
    }


    .faq-page .faq-page-card-3 {
        right: 0;
        bottom: 8px;
    }


    .faq-page .faq-page-search-section {
        margin-top: -22px;
    }


    .faq-page .faq-page-search-box {
        min-height: 52px;

        padding: 0 13px;
    }


    .faq-page #faqPageSearch {
        height: 50px;

        font-size: 11px;
    }


    .faq-page .faq-page-main {
        padding: 50px 0 60px;
    }


    .faq-page .faq-page-category-list {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .faq-page .faq-page-sidebar-cta {
        padding: 18px;
    }


    .faq-page .faq-page-group {
        margin-bottom: 45px;
    }


    .faq-page .faq-page-group-heading {
        gap: 10px;
    }


    .faq-page .faq-page-group-number {
        font-size: 21px;
    }


    .faq-page .faq-page-group-heading h2 {
        font-size: 18px;
    }


    .faq-page .faq-page-question {
        padding: 15px;

        font-size: 10px;
    }


    .faq-page .faq-page-question > i {
        width: 22px;
        height: 22px;

        flex-basis: 22px;
    }


    .faq-page .faq-page-answer p {
        padding-left: 15px;
        padding-right: 15px;

        font-size: 9px;
    }


    .faq-page .faq-page-answer a {
        margin-left: 15px;
    }


    .faq-page .faq-page-bottom-box {
        min-height: 390px;

        padding: 35px 24px;
    }


    .faq-page .faq-page-bottom-content h2 {
        font-size: 27px;
    }


    .faq-page .faq-page-bottom-buttons {
        align-items: flex-start;

        flex-direction: column;
    }


    .faq-page .faq-page-bottom-art {
        right: -90px;
        top: auto;
        bottom: -25px;

        opacity: .35;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .faq-page .faq-page-hero-content h1 {
        font-size: 31px;
    }


    .faq-page .faq-page-category-list {
        grid-template-columns: 1fr;
    }


    .faq-page .faq-page-floating-card {
        transform: scale(.9);
    }


    .faq-page .faq-page-card-1 {
        left: -10px;
    }


    .faq-page .faq-page-card-2 {
        right: -10px;
    }


    .faq-page .faq-page-card-3 {
        right: -10px;
    }

}