/*
Theme Name: Astra Child
Template: astra
*/

/* =========================================================
   GLOBAL
========================================================= */

:root {
    --primary: #30258b;
    --primary-hover: #241c70;

    --dark: #111827;
    --text: #202938;
    --muted: #687083;

    --light-bg: #f4f7ff;
    --white: #ffffff;

    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: Arial, Helvetica, sans-serif;

    background: var(--light-bg);
    color: var(--text);

    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.container {
    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   WORDPRESS ADMIN BAR
========================================================= */

body.admin-bar .site-header {
    /* WordPress handles admin-bar offset automatically */
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    width: 100%;
    height: 30px;

    background: #111111;
    color: #ffffff;

    font-size: 11px;
}

.top-bar .container {
    height: 100%;

    display: flex;
    align-items: center;
}

.top-bar span {
    display: block;
}


/* =========================================================
   HEADER / LOGO AREA
========================================================= */

.site-header {
    width: 100%;

    margin: 0;
    padding: 0;

    background: #ffffff;
}

.logo-area {
    width: 100%;
    height: 68px;

    background: #f4f7ff;
}

.logo-area .container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;
}

.site-logo a {
    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0;

    text-decoration: none;
}

.site-logo img,
.site-logo img.custom-logo,
.site-logo .custom-logo {
    display: block;

    width: auto !important;
    height: 52px !important;

    max-width: 180px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain;
}


/* =========================================================
   FALLBACK SITE TITLE
========================================================= */

.site-logo .site-title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;

    color: var(--dark);
}


/* =========================================================
   SEARCH ROW
   SEARCH IS COMPLETELY SEPARATE FROM MENU
========================================================= */

.search-row {
    width: 100%;

    background: #ffffff;

    margin: 0;
    padding: 10px 0 8px;

    border: 0;
}

.search-row .container {
    display: flex;

    align-items: center;
    justify-content: flex-end;
}


/* =========================================================
   SEARCH BOX
   TOP RIGHT
========================================================= */

.search-box {
    width: 320px;

    margin: 0;
    padding: 0;

    position: static !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;

    align-self: auto;
}

.search-box form {
    display: flex;

    align-items: center;

    width: 100%;
    height: 40px;

    margin: 0;
    padding: 0;

    background: #ffffff;

    border: 1px solid #cfd5dc;
    border-radius: 5px;

    overflow: hidden;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.search-box input[type="search"] {
    display: block;

    flex: 1 1 auto;

    min-width: 0;

    width: auto;
    height: 38px;

    margin: 0;
    padding: 0 13px;

    border: none !important;
    outline: none !important;

    background: #ffffff;

    color: #222222;

    font-size: 13px;
    line-height: 38px;

    box-shadow: none !important;
}

.search-box input[type="search"]::placeholder {
    color: #8b929b;
}

.search-box input[type="search"]:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.search-box button {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 46px;

    width: 46px;
    height: 38px;

    margin: 0;
    padding: 0;

    border: none;
    border-left: 1px solid #d7dce1;

    border-radius: 0;

    background: #111827;
    color: #ffffff;

    font-size: 15px;
    line-height: 1;

    cursor: pointer;

    transition: background 0.2s ease;
}

.search-box button:hover {
    background: #374151;
}


/* =========================================================
   NAVIGATION AREA
   SEPARATE ROW BELOW SEARCH
========================================================= */

.navigation-area {
    width: 100%;

    height: auto;

    margin: 0;
    padding: 0;

    background: #ffffff;

    border-bottom: 1px solid #dedede;
}


/* =========================================================
   NAVIGATION CONTAINER
========================================================= */

.navigation-area > .container {
    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin-left: auto;
    margin-right: auto;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;
}


/* =========================================================
   MAIN MENU
   NATURAL WIDTH
   NEVER STRETCHED
========================================================= */

.main-menu {
    display: flex;

    align-items: center;
    justify-content: center;

    width: auto !important;

    margin: 0;
    padding: 0;
}


/* =========================================================
   MENU UL
========================================================= */

.main-menu ul.menu {
    display: flex;

    align-items: center;
    justify-content: center;

    width: auto !important;
    max-width: 100%;

    margin: 0;
    padding: 0;

    list-style: none;

    gap: 24px;

    flex-wrap: nowrap;
}


/* =========================================================
   MENU ITEMS
   NATURAL WIDTH
========================================================= */

.main-menu ul.menu li {
    display: block;

    width: auto !important;

    flex: 0 0 auto !important;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* =========================================================
   MENU LINKS
========================================================= */

.main-menu ul.menu li a {
    position: relative;

    display: block;

    width: auto !important;

    margin: 0;
    padding: 11px 0;

    color: #171717;

    font-size: 14px !important;
    font-weight: 600;

    line-height: 1.3;

    text-decoration: none;

    white-space: nowrap;

    transition: color 0.2s ease;
}


/* =========================================================
   REMOVE ASTRA LINK EFFECT
========================================================= */

.main-menu ul.menu li a::after {
    display: none !important;
}


/* =========================================================
   MENU HOVER
========================================================= */

.main-menu ul.menu li a:hover {
    color: var(--primary);
}


/* =========================================================
   ACTIVE MENU
========================================================= */

.main-menu ul.menu li.current-menu-item > a,
.main-menu ul.menu li.current-menu-ancestor > a,
.main-menu ul.menu li.current_page_item > a {
    color: var(--primary);
}


/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    width: 100%;

    background: var(--light-bg);

    padding: 45px 0 90px;

    overflow: hidden;
}

.hero-container {
    position: relative;

    min-height: 540px;

    margin: 0 auto;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image {
    width: 67%;

    margin-left: auto;
}

.hero-image img {
    display: block;

    width: 100%;
    height: 540px;

    margin: 0;
    padding: 0;

    object-fit: cover;

    border-radius: 5px;
}


/* =========================================================
   HERO WHITE CARD
========================================================= */

.hero-card {
    position: absolute;

    top: 50%;
    left: 0;

    transform: translateY(-50%);

    z-index: 2;

    width: 50%;
    min-height: 390px;

    padding: 50px;

    background: #ffffff;

    border-radius: 8px;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.10);

    display: flex;

    flex-direction: column;
    justify-content: center;
}


/* =========================================================
   HERO TYPOGRAPHY
========================================================= */

.hero-card h1 {
    margin: 0 0 12px;

    color: #101828;

    font-size: 42px;
    line-height: 1.12;

    font-weight: 700;
}

.hero-card p {
    max-width: 430px;

    margin: 0 0 30px;

    color: #303846;

    font-size: 17px;
    line-height: 1.6;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin: 0;
}

.hero-buttons .btn {
    display: inline-block;

    margin: 0;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    line-height: 1.4;
}

.hero-buttons .btn-primary {
    padding: 12px 20px;

    background: var(--primary);
    color: #ffffff;

    border: 1px solid var(--primary);

    border-radius: 2px;
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-hover);

    color: #ffffff;
}

.hero-buttons .btn-outline {
    padding: 11px 19px;

    background: #ffffff;
    color: var(--primary);

    border: 1px solid var(--primary);

    border-radius: 2px;
}

.hero-buttons .btn-outline:hover {
    background: var(--primary);

    color: #ffffff;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.vision,
.services {
    width: 100%;
    margin: 0;
    padding: 80px 0;
}

.vision .container,
.services .container {
    display: flex;
    align-items: center;
    gap: 70px;

    width: min(var(--container), calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

.vision .col,
.services .col {
    width: 50%;
    min-width: 0;
}


/* =========================================================
   VISION IMAGE
========================================================= */

.vision .col img {
    display: block;

    width: 100% !important;
    height: 430px !important;

    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: cover;
    border-radius: 8px;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.vision h2,
.services h2,
.clients h2 {
    margin-top: 0;

    color: #111827;

    font-weight: 700;
}


/* =========================================================
   VISION TEXT
========================================================= */

.vision .col p {
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background: #f7f9fc;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .vision .container,
    .services .container {
        gap: 35px;
    }

    .vision .col,
    .services .col {
        width: 50%;
    }

    .vision .col img {
        height: 360px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .vision,
    .services {
        padding: 60px 0;
    }

    .vision .container,
    .services .container {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .vision .col,
    .services .col {
        width: 100%;
    }

    .vision .col img {
        width: 100% !important;
        height: 300px !important;
    }

}


/* =========================================================
   CLIENTS / MARKET PARTICIPANTS
   ========================================================= */

.clients {
    position: relative;

    padding: 80px 0;

    background: #f7f9fc;

    border-top: 1px solid #e8edf3;
    border-bottom: 1px solid #e8edf3;
}


/* =========================================================
   HEADER
   ========================================================= */

.clients-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 42px;
}


.clients-heading {
    max-width: 760px;
}


.section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #2563eb;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;
    line-height: 1.2;
}


.clients-header h2 {
    margin: 0 0 14px;

    color: #111827;

    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -0.7px;
}


.section-subtitle {
    max-width: 680px;

    margin: 0;

    color: #667085;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   PARTICIPANT COUNT
   ========================================================= */

.clients-count {
    display: flex;

    align-items: center;

    flex: 0 0 auto;

    gap: 12px;

    padding: 14px 18px;

    background: #ffffff;

    border: 1px solid #e4e9f0;

    border-radius: 10px;
}


.clients-count strong {
    color: #111827;

    font-size: 28px;
    font-weight: 700;

    line-height: 1;
}


.clients-count span {
    color: #667085;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.35;

    text-transform: uppercase;

    letter-spacing: .7px;
}


/* =========================================================
   GRID
   ========================================================= */

.clients-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   CARD
   ========================================================= */

.client-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 300px;

    padding: 24px;

    background: #ffffff;

    border: 1px solid #e5eaf0;

    border-radius: 12px;

    box-sizing: border-box;

    overflow: hidden;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}


.client-card:hover {
    transform: translateY(-4px);

    border-color: #d6deea;

    box-shadow:
        0 12px 30px rgba(15, 23, 42, .08);
}


/* =========================================================
   LOGO
   ========================================================= */

.client-logo {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100px;

    margin-bottom: 22px;

    background: #f8fafc;

    border: 1px solid #edf1f5;

    border-radius: 9px;

    box-sizing: border-box;
}


.client-logo img {
    display: block;

    width: auto;
    max-width: 78%;
    height: auto;
    max-height: 65px;

    object-fit: contain;
}


/* =========================================================
   CONTENT
   ========================================================= */

.client-content {
    padding-right: 20px;
}


.client-type {
    display: block;

    margin-bottom: 7px;

    color: #2563eb;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.1px;

    line-height: 1.2;
}


.client-content h3 {
    margin: 0 0 8px;

    color: #111827;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.25;
}


.client-content p {
    margin: 0;

    color: #667085;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   ARROW
   ========================================================= */

.client-arrow {
    position: absolute;

    right: 22px;
    bottom: 20px;

    color: #98a2b3;

    font-size: 18px;

    line-height: 1;

    transition:
        color .2s ease,
        transform .2s ease;
}


.client-card:hover .client-arrow {
    color: #2563eb;

    transform: translateX(3px);
}


/* =========================================================
   INFORMATION NOTE
   ========================================================= */

.clients-note {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    max-width: 900px;

    margin: 28px auto 0;

    padding: 14px 16px;

    background: #ffffff;

    border: 1px solid #e5eaf0;

    border-radius: 8px;
}


.clients-note-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 20px;
    height: 20px;

    background: #eef4ff;

    color: #2563eb;

    border-radius: 50%;

    font-size: 12px;
    font-weight: 700;
}


.clients-note p {
    margin: 0;

    color: #667085;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .clients {
        padding: 65px 0;
    }

    .clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .clients {
        padding: 50px 0;
    }


    .clients-header {
        display: block;

        margin-bottom: 28px;
    }


    .clients-heading {
        max-width: none;
    }


    .clients-header h2 {
        font-size: 29px;
        line-height: 1.18;
    }


    .section-subtitle {
        font-size: 14px;
        line-height: 1.65;
    }


    .clients-count {
        display: inline-flex;

        margin-top: 20px;
    }


    .clients-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .client-card {
        min-height: 0;

        padding: 18px;
    }


    .client-logo {
        height: 90px;

        margin-bottom: 18px;
    }


    .client-logo img {
        max-height: 58px;
    }


    .client-content h3 {
        font-size: 18px;
    }


    .client-content p {
        font-size: 13px;
    }


    .clients-note {
        margin-top: 20px;

        padding: 12px;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .clients {
        padding: 42px 0;
    }

    .clients-header h2 {
        font-size: 26px;
    }

    .client-card {
        padding: 15px;
    }

}


/* =========================================================
   CTA
========================================================= */

.cta {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    margin: 0 0 80px;

    padding: 45px 50px;

    background: #111827;

    color: #ffffff;

    border-radius: 5px;
}

.cta h2,
.cta h3,
.cta p {
    color: #ffffff;
}


/* =========================================================
   BLOG
========================================================= */

.blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}


/* =========================================================
   ASTRA OVERRIDES
========================================================= */

.home .site-content,
.home #primary,
.home .content-area {
    margin: 0;
    padding: 0;
}

.home .entry-content {
    margin: 0;
}

.home .site-main {
    margin: 0;
}

.home .container {
    box-sizing: border-box;
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1100px) {

    /* Search */

    .search-box {
        width: 300px;
    }

    .search-box input[type="search"] {
        font-size: 13px;
    }


    /* Menu */

    .main-menu ul.menu {
        gap: 18px;
    }

    .main-menu ul.menu li a {
        font-size: 13px !important;
    }


    /* Hero */

    .hero-card {
        width: 52%;

        padding: 40px;
    }

    .hero-card h1 {
        font-size: 36px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    /* Search stays ABOVE menu */

    .search-row {
        padding: 10px 0 8px;
    }

    .search-row .container {
        justify-content: flex-end;
    }

    .search-box {
        width: 280px;

        margin-left: auto;
        margin-right: 0;
    }


    /* Navigation */

    .navigation-area {
        padding: 0 0 10px;
    }

    .navigation-area > .container {
        justify-content: center;
    }

    .main-menu {
        width: 100% !important;
    }

    .main-menu ul.menu {
        width: 100% !important;
        max-width: 100%;

        display: flex;

        flex-wrap: wrap;

        justify-content: center;

        column-gap: 18px;
        row-gap: 2px;
    }

    .main-menu ul.menu li {
        width: auto !important;

        flex: 0 0 auto !important;
    }

    .main-menu ul.menu li a {
        font-size: 13px !important;

        padding: 7px 0;
    }


    /* Hero */

    .hero-section {
        padding: 40px 0 70px;
    }

    .hero-container {
        min-height: auto;
    }

    .hero-image {
        width: 100%;

        margin: 0;
    }

    .hero-image img {
        height: 430px;
    }

    .hero-card {
        position: relative;

        top: auto;
        left: auto;

        transform: none;

        width: calc(100% - 60px);

        min-height: auto;

        margin: -70px auto 0;

        padding: 40px;

        z-index: 2;
    }


    /* Sections */

    .vision .container,
    .services .container {
        flex-direction: column;

        gap: 40px;
    }

    .vision .col,
    .services .col {
        width: 100%;
    }


    /* CTA */

    .cta {
        flex-direction: column;

        align-items: flex-start;
    }


    /* Blog */

    .blog-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }


    /* =====================================
       LOGO
    ===================================== */

    .logo-area {
        height: 65px;
    }

    .site-logo img,
    .site-logo img.custom-logo,
    .site-logo .custom-logo {
        height: 48px !important;

        max-width: 160px !important;
    }


    /* =====================================
       SEARCH
       ABOVE MENU
    ===================================== */

    .search-row {
        padding: 10px 0;
    }

    .search-row .container {
        justify-content: flex-end;
    }

    .search-box {
        width: 100%;

        max-width: 320px;

        margin-left: auto;
        margin-right: 0;
    }

    .search-box form {
        width: 100%;
    }

    .search-box input[type="search"] {
        flex: 1 1 auto;

        width: auto;

        font-size: 13px;
    }


    /* =====================================
       MENU
    ===================================== */

    .navigation-area {
        padding: 0 0 11px;
    }

    .navigation-area > .container {
        width: calc(100% - 30px);
    }

    .main-menu {
        width: 100% !important;
    }

    .main-menu ul.menu {
        width: 100% !important;

        max-width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        column-gap: 14px;
        row-gap: 3px;
    }

    .main-menu ul.menu li {
        width: auto !important;

        flex: 0 0 auto !important;
    }

    .main-menu ul.menu li a {
        font-size: 12px !important;

        padding: 6px 0;
    }


    /* =====================================
       HERO
    ===================================== */

    .hero-section {
        padding: 30px 0 60px;
    }

    .hero-image img {
        height: 300px;

        border-radius: 5px;
    }

    .hero-card {
        width: calc(100% - 30px);

        margin-top: -45px;

        padding: 30px 25px;

        border-radius: 7px;
    }

    .hero-card h1 {
        font-size: 30px;
    }

    .hero-card p {
        font-size: 15px;

        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }


    /* =====================================
       SECTIONS
    ===================================== */

    .vision,
    .services {
        padding: 55px 0;
    }


    /* =====================================
       CLIENTS
    ===================================== */

    .clients {
        padding: 55px 0 65px;
    }

    .clients h2 {
        font-size: 26px;
    }

    .logos {
        column-gap: 20px;

        row-gap: 25px;
    }

    .logo-item {
        width: 120px;
        height: 70px;
    }

    .logo-item img {
        max-width: 120px;
        max-height: 65px;
    }


    /* =====================================
       CTA
    ===================================== */

    .cta {
        margin-bottom: 50px;

        padding: 35px 25px;
    }


    /* =====================================
       BLOG
    ===================================== */

    .blog-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   FOOTER
========================================= */

.site-footer {
    width: 100%;
    margin: 0;
    background: #111827;
    color: #ffffff;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-top: 70px;
    padding-bottom: 60px;
}


/* FOOTER BRAND */

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo img,
.footer-logo img.custom-logo,
.footer-logo .custom-logo {
    display: block;
    width: auto !important;
    height: 48px !important;
    max-width: 180px !important;
    margin: 0 !important;
}

.footer-site-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-brand p,
.footer-about p {
    margin: 0;
    color: #c5cad3;
    font-size: 14px;
    line-height: 1.8;
}


/* FOOTER COLUMNS */

.footer-column h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li {
    margin: 0 0 11px;
    padding: 0;
}

.footer-column a {
    color: #c5cad3;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}


/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom-container {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-bottom p {
    margin: 0;
    color: #9ca3af;
    font-size: 13px;
    line-height: 1.5;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-bottom-links a {
    color: #9ca3af;
    font-size: 13px;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}


/* =========================================
   FOOTER TABLET
========================================= */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: 1 / -1;
        max-width: 600px;
    }

}


/* =========================================
   FOOTER MOBILE
========================================= */

@media (max-width: 700px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-top: 50px;
        padding-bottom: 45px;
    }

    .footer-brand,
    .footer-about {
        max-width: none;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-bottom-container {
        min-height: auto;
        padding-top: 25px;
        padding-bottom: 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

}

/* =========================================================
   STRONGER NAVIGATION TYPOGRAPHY
   ========================================================= */

/* DESKTOP MENU */

@media (min-width: 769px) {

    .desktop-navigation .menu > li > a {
        font-family: inherit !important;

        font-size: 14px !important;

        font-weight: 600 !important;

        color: #172033 !important;

        letter-spacing: 0.1px;

        line-height: 1.4 !important;

        text-decoration: none !important;
    }

    .desktop-navigation .menu > li > a:hover {
        color: #1f4f9a !important;
    }

}


/* =========================================================
   MOBILE MENU
   ========================================================= */

@media (max-width: 768px) {

    .mobile-navigation .mobile-menu-list > li > a {
        font-family: inherit !important;

        font-size: 15px !important;

        font-weight: 600 !important;

        color: #172033 !important;

        letter-spacing: 0 !important;

        line-height: 1.45 !important;
    }

    .mobile-navigation summary {
        font-family: inherit !important;

        font-size: 15px !important;

        font-weight: 700 !important;

        letter-spacing: 0 !important;
    }

}