/* ============================================================
   ALTITUDE VISUAL - MAIN CSS
   Colors: --navy #0F172A  --blue #5AAFDA  --white #fff
   Fonts:  Montserrat (headings), Noto Sans (body)
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --navy:      #0F172A;
    --navy-deep: #070614;
    --blue:      #5AAFDA;
    --blue-dark: #3D8FAF;
    --white:     #ffffff;
    --light:     #E7F6FF;
    --muted:     rgba(255,255,255,0.6);
    --border:    rgba(255,255,255,0.1);
    --radius:    4px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    background: var(--navy);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}
.btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); }

.btn--white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn--white:hover { background: var(--light); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--navy);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
    background: rgba(15,23,42,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 72px;
}

.header__logo { height: 48px; width: auto; }
.header__logo-link { flex-shrink: 0; }

.header__nav { margin-left: auto; }
.header__nav ul { display: flex; gap: 2rem; }
.header__nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
.header__nav a:hover { color: var(--blue); }

.header__cta { margin-left: 1.5rem; }

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 4px;
}
.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero__bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* Shorter hero variant */
.hero--short {
    height: 65vh;
    min-height: 420px;
}

/* Hero centered layout */
.hero__content--centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}
.hero__content--centered .hero__headline {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 0.1rem;
}
.hero__headline--bar::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: var(--blue);
    margin: 1.35rem auto 0;
}
.hero__logo-center {
    height: 260px;
    width: auto;
    margin-bottom: 2rem;
}

/* Video hero */
.hero--video .hero__video-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero--video .hero__video-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;  /* 16/9 × 100vh */
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw; /* 9/16 × 100vw */
    transform: translate(-50%, -50%);
    border: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7,6,20,0.55) 0%, rgba(7,6,20,0.75) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1rem;
}

.hero__headline {
    font-size: clamp(2.5rem, 6vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero__quote {
    margin-top: 3rem;
    border-left: 3px solid var(--blue);
    padding-left: 1.25rem;
}
.hero__quote-icon {
    width: 32px;
    margin-bottom: 0.75rem;
    opacity: 0.7;
}
.hero__quote p {
    font-style: italic;
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
}
.hero__quote span {
    font-size: 0.8rem;
    color: var(--blue);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 0.4rem;
    display: block;
}

/* ============================================================
   QUOTE STRIP
   ============================================================ */
.quote-strip {
    background: #1e2535;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}
.quote-strip__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}
.quote-strip__icon {
    width: 44px;
    flex-shrink: 0;
    opacity: 0.6;
}
.quote-strip__text {
    font-style: italic;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.4rem;
    max-width: 700px;
    line-height: 1.5;
}
.quote-strip__attr {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--blue);
    text-transform: uppercase;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 360px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 72px;
}

.page-hero__content {
    position: relative;
    z-index: 2;
}
.page-hero__content h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 0.5rem;
}
.page-hero__content p {
    font-size: 1.1rem;
    color: var(--light);
    opacity: 0.85;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5rem 0; }

.section--dark  { background: var(--navy); }
.section--navy  { background: var(--navy-deep); }

.section__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
    display: block;
}

.section__heading {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 2.5rem;
}
.section__heading--center { text-align: center; }

.section__subtext {
    text-align: center;
    max-width: 600px;
    margin: -1.5rem auto 3rem;
    color: var(--muted);
}

/* ============================================================
   SERVICES GRID (homepage 2-col cards)
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(90,175,218,0.15);
}

.service-card__img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.service-card__body {
    padding: 1.75rem;
}
.service-card__body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.service-card__body p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ============================================================
   SPLIT SECTION (about teaser)
   ============================================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.split-section__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-section__body {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}
.split-section__body h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 0.5rem; }
.split-section__body p { color: var(--muted); }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}
.gallery-grid__item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.3s;
}
.gallery-grid__item:hover img { transform: scale(1.03); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: var(--blue);
    padding: 4rem 0;
}
.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-banner p  { color: rgba(255,255,255,0.8); margin-top: 0.4rem; }

/* ============================================================
   ABOUT - content split
   ============================================================ */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.content-split__body h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.content-split__body p  { color: var(--muted); margin-bottom: 1rem; }
.content-split__img img { border-radius: var(--radius); width: 75%; object-fit: cover; }
.content-split__img--duo { display: flex; gap: 0.75rem; }
.content-split__img--duo img { width: 50%; height: 100%; object-fit: cover; }

/* ============================================================
   VALUES GRID
   ============================================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.value-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: border-color 0.2s;
}
.value-card:hover { border-color: var(--blue); }

.value-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    color: var(--blue);
}
.value-card__icon svg { width: 100%; height: 100%; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.value-card p  { color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   SERVICES - alternating list
   ============================================================ */
.service-list { display: flex; flex-direction: column; gap: 5rem; padding-top: 4rem; }

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.service-item--reverse { direction: rtl; }
.service-item--reverse > * { direction: ltr; }

.service-item__img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
}
.service-item__body h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.service-item__body p  { color: var(--muted); margin-bottom: 1.5rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2  { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.contact-info > p { color: var(--muted); margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-details li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--muted);
}
.contact-details li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--blue); }

.contact-form-wrap { background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.5rem; color: rgba(255,255,255,0.7); }
.form-group label span { color: var(--blue); }
.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--white);
    padding: 0.75rem 1rem;
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; }

.form-success {
    background: rgba(90,175,218,0.15);
    border: 1px solid var(--blue);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    font-size: 0.95rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy-deep);
    padding-top: 4rem;
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer__logo { height: 44px; width: auto; margin-bottom: 1rem; }
.footer__tagline { font-size: 0.9rem; color: var(--muted); }

.footer__social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.25rem;
}
.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--muted);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer__social a svg { width: 15px; height: 15px; }
.footer__social a:hover { color: var(--white); border-color: var(--blue); background: rgba(90,175,218,0.1); }

.footer__links h4,
.footer__contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.25rem;
}

.footer__links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }

.footer__contact p { color: var(--muted); font-size: 0.9rem; line-height: 2; }

.footer__bottom {
    padding: 1.25rem 0;
    text-align: center;
}
.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   CLIENTS TICKER
   ============================================================ */
.clients-section { padding-bottom: 0; }

.clients-ticker {
    overflow: hidden;
    padding: 1.75rem 0;
    background: var(--blue);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-ticker__track {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    width: max-content;
    animation: ticker-scroll 35s linear infinite;
    /* Needed so mix-blend-mode on child logos has a blue reference to blend against
       even inside the animated compositing layer */
    background: var(--blue);
}
.clients-ticker__track:hover { animation-play-state: paused; }

.clients-ticker__logo {
    height: 48px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: filter 0.3s, opacity 0.3s;
    flex-shrink: 0;
}
.clients-ticker__logo:hover {
    filter: none;
    opacity: 1;
}

/* invert(1): white bg -> black -> screen(black,blue) = blue (transparent)
               black design -> white -> screen(white,blue) = white (visible) */
.clients-ticker__logo--screen {
    filter: invert(1);
    mix-blend-mode: screen;
    opacity: 0.85;
}
.clients-ticker__logo--screen:hover {
    filter: none;
    mix-blend-mode: normal;
    opacity: 1;
}

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

/* ============================================================
   VIDEO GRID (projects page)
   ============================================================ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.video-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(90,175,218,0.15);
}
.video-shorts-row {
    grid-column: 1 / -1;
    display: flex;
    gap: 2rem;
    justify-content: center;
}
.video-card--short {
    width: 25%;
}

.video-card__embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}
.video-card__embed--vertical {
    padding-bottom: 177.78%; /* 9:16 for Shorts */
}
.video-card__embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Video facade (thumbnail + play button, replaced by iframe on click) */
.video-facade {
    cursor: pointer;
}
.video-facade img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s;
}
.video-facade:hover img { opacity: 0.85; }

.video-facade__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 2;
}
.video-facade:hover .video-facade__play {
    transform: translate(-50%, -50%) scale(1.12);
}

/* End-screen overlay - hides YouTube suggested videos */
.video-end-overlay {
    position: absolute;
    inset: 0;
    background: var(--navy-deep);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.video-replay-btn {
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s;
}
.video-replay-btn:hover { background: var(--blue-dark); }

/* ============================================================
   RESPONSIVE - TABLET  (≤ 960px)
   ============================================================ */
@media (max-width: 960px) {
    .services-grid,
    .content-split,
    .contact-layout { grid-template-columns: 1fr; }

    .split-section { grid-template-columns: 1fr; padding: 0; }
    .split-section__img { height: 300px; overflow: hidden; }
    .split-section__img img { height: 100%; }
    .split-section__body { padding: 2.5rem 2rem; }

    .service-item,
    .service-item--reverse { grid-template-columns: 1fr; direction: ltr; }

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

    .footer__inner { grid-template-columns: 1fr 1fr; }
    .cta-banner__inner { flex-direction: column; text-align: center; }

    .service-list { gap: 3rem; }
}

/* ============================================================
   RESPONSIVE - MOBILE  (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {

    /* ── Header ── */
    .header__nav,
    .header__cta { display: none; }
    .header__nav.open { display: flex; }
    .header__hamburger { display: flex; }
    .header__nav {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: var(--navy-deep);
        border-top: 1px solid var(--border);
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
        display: none;
    }
    .header__nav ul { flex-direction: column; gap: 0; }
    .header__nav li a { display: block; padding: 0.85rem 0; border-bottom: 1px solid var(--border); font-size: 1rem; }

    /* ── Hero (front page video hero) ── */
    .hero--short { height: 80vh; }
    .hero__content--centered .hero__headline { font-size: 1.2rem; margin-top: 2rem; }
    .hero__logo-center { height: 160px; margin-bottom: 1.25rem; }
    .hero__headline--bar::after { margin-top: 1rem; }

    /* ── Hero (inner page) ── */
    .page-hero { height: 38vh; min-height: 260px; }
    .page-hero__content h1 { font-size: 1.75rem; }
    .page-hero__content p { font-size: 0.95rem; }

    /* ── Sections ── */
    .section { padding: 3rem 0; }

    /* ── Quote strip ── */
    .quote-strip__text { font-size: 1.05rem; }
    .quote-strip__icon { width: 32px; }

    /* ── Split section ── */
    .split-section__img { height: 220px; }
    .split-section__body { padding: 2rem 1.25rem; }
    .split-section__body h2 { font-size: 1.5rem; }

    /* ── Service cards ── */
    .service-card__img img { height: 200px; }

    /* ── Service list ── */
    .service-list { gap: 2.5rem; padding-top: 2rem; }
    .service-item__img img { height: 240px; }

    /* ── Gallery ── */
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.35rem; }
    .gallery-grid__item img { height: 160px; }

    /* ── Values grid ── */
    .values-grid { grid-template-columns: 1fr; gap: 1rem; }

    /* ── Video grid ── */
    .video-grid { gap: 1.25rem; }

    /* ── CTA banner ── */
    .cta-banner { padding: 2.5rem 0; }
    .cta-banner h2 { font-size: 1.4rem; }

    /* ── Contact ── */
    .contact-form-wrap { padding: 1.5rem 1.25rem; }

    /* ── Footer ── */
    .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
    .site-footer { padding-top: 2.5rem; }
}
