/* =====================================================
   Black Panther Fighting Academy (BPFA) | Stylesheet
   ===================================================== */

/* ---------- Design tokens ---------- */
:root {
    --bg: #080808;
    --bg-2: #0d0d0d;
    --card: #141414;
    --card-2: #191919;
    --line: rgba(212, 175, 55, .18);
    --line-soft: rgba(255, 255, 255, .08);
    --gold: #D4AF37;
    --gold-2: #f1d97a;
    --green: #25D366;
    --green-d: #1da851;
    --text: #ffffff;
    --muted: #bcbcbc;
    --muted-2: #8a8a8a;
    --maxw: 1280px;
    --radius: 18px;
    --shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: .5px;
}

/* ---------- Layout helpers ---------- */
.container {
    max-width: var(--maxw);
    margin: auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 70px 0;
}

.gold {
    color: var(--gold);
}

.eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: .8rem;
    font-weight: 600;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.section-head h2 {
    font-size: 2.8rem;
    margin: 14px 0 16px;
    text-transform: uppercase;
}

.section-head p {
    color: var(--muted);
    font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: .25s ease;
}

.btn-gold {
    background: var(--gold);
    color: #000;
}

.btn-gold:hover {
    background: var(--gold-2);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, .25);
}

.btn-green {
    background: var(--green);
    color: #fff;
}

.btn-green:hover {
    background: var(--green-d);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, .25);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: var(--line);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* ===================== NAVBAR ===================== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 8, 8, .85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.navbar {
    max-width: var(--maxw);
    margin: auto;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid var(--line);
    object-fit: cover;
}

.logo-text h2 {
    color: var(--gold);
    font-size: 1.35rem;
    letter-spacing: 1px;
}

.logo-text span {
    color: #ccc;
    font-size: .8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 22px;
}

.nav-links a {
    color: #eaeaea;
    font-weight: 500;
    font-size: .98rem;
    padding: 6px 2px;
    position: relative;
    transition: color .25s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .25s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.whatsapp-btn {
    background: var(--green);
    color: #fff;
    padding: 11px 22px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    transition: .25s;
}

.whatsapp-btn:hover {
    background: var(--green-d);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.6rem;
    cursor: pointer;
}

/* ===================== HERO (home) ===================== */
.hero {
    max-width: var(--maxw);
    margin: auto;
    min-height: 86vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    padding: 70px 40px;
}

.hero-content {
    flex: 1;
}

.subtitle {
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: .85rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 4.4rem;
    margin: 22px 0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero p {
    color: var(--muted);
    font-size: 1.15rem;
    max-width: 620px;
}

.hero-buttons {
    margin-top: 42px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    align-self: stretch;
    position: relative;
}

.hero-image img,
.hero-image video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 0 60px rgba(212, 175, 55, .15);
}

.hero-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: rgba(8, 8, 8, .82);
    backdrop-filter: blur(6px);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badge i {
    color: var(--gold);
    font-size: 1.6rem;
}

.hero-badge strong {
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    display: block;
}

.hero-badge span {
    color: var(--muted-2);
    font-size: .8rem;
}

/* ===================== STATS ===================== */
.stats {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg-2);
}

.stats-grid {
    max-width: var(--maxw);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat {
    padding: 44px 20px;
    border-right: 1px solid var(--line-soft);
}

.stat:last-child {
    border-right: none;
}

.stat h3 {
    font-size: 2.8rem;
    color: var(--gold);
}

.stat p {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .82rem;
    margin-top: 6px;
}

/* ===================== PAGE BANNER (subpages) ===================== */
.page-banner {
    padding: 80px 0 70px;
    text-align: center;
    background:
        radial-gradient(circle at 50% -20%, rgba(212, 175, 55, .14), transparent 60%),
        var(--bg-2);
    border-bottom: 1px solid var(--line);
}

.page-banner h1 {
    font-size: 3.4rem;
    text-transform: uppercase;
    margin: 14px 0 10px;
}

.page-banner p {
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
}

.breadcrumb {
    margin-top: 16px;
    font-size: .85rem;
    color: var(--muted-2);
}

.breadcrumb a:hover {
    color: var(--gold);
}

/* ===================== ABOUT / SPLIT ===================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-media img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.about-text .eyebrow {
    display: block;
    margin-bottom: 12px;
}

.about-text h2 {
    font-size: 2.6rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--muted);
    margin-bottom: 16px;
}

.about-text .btn {
    margin-top: 12px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.tag {
    background: var(--card);
    border: 1px solid var(--line);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: .9rem;
    color: #eee;
}

.tag i {
    color: var(--gold);
    margin-right: 8px;
}

/* ===================== CARD GRID ===================== */
.grid {
    display: grid;
    gap: 26px;
}

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

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

.card {
    background: var(--card);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 34px 30px;
    transition: .28s ease;
}

.card:hover {
    transform: translateY(-6px);
    border-color: var(--line);
    box-shadow: var(--shadow);
}

.card .icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    background: rgba(212, 175, 55, .1);
    color: var(--gold);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.card p {
    color: var(--muted);
    font-size: .96rem;
}

/* achievement card variant */
.ach-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.ach-card .medal {
    font-size: 2rem;
    line-height: 1;
}

.ach-card .year {
    color: var(--gold);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ach-card h3 {
    margin: 4px 0 8px;
}

/* ===================== TIMELINE ===================== */
.timeline {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(var(--gold), transparent);
}

.timeline-item {
    position: relative;
    padding: 0 0 44px 70px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(212, 175, 55, .15);
}

.timeline-item .year {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: .9rem;
    text-transform: uppercase;
}

.timeline-item h2,
.timeline-item h3 {
    font-size: 1.5rem;
    margin: 4px 0 8px;
    text-transform: uppercase;
}

.timeline-item p {
    color: var(--muted);
}

.timeline-item img {
    margin-top: 16px;
    max-width: 340px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--line);
}

/* ===================== GALLERY ===================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery figure {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    border: 1px solid var(--line-soft);
    aspect-ratio: 4 / 3;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.gallery figure:hover img {
    transform: scale(1.08);
}

.gallery figure::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.6rem;
    background: rgba(8, 8, 8, .55);
    opacity: 0;
    transition: .3s;
}

.gallery figure:hover::after {
    opacity: 1;
}

/* lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, .92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 86vh;
    border-radius: 10px;
}

.lightbox .close,
.lightbox .nav {
    position: absolute;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    background: rgba(255, 255, 255, .08);
    border: none;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: .2s;
}

.lightbox .close:hover,
.lightbox .nav:hover {
    background: var(--gold);
    color: #000;
}

.lightbox .close {
    top: 24px;
    right: 24px;
}

.lightbox .prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox .next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===================== CTA BAND ===================== */
.cta {
    text-align: center;
    background: radial-gradient(circle at 50% 120%, rgba(212, 175, 55, .18), transparent 60%), var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cta h2 {
    font-size: 2.8rem;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.cta p {
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================== CONTACT ===================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-card {
    background: var(--card);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 34px 30px;
}

.contact-card h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-card > p {
    color: var(--muted);
    margin-bottom: 18px;
}

.info-row {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .ico {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: rgba(212, 175, 55, .1);
    color: var(--gold);
    font-size: 1.2rem;
}

.info-row span {
    color: var(--muted-2);
    font-size: .78rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-row strong {
    font-weight: 500;
    font-size: 1.02rem;
}

.social-row {
    display: flex;
    gap: 14px;
    margin: 22px 0;
    flex-wrap: wrap;
}

.social-row a {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--card-2);
    border: 1px solid var(--line);
    color: #fff;
    font-size: 1.2rem;
    transition: .25s;
}

.social-row a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

.map-embed {
    margin-top: 30px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    line-height: 0;
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
}

/* ===================== FOOTER ===================== */
footer {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    padding: 60px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo {
    margin-bottom: 18px;
}

.footer-brand p {
    color: var(--muted-2);
    font-size: .95rem;
    max-width: 340px;
}

.footer-col h4 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: var(--muted);
    padding: 7px 0;
    font-size: .95rem;
    transition: .2s;
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--card);
    border: 1px solid var(--line);
    color: #fff;
    transition: .25s;
}

.footer-social a:hover {
    background: var(--gold);
    color: #000;
}

.footer-bottom {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid var(--line-soft);
    text-align: center;
    color: var(--muted-2);
    font-size: .88rem;
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.show {
    opacity: 1;
    transform: none;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
    .section-head h2 { font-size: 2.3rem; }
    .hero h1 { font-size: 3.4rem; }
}

@media (max-width: 992px) {
    .nav-toggle { display: block; }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
        background: var(--bg-2);
        border-bottom: 1px solid var(--line);
        padding: 24px 40px;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: .25s;
    }

    .nav-menu.open {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links {
        flex-direction: column;
        gap: 6px;
    }

    .nav-links a {
        padding: 10px 0;
        border-bottom: 1px solid var(--line-soft);
    }

    .whatsapp-btn {
        justify-content: center;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        min-height: auto;
        padding: 50px 40px;
    }

    .hero-image {
        width: 100%;
        align-self: auto;
    }

    .hero-image img,
    .hero-image video {
        height: 52vh;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }

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

    .stat:nth-child(2) {
        border-right: none;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .container { padding: 0 22px; }
    .navbar { padding: 14px 22px; }
    .nav-menu { padding: 22px; }
    .section { padding: 64px 0; }
    .hero h1 { font-size: 2.6rem; }
    .section-head h2,
    .cta h2,
    .page-banner h1,
    .about-text h2 { font-size: 2rem; }
    .grid-3,
    .grid-2,
    .gallery { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .gallery { grid-template-columns: 1fr 1fr; }
    .timeline-item { padding-left: 58px; }
}

/* ===================== STUDENTS / FIGHTERS ===================== */
.fighters-masonry {
    column-count: 3;
    column-gap: 22px;
}

.fighter-card {
    break-inside: avoid;
    margin-bottom: 22px;
    background: var(--card);
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    overflow: hidden;
    transition: .28s ease;
}

.fighter-card:hover {
    transform: translateY(-5px);
    border-color: var(--line);
    box-shadow: var(--shadow);
}

.fighter-card img {
    width: 100%;
    display: block;
}

.fighter-card .cap {
    padding: 14px 18px;
}

.fighter-card .cap strong {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.fighter-card .cap span {
    color: var(--gold);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* portrait highlight video */
.video-highlight {
    max-width: 420px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: #000;
    line-height: 0;
}

.video-highlight video {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    background: #000;
}

/* back to top button */
.to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--gold);
    color: #000;
    font-size: 1.1rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .3s ease;
    z-index: 90;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .4);
}

.to-top.show {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.to-top:hover {
    background: var(--gold-2);
}

@media (max-width: 992px) {
    .fighters-masonry { column-count: 2; }
}

@media (max-width: 600px) {
    .fighters-masonry { column-count: 1; }
    .to-top { right: 16px; bottom: 16px; }
}

/* ===================== NAV BREAKPOINT (9 items -> hamburger sooner) ===================== */
@media (max-width: 1200px) {
    .nav-toggle { display: block; }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
        background: var(--bg-2);
        border-bottom: 1px solid var(--line);
        padding: 24px 40px;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: .25s;
    }

    .nav-menu.open {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links {
        flex-direction: column;
        gap: 6px;
    }

    .nav-links a {
        padding: 10px 0;
        border-bottom: 1px solid var(--line-soft);
    }

    .whatsapp-btn {
        justify-content: center;
    }
}

/* ===================== COACHING / WAYS TO TRAIN ===================== */
.train-card {
    display: flex;
    flex-direction: column;
}

.train-card .label {
    display: inline-block;
    align-self: flex-start;
    background: rgba(212, 175, 55, .12);
    color: var(--gold);
    border: 1px solid var(--line);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.feature-list {
    margin: 6px 0 26px;
}

.feature-list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: var(--muted);
    padding: 9px 0;
    font-size: .98rem;
    border-bottom: 1px solid var(--line-soft);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--gold);
    margin-top: 5px;
    font-size: .82rem;
    flex-shrink: 0;
}

.train-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(212, 175, 55, .12);
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.about-grid .map-embed {
    margin-top: 0;
}
