

:root {

    --navy: #071a31;
    --primary: #0b1f3a;
    --blue: #123b68;
    --blue-light: #eaf2fa;

    --yellow: #f5b400;
    --yellow-dark: #d99b00;

    --green: #138a57;

    --white: #ffffff;

    --background: #f5f7fa;
    --surface: #ffffff;
    --surface-soft: #f8fafc;

    --text: #182536;
    --text-light: #617083;
    --text-muted: #8290a0;

    --border: #e3e8ee;

    --shadow:
        0 18px 55px rgba(7, 26, 49, .08);

    --container: 1180px;

    --radius: 18px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: var(--text);

    background: var(--background);

    line-height: 1.7;

}


body,
button,
input,
textarea,
select {

    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

}


a {
    text-decoration: none;
    color: inherit;
}


button {
    font: inherit;
}


.container {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin-left: auto;
    margin-right: auto;

}


::selection {

    background: var(--yellow);

    color: var(--navy);

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(
        255,
        255,
        255,
        .97
    );

    border-bottom:
        1px solid var(--border);

    backdrop-filter:
        blur(12px);

}


.header-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    gap: 25px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 11px;

    min-width: 190px;

}


.logo-symbol {

    width: 46px;

    height: 46px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background:
        var(--primary);

    color:
        var(--yellow);

    font-size: 21px;

    box-shadow:
        0 9px 22px
        rgba(7, 26, 49, .16);

}


.logo-copy {

    display: flex;

    flex-direction: column;

    line-height: 1.05;

}


.logo-copy strong {

    color: var(--primary);

    font-size: 18px;

    letter-spacing: .8px;

}


.logo-copy small {

    margin-top: 4px;

    color: var(--yellow-dark);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}


/* =========================================================
   DESKTOP NAV
========================================================= */

.desktop-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    flex: 1;

}


.desktop-nav a {

    color: #4b5969;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        color .2s ease;

}


.desktop-nav a:hover {

    color:
        var(--primary);

}


/* =========================================================
   HEADER PHONE
========================================================= */

.header-phone {

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 11px 15px;

    border-radius: 11px;

    background:
        var(--primary);

    color:
        var(--white);

    font-size: 13px;

    font-weight: 800;

    white-space: nowrap;

}


.header-phone small {

    display: block;

    margin-bottom: 2px;

    color: #aebdce;

    font-size: 8px;

    letter-spacing: 1.2px;

}


.phone-icon {

    color:
        var(--yellow);

    font-size: 18px;

}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.mobile-menu-btn {

    display: none;

    width: 44px;

    height: 44px;

    border: 0;

    border-radius: 11px;

    background:
        var(--primary);

    cursor: pointer;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    padding: 9px;

}


.mobile-menu-btn span {

    width: 23px;

    height: 2px;

    border-radius: 5px;

    background:
        var(--white);

    transition:
        transform .25s ease,
        opacity .2s ease;

}


.mobile-menu-btn.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.mobile-menu-btn.active span:nth-child(2) {

    opacity: 0;

}


.mobile-menu-btn.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    display: none;

    position: absolute;

    left: 0;

    right: 0;

    top: 100%;

    background:
        var(--white);

    border-top:
        1px solid var(--border);

    box-shadow:
        0 20px 35px
        rgba(7, 26, 49, .12);

}


.mobile-menu.open {

    display: block;

}


.mobile-menu nav {

    width:
        min(
            calc(100% - 28px),
            600px
        );

    margin: auto;

    padding:
        10px 0 18px;

    display: flex;

    flex-direction: column;

}


.mobile-menu nav a {

    padding:
        13px 8px;

    color:
        var(--primary);

    border-bottom:
        1px solid var(--border);

    font-size: 14px;

    font-weight: 700;

}


.mobile-menu nav a:hover,
.mobile-menu nav a.active {

    color:
        var(--yellow-dark);

}


.mobile-menu .mobile-phone {

    margin-top: 12px;

    text-align: center;

    border: 0;

    border-radius: 10px;

    background:
        var(--yellow);

    color:
        var(--navy);

}


/* =========================================================
   HERO
========================================================= */

.faq-hero {

    position: relative;

    overflow: hidden;

    padding:
        82px 0 92px;

    background:
        linear-gradient(
            135deg,
            #06172d 0%,
            #0b1f3a 55%,
            #123b68 100%
        );

    color:
        var(--white);

}


.hero-decoration {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}


.hero-decoration-one {

    width: 480px;

    height: 480px;

    right: -220px;

    top: -270px;

    border:
        75px solid
        rgba(245, 180, 0, .07);

}


.hero-decoration-two {

    width: 260px;

    height: 260px;

    left: -150px;

    bottom: -160px;

    border:
        55px solid
        rgba(255, 255, 255, .035);

}


.hero-content {

    position: relative;

    z-index: 2;

}


.breadcrumb {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 30px;

    color:
        #9fb0c3;

    font-size: 12px;

}


.breadcrumb a {

    color:
        var(--yellow);

    font-weight: 800;

}


.hero-kicker {

    display: inline-block;

    margin-bottom: 12px;

    color:
        var(--yellow);


    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2.2px;

}


.faq-hero h1 {

    max-width: 800px;

    margin-bottom: 18px;

    font-size:
        clamp(40px, 6vw, 67px);

    line-height: 1.04;

    letter-spacing: -1.3px;

}


.faq-hero p {

    max-width: 720px;

    color:
        #c3cfdb;

    font-size: 17px;

}


.hero-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;

    flex-wrap: wrap;

}


.hero-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding:
        0 21px;

    border-radius: 11px;

    font-size: 13px;

    font-weight: 900;

    transition:
        transform .2s ease;

}


.hero-btn:hover {

    transform:
        translateY(-2px);

}


.hero-btn-primary {

    background:
        var(--yellow);

    color:
        var(--navy);

}


.hero-btn-secondary {

    border:
        1px solid
        rgba(255,255,255,.2);

    background:
        rgba(255,255,255,.06);

    color:
        var(--white);

}


/* =========================================================
   QUICK INFO
========================================================= */

.quick-info {

    position: relative;

    margin-top: -32px;

    z-index: 10;

}


.quick-info-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;

}


.quick-card {

    display: flex;

    align-items: center;

    gap: 13px;

    min-height: 92px;

    padding:
        17px 18px;

    background:
        var(--white);

    border:
        1px solid var(--border);

    border-radius: 15px;

    box-shadow:
        0 15px 35px
        rgba(7, 26, 49, .08);

}


.quick-icon {

    width: 43px;

    height: 43px;

    flex: 0 0 43px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background:
        #f4f7fa;

    color:
        var(--primary);

    font-size: 19px;

}


.quick-card strong {

    display: block;

    color:
        var(--primary);

    font-size: 13px;

}


.quick-card span:not(.quick-icon) {

    display: block;

    margin-top: 2px;

    color:
        var(--text-muted);

    font-size: 11px;

}


/* =========================================================
   MAIN
========================================================= */

.faq-main {

    padding:
        75px 0 90px;

}


.faq-layout {

    display: grid;

    grid-template-columns:
        285px minmax(0, 1fr);

    gap: 46px;

    align-items: start;

}


/* =========================================================
   SIDEBAR
========================================================= */

.faq-sidebar {

    position: sticky;

    top: 105px;

}


.sidebar-card {

    padding:
        27px;

    background:
        var(--white);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    box-shadow:
        var(--shadow);

}


.sidebar-kicker {

    color:
        var(--yellow-dark);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1.7px;

}


.sidebar-card h2 {

    margin:
        7px 0 22px;

    color:
        var(--primary);

    font-size: 21px;

    line-height: 1.3;

}


.category-nav {

    display: flex;

    flex-direction: column;

}


.category-link {

    display: flex;

    align-items: center;

    gap: 11px;

    padding:
        11px 0;

    color:
        var(--text-light);

    border-bottom:
        1px solid var(--border);

    font-size: 12px;

    font-weight: 700;

    transition:
        color .2s ease,
        padding-left .2s ease;

}


.category-link span {

    width: 28px;

    height: 28px;

    display: grid;

    place-items: center;

    border-radius: 8px;

    background:
        #f1f4f7;

    color:
        var(--primary);

    font-size: 9px;

    font-weight: 900;

}


.category-link:hover,
.category-link.active {

    color:
        var(--primary);

    padding-left: 5px;

}


.category-link.active span {

    background:
        var(--yellow);

}


.sidebar-contact {

    margin-top: 18px;

    padding:
        25px;

    border-radius:
        var(--radius);

    background:
        linear-gradient(
            145deg,
            #fffdf4,
            #fff8dc
        );

    border:
        1px solid
        rgba(245,180,0,.28);

}


.contact-mini-icon {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    margin-bottom: 12px;

    border-radius: 50%;

    background:
        var(--yellow);

    color:
        var(--navy);

    font-size: 18px;

    font-weight: 900;

}


.sidebar-contact h3 {

    margin-bottom: 8px;

    color:
        var(--primary);

    font-size: 16px;

    line-height: 1.35;

}


.sidebar-contact p {

    margin-bottom: 15px;

    color:
        #6b7785;

    font-size: 12px;

}


.sidebar-contact a {

    color:
        var(--yellow-dark);

    font-size: 12px;

    font-weight: 900;

}


/* =========================================================
   FAQ CONTENT
========================================================= */

.faq-content {

    min-width: 0;

}


.faq-intro {

    margin-bottom: 48px;

}


.section-kicker {

    display: inline-block;

    margin-bottom: 9px;

    color:
        var(--yellow-dark);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 2px;

}


.faq-intro h2 {

    max-width: 720px;

    margin-bottom: 15px;

    color:
        var(--primary);

    font-size:
        clamp(28px, 4vw, 40px);

    line-height: 1.15;

    letter-spacing: -.5px;

}


.faq-intro p {

    max-width: 780px;

    color:
        var(--text-light);

    font-size: 15px;

}


/* =========================================================
   FAQ CATEGORY
========================================================= */

.faq-category {

    scroll-margin-top: 105px;

    margin-bottom: 55px;

}


.category-heading {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;

}


.category-number {

    width: 48px;

    height: 48px;

    flex: 0 0 48px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    background:
        var(--primary);

    color:
        var(--yellow);

    font-size: 11px;

    font-weight: 900;

}


.category-heading > div > span {

    color:
        var(--yellow-dark);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;

}


.category-heading h2 {

    margin-top: 2px;

    color:
        var(--primary);

    font-size: 24px;

    line-height: 1.2;

}


/* =========================================================
   ACCORDION
========================================================= */

.accordion {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.accordion details {

    overflow: hidden;

    background:
        var(--white);

    border:
        1px solid var(--border);

    border-radius: 14px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;

}


.accordion details:hover {

    border-color:
        #cbd5df;

}


.accordion details[open] {

    border-color:
        rgba(245,180,0,.55);

    box-shadow:
        0 10px 30px
        rgba(7,26,49,.06);

}


.accordion summary {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        20px 22px;

    cursor: pointer;

    list-style: none;

    color:
        var(--primary);

    font-size: 14px;

    font-weight: 800;

}


.accordion summary::-webkit-details-marker {

    display: none;

}


.accordion summary b {

    width: 29px;

    height: 29px;

    flex: 0 0 29px;

    display: grid;

    place-items: center;

    border-radius: 8px;

    background:
        #f2f5f8;

    color:
        var(--primary);

    font-size: 18px;

    font-weight: 400;

    transition:
        transform .2s ease,
        background .2s ease;

}


.accordion details[open]
summary b {

    transform:
        rotate(45deg);

    background:
        var(--yellow);

}


.answer {

    padding:
        0 22px 22px;

    border-top:
        1px solid #edf0f3;

}


.answer p {

    margin-top: 16px;

    color:
        var(--text-light);

    font-size: 14px;

    line-height: 1.75;

}


.answer-highlight {

    display: flex;

    flex-direction: column;

    gap: 4px;

    margin-top: 18px;

    padding:
        15px 17px;

    border-left:
        3px solid var(--yellow);

    border-radius:
        0 10px 10px 0;

    background:
        #fffaf0;

}


.answer-highlight strong {

    color:
        var(--primary);

    font-size: 12px;

}


.answer-highlight span {

    color:
        var(--text-light);

    font-size: 12px;

}


/* =========================================================
   FAQ CONTACT
========================================================= */

.faq-contact-box {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        30px;

    border-radius:
        18px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--blue)
        );

    color:
        var(--white);

}


.faq-contact-content > span {

    color:
        var(--yellow);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.7px;

}


.faq-contact-content h2 {

    margin:
        6px 0 9px;

    font-size: 26px;

    line-height: 1.2;

}


.faq-contact-content p {

    max-width: 570px;

    color:
        #c2cedb;

    font-size: 13px;

}


.faq-contact-actions {

    display: flex;

    flex-direction: column;

    gap: 9px;

    min-width: 190px;

}


.contact-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 44px;

    padding:
        0 15px;

    border-radius: 9px;

    font-size: 12px;

    font-weight: 900;

}


.contact-btn.phone {

    background:
        var(--yellow);

    color:
        var(--navy);

}


.contact-btn.whatsapp {

    background:
        rgba(255,255,255,.09);

    border:
        1px solid
        rgba(255,255,255,.18);

    color:
        var(--white);

}


/* =========================================================
   SEO INFO
========================================================= */

.seo-info {

    padding:
        75px 0;

    background:
        var(--white);

    border-top:
        1px solid var(--border);

}


.seo-info-inner {

    max-width:
        880px;

}


.seo-info h2 {

    margin-bottom: 16px;

    color:
        var(--primary);

    font-size:
        clamp(27px, 4vw, 37px);

    line-height: 1.2;

}


.seo-info p {

    margin-bottom: 15px;

    color:
        var(--text-light);

    font-size: 14px;

}


/* =========================================================
   MAIN CTA
========================================================= */

.main-cta {

    padding:
        70px 0;

    background:
        linear-gradient(
            135deg,
            #06172d,
            #0f3157
        );

    color:
        var(--white);

}


.cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

}


.cta-inner > div:first-child > span {

    color:
        var(--yellow);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.8px;

}


.cta-inner h2 {

    margin:
        7px 0 10px;

    font-size:
        clamp(28px, 4vw, 42px);

    line-height: 1.1;

}


.cta-inner p {

    color:
        #c1cedb;

    font-size: 14px;

}


.cta-buttons {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;

}


.cta-phone,
.cta-whatsapp {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 47px;

    padding:
        0 19px;

    border-radius: 10px;

    font-size: 12px;

    font-weight: 900;

}


.cta-phone {

    background:
        var(--yellow);

    color:
        var(--navy);

}


.cta-whatsapp {

    background:
        rgba(255,255,255,.08);

    border:
        1px solid
        rgba(255,255,255,.18);

    color:
        var(--white);

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background:
        #051326;

    color:
        #a6b6c8;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 45px;

    padding:
        65px 0 48px;

}


.footer-logo {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 17px;

}


.footer-logo .logo-symbol {

    width: 42px;

    height: 42px;

}


.footer-logo > span:last-child {

    display: flex;

    flex-direction: column;

    line-height: 1.05;

}


.footer-logo strong {

    color:
        var(--white);

    font-size: 17px;

}


.footer-logo small {

    margin-top: 4px;

    color:
        var(--yellow);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.7px;

}


.footer-brand p {

    max-width: 330px;

    margin-bottom: 17px;

    color:
        #8fa1b5;

    font-size: 12px;

    line-height: 1.8;

}


.footer-phone {

    color:
        var(--yellow);

    font-size: 18px;

    font-weight: 900;

}


.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 8px;

}


.footer-column h3 {

    margin-bottom: 8px;

    color:
        var(--white);

    font-size: 14px;

}


.footer-column a,
.footer-column p {

    color:
        #8fa1b5;

    font-size: 12px;

    transition:
        color .2s ease;

}


.footer-column a:hover {

    color:
        var(--yellow);

}


.footer-whatsapp {

    color:
        var(--yellow) !important;

    font-weight: 900;

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    border-top:
        1px solid
        rgba(255,255,255,.07);

}


.footer-bottom-inner {

    min-height: 72px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p,
.footer-bottom a {

    color:
        #71859b;

    font-size: 10px;

}


.footer-bottom-inner > div {

    display: flex;

    gap: 18px;

}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-float {

    position: fixed;

    right: 22px;

    bottom: 22px;

    z-index: 2000;

    display: flex;

    align-items: center;

    gap: 7px;

    padding:
        10px 15px;

    border-radius:
        50px;

    background:
        var(--green);

    color:
        var(--white);

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.22);

    transition:
        transform .2s ease;

}


.whatsapp-float:hover {

    transform:
        translateY(-3px);

}


.whatsapp-float span {

    font-size: 18px;

}


.whatsapp-float small {

    font-size: 10px;

    font-weight: 900;

}


/* =========================================================
   RESPONSIVE 1050
========================================================= */

@media (max-width: 1050px) {


    .desktop-nav {

        gap: 13px;

    }


    .desktop-nav a {

        font-size: 11px;

    }


    .faq-layout {

        grid-template-columns:
            245px minmax(0, 1fr);

        gap: 30px;

    }


    .quick-info-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   RESPONSIVE 850
========================================================= */

@media (max-width: 850px) {


    .desktop-nav {

        display: none;

    }


    .mobile-menu-btn {

        display: flex;

        margin-left: auto;

    }


    .header-phone {

        margin-left: auto;

    }


    .faq-layout {

        display: block;

    }


    .faq-sidebar {

        position: static;

        margin-bottom: 35px;

    }


    .category-nav {

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        column-gap: 25px;

    }


    .sidebar-contact {

        display: none;

    }


    .faq-contact-box {

        flex-direction: column;

        align-items: flex-start;

    }


    .faq-contact-actions {

        width: 100%;

        flex-direction: row;

    }


    .contact-btn {

        flex: 1;

    }


    .cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }

}


/* =========================================================
   RESPONSIVE 600
========================================================= */

@media (max-width: 600px) {


    .container {

        width:
            min(
                calc(100% - 28px),
                var(--container)
            );

    }


    .header-inner {

        min-height: 70px;

        gap: 8px;

    }


    .logo {

        min-width: auto;

    }


    .logo-symbol {

        width: 42px;

        height: 42px;

    }


    .logo-copy strong {

        font-size: 15px;

    }


    .logo-copy small {

        font-size: 7px;

    }


    .header-phone {

        padding:
            9px 10px;

        font-size: 10px;

    }


    .phone-icon {

        font-size: 15px;

    }


    .header-phone small {

        display: none;

    }


    .mobile-menu-btn {

        width: 42px;

        height: 42px;

    }


    .faq-hero {

        padding:
            50px 0 70px;

    }


    .faq-hero h1 {

        font-size: 39px;

    }


    .faq-hero p {

        font-size: 14px;

    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-btn {

        width: 100%;

    }


    .quick-info {

        margin-top: -22px;

    }


    .quick-info-grid {

        grid-template-columns: 1fr;

    }


    .quick-card {

        min-height: 76px;

    }


    .faq-main {

        padding:
            45px 0 65px;

    }


    .category-nav {

        grid-template-columns: 1fr;

    }


    .sidebar-card {

        padding: 21px;

    }


    .faq-intro {

        margin-bottom: 35px;

    }


    .faq-intro h2 {

        font-size: 29px;

    }


    .category-heading {

        align-items: flex-start;

    }


    .category-heading h2 {

        font-size: 21px;

    }


    .accordion summary {

        padding:
            17px 16px;

        font-size: 13px;

    }


    .answer {

        padding:
            0 16px 18px;

    }


    .answer p {

        font-size: 13px;

    }


    .faq-contact-box {

        padding:
            23px 19px;

    }


    .faq-contact-content h2 {

        font-size: 23px;

    }


    .faq-contact-actions {

        flex-direction: column;

    }


    .contact-btn {

        width: 100%;

    }


    .seo-info {

        padding:
            55px 0;

    }


    .seo-info h2 {

        font-size: 28px;

    }


    .cta-inner h2 {

        font-size: 30px;

    }


    .cta-buttons {

        width: 100%;

        flex-direction: column;

    }


    .cta-phone,
    .cta-whatsapp {

        width: 100%;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 32px;

        padding:
            45px 0;

    }


    .footer-bottom-inner {

        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding:
            18px 0;

    }


    .footer-bottom-inner > div {

        flex-wrap: wrap;

        justify-content: center;

    }


    .whatsapp-float {

        right: 14px;

        bottom: 14px;

    }

}


/* =========================================================
   RESPONSIVE 390
========================================================= */

@media (max-width: 390px) {


    .logo-copy {

        display: none;

    }


    .header-phone {

        margin-left: auto;

    }


    .faq-hero h1 {

        font-size: 34px;

    }


    .category-number {

        width: 42px;

        height: 42px;

        flex-basis: 42px;

    }


    .category-heading {

        gap: 11px;

    }

}

