/* =========================================================
   SILVERBLIZZ PLACEMENT LLP
   Main Website Stylesheet
   ========================================================= */
/* =========================================================
   1. CSS VARIABLES
   ========================================================= */

:root {
    --ink: #063b2d;
    --ink-2: #07513e;

    --blue: #059669;
    --blue-2: #10b981;

    --silver: #e5f3ee;

    --muted: #64766f;

    --bg: #f6fbf8;
    --card: #ffffff;

    --line: #dcebe5;

    --success: #059669;

    --shadow: 0 18px 55px rgba(6, 59, 45, 0.10);

    --radius: 22px;
}


/* =========================================================
   2. RESET & BASE STYLES
   ========================================================= */
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--ink);
    background: #ffffff;

    line-height: 1.65;
}
a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}
button,
input,
select,
textarea {
    font-family: inherit;
}
/* =========================================================
   3. GLOBAL CONTAINER
   ========================================================= */
.container {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}
/* =========================================================
   4. ACCESSIBILITY
   ========================================================= */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
}
.skip-link:focus {
    left: 12px;
    top: 12px;
    z-index: 9999;

    background: #ffffff;
    color: var(--ink);

    padding: 10px 14px;

    border-radius: 8px;

    box-shadow: var(--shadow);
}
/* =========================================================
   5. TYPOGRAPHY
   ========================================================= */
h1,
h2,
h3 {
    font-family:
        Montserrat,
        Inter,
        sans-serif;
}

h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.02;

    letter-spacing: -0.055em;

    margin: 16px 0 24px;
}

h2 {
    line-height: 1.1;
}

h3 {
    line-height: 1.25;
}

.grad {
    background: linear-gradient(
        100deg,
        #047857,
        #10b981
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.lead {
    font-size: 18px;
    color: #5d7169;

    max-width: 650px;
}


/* =========================================================
   6. TOP BAR
   ========================================================= */

.topbar {
    background: var(--ink);
    color: #c9d6e7;

    font-size: 12px;
}

.topbar .row {
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.topbar a:hover {
    color: #ffffff;
}


/* =========================================================
   7. HEADER / NAVIGATION
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(16px);

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

.nav {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}

.brand img {
    width: 232px;
    height: auto;
}

.navlinks {
    display: flex;
    align-items: center;

    gap: 22px;

    font-size: 13px;
    font-weight: 700;

    color: #36574d;
}

.navlinks a {
    position: relative;

    padding: 8px 0;
}

.navlinks a:hover,
.navlinks a.active,
.navlinks a[aria-current="page"] {
    color: var(--blue);
}

.navlinks a.active::after,
.navlinks a[aria-current="page"]::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background: var(--blue);

    border-radius: 5px;
}

.nav-cta {
    padding: 11px 16px !important;

    border-radius: 999px;

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

    color: #ffffff !important;

    box-shadow:
        0 9px 22px rgba(5, 150, 105, 0.22);
}

.menu {
    display: none;

    border: 0;
    background: none;

    font-size: 28px;

    color: var(--ink);

    cursor: pointer;
}


/* =========================================================
   8. HERO SECTION
   ========================================================= */

.hero {
    padding: 48px 0 56px;

    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(16, 185, 129, 0.18),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #f8fdfb,
            #eefaf5 55%,
            #ffffff
        );
}

.hero-grid {
    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    gap: 65px;

    align-items: center;
}

.eyebrow,
.kicker {
    text-transform: uppercase;

    letter-spacing: 0.16em;

    font-weight: 800;

    font-size: 11px;

    color: var(--blue);
}


/* =========================================================
   9. BUTTONS
   ========================================================= */

.actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 31px;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 14px 20px;

    border-radius: 12px;

    font-weight: 800;
    font-size: 13px;

    border: 1px solid transparent;

    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.primary {
    background: linear-gradient(
        135deg,
        var(--blue),
        #0754b8
    );

    color: #ffffff;

    box-shadow:
        0 12px 26px rgba(5, 150, 105, 0.24);
}

.secondary {
    background: #ffffff;

    border-color: #d6e0eb;

    color: var(--ink);
}


/* =========================================================
   10. HERO CARD
   ========================================================= */

.hero-card {
    padding: 30px;

    background: rgba(255, 255, 255, 0.8);

    border: 1px solid #ffffff;

    border-radius: 28px;

    box-shadow: var(--shadow);
}

.hero-card img {
    width: 100%;

    max-width: 460px;

    margin: 0 auto 20px;
}

.hero-card .tag {
    display: inline-block;

    padding: 7px 10px;

    background: #e8f8f2;

    color: #047857;

    font-weight: 800;
    font-size: 11px;

    border-radius: 999px;
}

.hero-card h3 {
    font-size: 23px;

    margin: 15px 0 7px;
}

.hero-card p {
    color: var(--muted);

    font-size: 14px;

    margin: 0;
}


/* =========================================================
   11. INDUSTRY TICKER
   ========================================================= */

.ticker {
    overflow: hidden;

    background: var(--ink);

    color: #d9f1e8;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.ticker-track {
    display: flex;

    width: max-content;

    animation:
        scroll 32s linear infinite;
}

.ticker span {
    padding: 14px 28px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    white-space: nowrap;
}

.ticker i {
    color: #34d399;

    font-style: normal;

    margin-right: 28px;
}

@keyframes scroll {
    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   12. STATS
   ========================================================= */

.stats {
    padding: 24px 0;

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

    background: #ffffff;
}

.stats-grid {
    display: grid;

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

    gap: 1px;

    background: var(--line);

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

    border-radius: 18px;

    overflow: hidden;
}

.stat {
    padding: 22px;

    background: #ffffff;
}

.stat strong {
    display: block;

    font:
        800 30px/1
        Montserrat,
        sans-serif;

    color: var(--ink);
}

.stat span {
    font-size: 12px;

    color: var(--muted);
}


/* =========================================================
   13. GLOBAL SECTIONS
   ========================================================= */

section {
    padding: 32px 0;
}

.section-head {
    max-width: 700px;

    margin-bottom: 32px;
}

.section-head.center {
    text-align: center;

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

.section-head h2 {
    font-size: clamp(31px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -0.04em;

    margin: 10px 0 14px;
}

.section-head p {
    color: var(--muted);

    margin: 0;
}


/* =========================================================
   14. CARDS
   ========================================================= */

.cards {
    display: grid;

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

    gap: 18px;
}

.card {
    padding: 28px;

    background: var(--card);

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

    border-radius: var(--radius);

    box-shadow:
        0 8px 30px rgba(6, 59, 45, 0.045);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow);

    border-color: #cbddec;
}

.icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #059669,
            #065f46
        );

    color: #ffffff;

    font-weight: 900;
}

.card h3 {
    font-size: 18px;

    margin: 0 0 8px;
}

.card p {
    color: var(--muted);

    font-size: 14px;

    margin: 0;
}


/* =========================================================
   15. JOBS SECTION
   ========================================================= */

.jobs-section {
    background: var(--bg);
}

.job-grid {
    display: grid;

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

    gap: 18px;
}

.job-card {
    display: flex;

    flex-direction: column;

    min-height: 245px;

    padding: 22px;

    background: #ffffff;

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

    border-radius: 18px;
}

.job-top {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 12px;
}

.badge {
    padding: 6px 8px;

    background: #ecfdf5;

    color: #047857;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.06em;

    text-transform: uppercase;
}

.job-card h3 {
    font-size: 18px;

    line-height: 1.25;

    margin: 13px 0 8px;
}

.job-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    color: #66768d;

    font-size: 12px;
}

.job-meta span {
    padding: 5px 8px;

    background: #f2f8f5;

    border-radius: 7px;
}

.job-card .apply {
    margin-top: auto;

    padding-top: 18px;
}


/* =========================================================
   16. PANELS
   ========================================================= */

.split {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 22px;
}

.dark-panel {
    position: relative;

    overflow: hidden;

    padding: 42px;

    background:
        linear-gradient(
            135deg,
            #063b2d,
            #07513e
        );

    color: #ffffff;

    border-radius: 28px;
}

.dark-panel::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -120px;
    bottom: -150px;

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 50%;
}

.dark-panel p {
    color: #b7c9df;
}

.light-panel {
    padding: 42px;

    background: #f7f9fc;

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

    border-radius: 28px;
}


/* =========================================================
   17. CHECKLIST
   ========================================================= */

.checklist {
    display: grid;

    gap: 16px;

    margin-top: 25px;
}

.check {
    display: grid;

    grid-template-columns: 28px 1fr;

    gap: 12px;
}

.checkmark {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    background: #dcf5ec;

    color: #047857;

    border-radius: 50%;

    font-weight: 900;
}

.check strong {
    display: block;
}

.check span {
    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   18. PROCESS / STEPS
   ========================================================= */

.process {
    display: grid;

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

    gap: 14px;
}

.step {
    padding: 24px;

    background: #ffffff;

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

    border-radius: 18px;
}

.step b {
    width: 34px;
    height: 34px;

    display: inline-grid;
    place-items: center;

    margin-bottom: 15px;

    background: #e8f8f2;

    color: #047857;

    border-radius: 50%;

    font-size: 12px;
}

.step h3 {
    font-size: 16px;

    margin: 0 0 7px;
}

.step p {
    color: var(--muted);

    font-size: 13px;

    margin: 0;
}


/* =========================================================
   19. FORMS
   ========================================================= */

.filters {
    display: grid;

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

    gap: 10px;

    margin-bottom: 24px;
}

.input,
select,
textarea {
    width: 100%;

    padding: 13px 14px;

    background: #ffffff;

    border: 1px solid #d8e2ec;

    border-radius: 11px;

    color: var(--ink);

    font: inherit;

    font-size: 13px;

    outline: none;
}

.input:focus,
select:focus,
textarea:focus {
    border-color: #75b9f7;

    box-shadow:
        0 0 0 3px
        rgba(8, 119, 232, 0.08);
}

.form-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 14px;
}

.full {
    grid-column: 1 / -1;
}

form .btn {
    border: 0;

    cursor: pointer;
}

.form-note {
    color: #8291a5;

    font-size: 11px;

    margin-top: 8px;
}


/* =========================================================
   20. JOB BOARD
   ========================================================= */

.job-board {
    display: grid;

    gap: 12px;
}

.job-row {
    display: grid;

    grid-template-columns:
        1.5fr
        0.9fr
        0.75fr
        0.75fr
        auto;

    align-items: center;

    gap: 18px;

    padding: 18px;

    background: #ffffff;

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

    border-radius: 16px;
}

.job-row h3 {
    font-size: 15px;

    margin: 0 0 4px;
}

.job-row small {
    color: var(--muted);
}

.pill {
    display: inline-block;

    padding: 6px 9px;

    background: #f3f6f9;

    color: #52647b;

    border-radius: 999px;

    font-size: 11px;
}

.empty {
    display: none;

    padding: 50px;

    text-align: center;

    color: var(--muted);

    border: 1px dashed #cbd7e5;

    border-radius: 18px;
}


/* =========================================================
   21. QUOTES
   ========================================================= */

.quote {
    padding: 27px;

    background:
        linear-gradient(
            135deg,
            #f4f8fd,
            #ffffff
        );

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

    border-radius: 22px;
}

.quote p {
    color: #33445b;

    font-size: 15px;

    margin: 0 0 18px;
}

.quote strong {
    font-size: 13px;
}

.quote small {
    display: block;

    color: var(--muted);

    margin-top: 2px;
}

.quote-note {
    color: #8291a5;

    font-size: 11px;

    margin-top: 10px;
}


/* =========================================================
   22. FAQ
   ========================================================= */

.faq {
    padding: 18px 0;

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

.faq button {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0;

    background: none;

    border: 0;

    text-align: left;

    color: var(--ink);

    font:
        700 15px
        Inter,
        sans-serif;

    cursor: pointer;
}

.faq p {
    display: none;

    color: var(--muted);

    font-size: 13px;

    margin: 10px 0 0;
}

.faq.open p {
    display: block;
}


/* =========================================================
   23. TEAM
   ========================================================= */

.team {
    display: grid;

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

    gap: 16px;
}

.person {
    overflow: hidden;

    background: #ffffff;

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

    border-radius: 18px;
}

.avatar {
    position: relative;

    height: 190px;

    background:
        radial-gradient(
            circle at 50% 30%,
            #d9e7f6 0 16%,
            transparent 17%
        ),
        linear-gradient(
            145deg,
            #07513e,
            #10b981
        );
}

.avatar::before {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 25px;

    transform: translateX(-50%);

    width: 105px;
    height: 105px;

    background:
        linear-gradient(
            #f1c9ae 0 48%,
            #172338 49% 100%
        );

    border-radius:
        50% 50% 42% 42%;

    box-shadow:
        0 -25px 0 7px #172338;
}

.person .bio {
    padding: 17px;
}

.person h3 {
    font-size: 15px;

    margin: 0 0 3px;
}

.person span {
    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   24. CONTACT
   ========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 28px;
}

.contact-list {
    display: grid;

    gap: 12px;
}

.contact-item {
    padding: 18px;

    background: #ffffff;

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

    border-radius: 16px;
}

.contact-item strong {
    display: block;

    color: #6e7f95;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    margin-bottom: 5px;
}

.contact-item a,
.contact-item span {
    font-weight: 700;
}

.area-grid {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 15px;
}

.area {
    padding: 8px 10px;

    background: #f0f7f4;

    color: #42536b;

    border-radius: 999px;

    font-size: 12px;
}


/* =========================================================
   25. PAGE HERO
   ========================================================= */

.page-hero {
    padding: 72px 0 55px;

    background:
        linear-gradient(
            135deg,
            #f7faff,
            #eefaf5
        );

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

.page-hero h1 {
    font-size: clamp(38px, 5vw, 60px);

    margin-bottom: 12px;
}

.page-hero p {
    max-width: 720px;

    color: var(--muted);

    font-size: 16px;
}


/* =========================================================
   26. FOOTER
   ========================================================= */

.footer {
    padding: 44px 0 20px;

    background: #032b21;

    color: #9eb0c8;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.3fr
        0.8fr
        0.8fr
        0.9fr;

    gap: 35px;
}

.footer-grid-updated {
    grid-template-columns:
        1.45fr
        1.05fr
        1fr
        1.15fr
        1.45fr;

    align-items: start;
}

.footer-brand img {
    width: 220px;

    margin-bottom: 15px;
}

.footer h3 {
    color: #ffffff;

    font-size: 13px;

    margin: 0 0 12px;
}

.footer a {
    display: block;

    font-size: 12px;

    margin: 7px 0;
}

.footer a:hover {
    color: #ffffff;
}

.footer p {
    font-size: 12px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   27. FOOTER SOCIAL ICONS
   ========================================================= */

.footer-social {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 22px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin: 0;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 10px;

    color: #ffffff;

    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: #0f9f6e;

    border-color: #0f9f6e;

    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;

    fill: currentColor;

    stroke: currentColor;

    stroke-width: 1.5;
}

.footer-social svg rect,
.footer-social svg circle {
    fill: none;

    stroke: currentColor;
}


/* =========================================================
   28. FOOTER MAP
   ========================================================= */

.footer-map h3 {
    margin-bottom: 12px;
}

.map-frame {
    width: 100%;
    height: 170px;

    overflow: hidden;

    background: #e8eef2;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 12px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;

    border: 0;
}

.map-link {
    display: inline-block;

    margin-top: 9px;

    font-size: 12px;
}


/* =========================================================
   29. FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    margin-top: 35px;

    padding-top: 17px;

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

    font-size: 11px;
}


/* =========================================================
   30. NOTICES / UTILITIES
   ========================================================= */

.notice {
    padding: 14px 16px;

    margin-bottom: 18px;

    background: #fff8e7;

    border: 1px solid #f1dfaa;

    border-radius: 12px;

    color: #6e5a23;

    font-size: 12px;
}

.hidden {
    display: none !important;
}


/* =========================================================
   31. TABLET RESPONSIVE
   Max-width: 1100px
   ========================================================= */

@media (max-width: 1100px) {

    .footer-grid-updated {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: span 3;
    }

    .footer-map {
        grid-column: span 2;
    }
}


/* =========================================================
   32. TABLET RESPONSIVE
   Max-width: 980px
   ========================================================= */

@media (max-width: 980px) {

    /* Navigation */

    .navlinks {
        position: absolute;

        top: 82px;

        left: 18px;
        right: 18px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 8px;

        background: #ffffff;

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

        border-radius: 16px;

        box-shadow: var(--shadow);
    }

    .navlinks.open {
        display: flex;
    }

    .navlinks a {
        padding: 12px 13px;
    }

    .menu {
        display: block;
    }


    /* Layouts */

    .hero-grid,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cards,
    .job-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .team {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .process {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* Filters */

    .filters {
        grid-template-columns:
            1fr
            1fr;
    }


    /* Job rows */

    .job-row {
        grid-template-columns:
            1.5fr
            1fr
            1fr
            auto;
    }

    .job-row .hide-tablet {
        display: none;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns:
            1fr
            1fr;
    }


    /* Stats */

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* =========================================================
   33. MOBILE RESPONSIVE
   Max-width: 700px
   ========================================================= */

@media (max-width: 700px) {

    .footer-grid-updated {
        grid-template-columns:
            1fr
            1fr;
    }

    .footer-brand,
    .footer-map {
        grid-column: span 2;
    }

    .footer-map {
        margin-top: 4px;
    }
}


/* =========================================================
   34. SMALL MOBILE
   Max-width: 620px
   ========================================================= */

@media (max-width: 620px) {

    .container {
        width: min(
            calc(100% - 28px),
            1180px
        );
    }


    /* Topbar */

    .topbar .row {
        height: auto;

        padding: 7px 0;

        flex-direction: column;

        gap: 2px;
    }


    /* Navigation */

    .nav {
        height: 70px;
    }

    .navlinks {
        top: 70px;
    }

    .brand img {
        width: 190px;
    }


    /* Hero */

    .hero {
        padding: 62px 0;
    }

    .hero-card {
        padding: 22px;
    }


    /* Buttons */

    .actions .btn {
        width: 100%;
    }


    /* Stats */

    .stats-grid {
        grid-template-columns:
            1fr
            1fr;
    }

    .stat {
        padding: 18px;
    }

    .stat strong {
        font-size: 24px;
    }


    /* Sections */

    section {
        padding: 68px 0;
    }


    /* Cards */

    .cards,
    .job-grid,
    .team,
    .process {
        grid-template-columns: 1fr;
    }


    /* Filters */

    .filters {
        grid-template-columns: 1fr;
    }


    /* Job board */

    .job-row {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .job-row .hide-tablet {
        display: block;
    }


    /* Forms */

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full {
        grid-column: auto;
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }


    /* Ticker */

    .ticker span {
        padding: 12px 20px;

        font-size: 10px;
    }
}


/* =========================================================
   35. EXTRA SMALL MOBILE
   Max-width: 480px
   ========================================================= */

@media (max-width: 480px) {

    .footer-grid-updated {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-map {
        grid-column: span 1;
    }

}