/*
Theme Name: Kiwiagency Theme
Theme URI: https://kiwiagency.com
Author: Kiwi Agency
Description: Custom WordPress theme with Elementor widgets built from Kiwiagency static template.
Version: 1.0.0
Text Domain: kiwiagency
*/

:root {
    /* Color Palette */
    --bg-body: #f7f9fc;
    --white: #ffffff;
    --black: #111111;
    --text-dark: #000000;
    --text-muted: #4a4a4a;
    --border-color: #d1d5db;
    --accent: #000000;

    /* Font */
    --font-main: 'Playfair Display', Georgia, serif;

    /* Shadows & Radii */
    --shadow-nav: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-container: 0 20px 50px rgba(0, 0, 0, 0.08);
    --shadow-pill: 0 8px 25px rgba(0, 0, 0, 0.06);
    --radius-large: 80px;
    --radius-small: 50px;
}

/* RESET & BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: 115px;
}

html {
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* TOP BAR MARQUEE */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background-color: #ffffff;
    color: #444;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1001;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
}

.top-bar-content {
    display: inline-block;
    white-space: nowrap;
    animation: scrollTopBar 25s linear infinite;
    font-size: 0.85rem;
    font-weight: 500;
}

.top-bar-item {
    padding: 0 4rem;
}

@keyframes scrollTopBar {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* HEADER / NAVBAR */
header {
    position: fixed;
    top: 35px;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #f1f2f4;
    border-bottom: 3px solid #111;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease;
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: -1px;
    text-transform: uppercase;
    transform: scaleY(1.1);
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #666;
}

.nav-links a.active {
    background-color: var(--black);
    color: var(--white);
    padding: 0.4rem 1.4rem;
    border-radius: 50px;
}

/* Add WordPress Nav Menu styling alignment */
.nav-links ul {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav-links ul li a {
    font-size: 1rem;
    font-weight: 600;
    text-transform: capitalize;
    transition: color 0.3s;
}

.nav-links ul li.current-menu-item a,
.nav-links ul li.current_page_item a {
    background-color: var(--black);
    color: var(--white);
    padding: 0.4rem 1.4rem;
    border-radius: 50px;
}

.btn-nav {
    background-color: var(--black);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-small);
    font-weight: 600;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-nav:hover {
    transform: scale(1.05);
    background-color: #333;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-color: var(--black);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn-large {
    display: inline-block;
    background-color: var(--white);
    color: var(--black);
    padding: 1rem 3rem;
    border-radius: var(--radius-small);
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* SECTION PADDINGS */
.section-pad {
    padding: 8rem 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

/* SERVICES SPLIT CONTAINERS */
.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    align-items: center;
}

.split-container {
    display: flex;
    flex-direction: row;
    background-color: var(--white);
    max-width: 1400px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto;
}

/* Alternating Radii */
.split-container.image-left {
    border-radius: 0 100px 100px 0;
}

.split-container.image-right {
    flex-direction: row-reverse;
    border-radius: 100px 0 0 100px;
}

.split-media {
    flex: 0 0 45%;
    position: relative;
    min-height: 400px;
    background-color: #e0e0e0;
    /* Base: hidden + premium transition */
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.split-media video,
.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.split-content {
    flex: 0 0 55%;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Base: hidden + premium transition (slight delay for stagger) */
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

/* ── DIRECTION LOGIC ── */
.image-left .split-media  { transform: translateX(100%);  }   /* from right */
.image-left .split-content { transform: translateX(-100%); }   /* from left  */

.image-right .split-media  { transform: translateX(-100%); }  /* from left  */
.image-right .split-content { transform: translateX(100%); }  /* from right */

.split-container.is-visible .split-media,
.split-container.is-visible .split-content {
    opacity: 1;
    transform: translateX(0);
}

.split-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
    color: var(--black);
}

.split-content .subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: var(--black);
}

.pill-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.pill-list li {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    width: fit-content;
    line-height: 1.4;
}

.pill-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.cta-container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-top: 0.5rem;
}

.image-left .cta-container {
    justify-content: center;
    padding-right: 2rem;
}

.image-right .cta-container {
    justify-content: center;
    padding-left: 2rem;
}

.btn-dark {
    background-color: var(--black);
    color: var(--white) !important;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-dark:hover {
    background-color: #333;
    transform: scale(1.03);
}

/* OUR CLIENTS */
.clients-section {
    background-color: #f0f0f0;
    color: var(--black);
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

.clients-section .section-title {
    color: var(--black);
    margin-bottom: 0.8rem;
}

.clients-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 4rem;
}

.clients-track-wrapper {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: scrollClients 30s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes scrollClients {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0rem 0rem;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    min-width: 260px;
    transition: opacity 0.3s;
}

.client-logo-item:hover {
    opacity: 0.5;
}

.client-name {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--black);
    text-transform: uppercase;
    white-space: nowrap;
}

.client-logo-item img {
    height: auto;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* PROJECTS GRID */
.projects-bg {
    background-color: var(--black);
    color: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.project-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

.project-card video,
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.project-card:hover img,
.project-card:hover video {
    transform: scale(1.1);
}

.project-card:hover::after {
    opacity: 1;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    z-index: 2;
}

.project-info span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.project-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

/* TESTIMONIALS */
.testimonials {
    background-color: var(--white);
}

.testi-grid-screenshoted {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.screenshot-testi-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    border-bottom: 4px solid #848B80;
    border-top: 1px solid #848B80;
    border-left: 1px solid #848B80;
    border-right: 1px solid #848B80;
}

.testi-swiper {
    padding-bottom: 3rem !important;
}

.testi-swiper .swiper-slide {
    height: auto;
}

.testi-top {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.testi-user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testi-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.4rem;
}

.testi-stars {
    color: #FBB03B;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testi-avatar {
    position: absolute;
    right: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background-color: #515151;
    border-radius: 50%;
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-quote-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
    font-weight: 600;
}

.testi-pagination-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
    position: relative;
}

.testi-pagination-dots .dot {
    width: 10px;
    height: 10px;
    background-color: #E2E8F0;
    border-radius: 50%;
    cursor: pointer;
}

.testi-pagination-dots .dot.active {
    background-color: #000;
}

/* FOOTER */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 6rem 2rem 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-col p,
.footer-col a {
    color: #a0a0a0;
    line-height: 1.8;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Add custom menu support for footer columns too */
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links ul li a {
    color: #a0a0a0;
    line-height: 1.8;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.85rem;
}

/* HAMBURGER BUTTON */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 9999;
    position: relative;
    pointer-events: auto;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--black);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hamburger → X animation */
.hamburger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* MOBILE MENU PANEL */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 2100;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    visibility: hidden;
}

.mobile-menu.is-open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black);
    padding: 10px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 40px;
}

.mobile-nav-links ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links a,
.mobile-nav-links ul li a {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-links .btn-nav {
    display: block;
    margin-top: 2rem;
    padding: 1.2rem;
    text-align: center;
    font-size: 1.2rem;
}

/* DARK OVERLAY behind the panel */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* --- MOBILE NAVIGATION BREAKPOINT (991px) --- */
@media (max-width: 991px) {
    .nav-links { display: none !important; }
    .hamburger { display: flex !important; }
}

/* --- SMALL MOBILE BREAKPOINT (768px) --- */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
        height: 60vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-bg {
        object-position: center;
    }

    .split-container.image-left,
    .split-container.image-right {
        flex-direction: column;
        border-radius: 30px;
        border: 1px solid #e5e7eb;
    }

    .split-media {
        min-height: 300px;
    }

    .split-content {
        padding: 3rem 2rem;
        align-items: flex-start;
    }

    .cta-container {
        justify-content: center !important;
        padding: 0 !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* --- ABOUT US PAGE SPECIFIC --- */
.about-hero {
    position: relative;
    height: 480px;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-top: 1rem;
    font-family: var(--font-playfair);
    letter-spacing: -1px;
}

.breadcrumbs {
    font-family: var(--font-inter);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(0,0,0,0.3);
    padding: 8px 20px;
    display: inline-block;
    border-radius: 4px;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs span {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Vision & Mission Cards */
.laidback-section {
    background-color: #fafbfc;
    text-align: center;
    padding: 100px 0;
}

.laidback-section h2 {
    font-size: 3.5rem;
    font-family: var(--font-playfair);
    font-weight: 700;
    margin-bottom: 0px;
    letter-spacing: -1px;
}

.about-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 5rem;
}

.about-card {
    background: var(--white);
    padding: 5rem 4rem;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-card:hover {
    transform: translateY(-8px);
}

.about-card h3 {
    font-size: 2.2rem;
    font-family: var(--font-playfair);
    margin-bottom: 2rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 90%;
    margin: 0 auto;
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

.team-section h2 {
    font-size: 3.5rem;
    font-family: var(--font-playfair);
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-section .subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.team-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.team-image {
    aspect-ratio: 4 / 5;
    background-color: #eee;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

/* Social icons layout */
.team-socials {
    position: absolute;
    bottom: 25px;
    left: 25px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.team-socials a {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
}

.team-socials a:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px 0;
}

.team-info h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: var(--font-inter);
    font-weight: 700;
}

.team-info p {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-inter);
}

@media (max-width: 991px) {
    .about-grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .about-hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 2.8rem;
    }

    .laidback-section h2, .team-section h2 {
        font-size: 2.5rem;
    }
}
