/* ===== IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #973d9c;
    color: #e8e8e8;
    overflow-x: hidden;
}

/* ===== VARS ===== */
:root {
    --gold: #d4af37;
    --gold-light: #e8cb5a;
    --dark: #080808;
    --dark2: #111111;
    --dark3: #181818;
    --white: #f5f5f5;
    --gray: #888;
    --pad: clamp(24px, 6vw, 80px);
}

/* ===== UTILS ===== */
.gold {
    color: var(rgb(209, 13, 3));
}

.eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    letter-spacing: 2px;
    line-height: 1;
    color: var(--white);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 13px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-outline {
    display: inline-block;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px var(--pad);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.logo img {
    height: 50px;
}

nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--gold);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.5) 60%,
            rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 var(--pad);
    max-width: 760px;
    padding-top: 80px;
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 9vw, 9rem);
    line-height: 0.95;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    margin-bottom: 36px;
}

.hero-title .line {
    display: block;
}

.hero-title .gold {
    color: var(--#ca1f01);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


/* ===== MARQUEE ===== */
.marquee-strip {
    background: var(--gold);
    overflow: hidden;
    padding: 14px 0;
}

.marquee-track {
    display: flex;
    gap: 40px;
    align-items: center;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-track span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    white-space: nowrap;
}

.marquee-track .dot {
    font-size: 10px;
    color: rgba(0, 0, 0, 0.5);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== SERVICES ===== */
.services {
    padding: 100px var(--pad);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: var(--dark2);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card-body {
    padding: 24px;
}

.card-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.2);
    display: block;
    margin-bottom: 6px;
    line-height: 1;
}

.card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== STATS ===== */
.stats-strip {
    background: var(--dark2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px var(--pad);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1;
}

.stat p {
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 6px;
}

.divider-v {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== PORTFOLIO ===== */
.portfolio {
    padding: 100px var(--pad);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.portfolio-item.tall img {
    height: 536px;
}

.portfolio-item.wide {
    grid-column: span 2;
}

.portfolio-item.wide img {
    height: 260px;
}

.portfolio-item:hover img {
    transform: scale(1.07);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 10px 24px;
    border-radius: 30px;
}

.portfolio-item.tall {
    grid-row: span 2;
}

/* ===== CLIENTS ===== */
.clients {
    padding: 80px var(--pad);
    background: var(--dark2);
}

.brand-slider {
    overflow: hidden;
    padding: 20px 0;
}

.brand-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scrollBrands 20s linear infinite;
}

.brand-track img {
    height: 55px;
    filter: grayscale(100%) brightness(0.6);
    transition: all 0.3s;
}

.brand-track img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.08);
}

@keyframes scrollBrands {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px var(--pad);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px;
    transition: border-color 0.4s;
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.quote {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    margin-bottom: 24px;
}

.quote::before {
    content: '"';
    color: var(--gold);
    font-size: 2rem;
    line-height: 0.5;
    vertical-align: -0.4em;
    margin-right: 4px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.client-info span {
    font-size: 12px;
    color: var(--gray);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 100px var(--pad);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
        var(#94489a);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.cta-inner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--white);
}

.cta-sub {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 36px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px var(--pad);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-left h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px;
    line-height: 1;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-sub {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.ci-icon {
    font-size: 18px;
}

/* FORM */
.contact-right form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

input,
select,
textarea {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 14px 18px;
    transition: border-color 0.3s;
    outline: none;
    width: 100%;
}

input::placeholder,
textarea::placeholder {
    color: var(--gray);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
}

select option {
    background: var(--dark2);
}

textarea {
    height: 140px;
    resize: vertical;
}

/* ===== FOOTER ===== */
footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px var(--pad) 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo img {
    height: 48px;
    margin-bottom: 14px;
}

.footer-logo p {
    font-size: 13px;
    color: var(--gray);
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-social a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25d366;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .portfolio-item.tall {
        grid-row: auto;
    }

    .portfolio-item.tall img {
        height: 260px;
    }

    .portfolio-item.wide {
        grid-column: span 2;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-logo {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {

    /* Nav mobile */
    .hamburger {
        display: flex;
    }

    .header-btn {
        display: none;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 80px 36px;
        gap: 6px;
        border-left: 1px solid rgba(212, 175, 55, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    nav.open {
        right: 0;
    }

    nav a {
        font-size: 22px;
        font-weight: 600;
        color: var(--white);
        padding: 12px 0;
        border-radius: 0;
    }

    nav a:hover {
        color: var(--gold);
        background: none;
    }

    /* Hero mobile */
    .hero-content {
        padding-top: 100px;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(3.5rem, 15vw, 7rem);
    }

    .overlay {
        background: rgba(0, 0, 0, 0.65);
    }

    /* Stats */
    .stats-strip {
        gap: 30px;
    }

    .divider-v {
        display: none;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .portfolio-item.tall img,
    .portfolio-item.wide img,
    .portfolio-item img {
        height: 240px;
    }

    .portfolio-item.wide {
        grid-column: auto;
    }

    .portfolio-item.tall {
        grid-row: auto;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        grid-column: auto;
    }

    /* Service grid */
    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta a {
        text-align: center;
    }

    .stats-strip {
        padding: 40px var(--pad);
    }
}



/* Clickable card */
.card {
    cursor: pointer;
}

.card:hover {
    transform: translateY(-6px);
}

/* Modal backdrop */
.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 9999;
    overflow-y: auto;
    animation: fadeInModal 0.3s ease;
}

.gallery-modal.active {
    display: block;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal inner */
.gm-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

/* Modal header */
.gm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 20px;
}

.gm-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 2px;
    color: #f5f5f5;
}

.gm-title span {
    color: #eb0c0c;
}

.gm-close {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.gm-close:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

/* Section labels */
.gm-section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37;
    margin: 40px 0 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.gm-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
}

/* Image grid — masonry-like */
.gm-img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.gm-img-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #111;
    cursor: zoom-in;
}

.gm-img-item:nth-child(3n+1) {
    aspect-ratio: 4/3;
}

.gm-img-item:nth-child(5n+2) {
    aspect-ratio: 3/4;
}

.gm-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.4s ease;
}

.gm-img-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.75);
}

.gm-img-item .img-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    background: rgba(0, 0, 0, 0.3);
}

.gm-img-item:hover .img-overlay {
    opacity: 1;
}

.img-overlay svg {
    width: 40px;
    height: 40px;
    fill: #d4af37;
}

/* Video grid */
.gm-vid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.gm-vid-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.gm-vid-item video {
    width: 100%;
    display: block;
    max-height: 260px;
    object-fit: cover;
    background: #000;
}

.vid-label {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.vid-label::before {
    content: '▶';
    color: #d4af37;
    font-size: 10px;
}

/* Lightbox (full image view on click) */
.img-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.img-lightbox.active {
    display: flex;
}

.img-lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.88);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    background: none;
    border: none;
}

.lb-close:hover {
    color: #d4af37;
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.lb-nav:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

.lb-prev {
    left: 16px;
}

.lb-next {
    right: 16px;
}

.lb-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
}

@media (max-width: 600px) {
    .gm-img-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gm-vid-grid {
        grid-template-columns: 1fr;
    }

    .gm-inner {
        padding: 20px 14px 60px;
    }
}