/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');

:root {
    /* Brand Colors */
    --primary-color: #0c2461;
    /* Deep Royal Blue */
    --secondary-color: #d4af37;
    /* Gold */
    --accent-color: #b71540;
    /* Deep Red */
    --text-color: #2d3436;
    --light-bg: #f5f6fa;
    --white: #ffffff;
    --dark-overlay: rgba(0, 0, 0, 0.6);

    /* Transitions */
    --transition: all 0.3s ease-in-out;
     --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.2);
    /* Date/Time reserved width on desktop */
    --dtbar-width: 560px;
    --dtbar-gap: 96px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: #ffffff;
    /* Fallback from var */
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Tools */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-title .line {
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-dark {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(9, 26, 69, 0.35);
}
.btn-dark:hover {
    background: #0a1f53;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 26, 69, 0.5);
}

/* Hero button sizing and alignment */
.hero-btns .btn-primary,
.hero-btns .btn-secondary,
.hero-btns .btn-dark {
    text-align: center;
    font-size: clamp(0.75rem, 0.9vw, 1rem);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: #c09b2d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Header */
/* Header */
.header {
    background: #091a45;
    /* Solid Dark Blue */
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* backdrop-filter removed */
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    flex: 0 1 auto;
}

.logo img {
    height: 102px;
    /* Increased max size further */
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1);
    /* Zoom effect on logo hover */
}

.logo-text h1 {
    font-size: 2.2rem;
    /* Further increased */
    color: var(--white);
    /* Changed to White */
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Reduce company name by 20% for non-Arabic (LTR) to balance header */
html[dir="ltr"] .logo-text h1 { font-size: calc(2.2rem * 0.8); }

/* 3-second Pulse on Load */
.pulse-load {
    animation: textPulse 3s ease-in-out forwards;
}

@keyframes textPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
        color: var(--accent-color);
        text-shadow: 0 0 10px rgba(183, 21, 64, 0.5);
    }

    100% {
        transform: scale(1);
    }
}

/* Subtitle removed, style kept minimal just in case */
.logo-text span {
    display: none;
}

/* Added Flex to Navbar for Separation */
/* Navigation Layout */
/* Navigation Layout */
.navbar {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 30px;
    /* Reduced margin */
    margin-left: 20px;
    white-space: nowrap;
    /* Prevent wrapping globally in navbar */
}

.nav-group-main {
    display: flex;
    align-items: center;
    gap: 20px;
    /* Tighter gap (was 30px) */
}

.nav-group-side {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
    /* Tighter gap (was 40px) */
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 1rem;
    /* Smaller font (was 1.1rem) */
    white-space: nowrap;
    /* Force single line */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

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

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    margin-right: 10px;
    /* Small separator from menu */
}

.lang-drop-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 5px 12px;
    /* Slightly smaller padding */
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    font-size: 0.85rem;
    /* Smaller font */
    transition: var(--transition);
    white-space: nowrap;
}

.lang-drop-btn:hover,
.lang-drop-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.lang-menu {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 8px;
    min-width: 110px;
    /* Slightly smaller */
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.lang-menu.show {
    opacity: 1;
    visibility: visible;
    top: 110%;
}

.lang-menu a {
    text-decoration: none;
    color: #333;
    padding: 6px 10px;
    /* Smaller padding */
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: background 0.2s;
    font-size: 0.9rem;
    /* Smaller font */
    white-space: nowrap;
}

.lang-menu a:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

/* Date Time Box */
.date-time-box {
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 12px;
    /* Smaller padding */
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(183, 21, 64, 0.4);
    font-family: 'Tajawal', sans-serif;
    font-size: 0.85rem;
    /* Smaller font */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Ensure no wrapping */
    white-space: nowrap;
}

.section-separator {
    height: 2px;
    /* Made very thin as requested */
    width: 100%;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color);
    /* Tighter neon glow */
    animation: flashLines 3s infinite alternate;
    /* Slower, smoother flash */
    margin: 0;
    position: relative;
    z-index: 10;
}

@keyframes flashLines {
    0% {
        opacity: 0.3;
        box-shadow: 0 0 5px var(--accent-color);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 15px var(--accent-color), 0 0 25px red;
    }
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    /* Changed to White */
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 0;
    overflow: hidden;
    background-color: var(--primary-color);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Ensure image is only 10% visible (solid fallback) */
/* Ensure image is only 10% visible (solid fallback) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #b71540;
    /* Changed to BLUE (Accent Color) */
    opacity: 0.7;
    /* Increased transparency (0.9 -> 0.7) */
    z-index: 1;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 220px;
    /* Increased to 220px to ensure title is below the logo/header */
    max-width: 800px;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #f1f1f1;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About Section */
.section {
    padding: 80px 0;
}

.about {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #636e72;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-weight: 500;
}

.features-list i {
    color: var(--secondary-color);
}

/* About Section Image Replacement */
/* About Section Image Replacement */
.about-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    /* Soft edges */
    box-shadow: 10px 10px 30px rgba(183, 21, 64, 0.3), -10px -10px 30px rgba(212, 175, 55, 0.3);
    /* Red & Gold Shadow */
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    animation: growImage 3s ease-out forwards;
    /* Grows for 3 seconds */
}

@keyframes growImage {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

/* Services Section */
.services {
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid transparent;
    display: block;
    /* Make it block for anchor tag */
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--secondary-color);
}

/* Womdat/Flash effect on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card .icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: #636e72;
    font-size: 0.95rem;
}

/* Info Banner */
.info-banner {
    background: var(--primary-color);
    padding: 40px 0;
    color: var(--white);
}

.info-banner .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.info-item h3 {
    font-size: 1.5rem;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.info-box {
    margin-bottom: 30px;
}

.info-box i,
.custom-contact-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

.custom-contact-icon {
    width: 35px;
    height: auto;
    margin-bottom: 10px;
    display: inline-block;
    /* Aligns with text-align (Right in RTL) */
    /* Filter removed to show original image */
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-box p {
    color: #636e72;
    margin-bottom: 5px;
}

.contact-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: var(--white);
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Footer */
.footer {
    background: #051336;
    color: var(--white);
    padding: 60px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Animations Classes (Controlled by JS IntersectionObserver) */
.animate-up,
.animate-fade-right,
.animate-fade-left {
    opacity: 1;
    /* Changed from 0 to 1 for safety */
    transition: all 0.8s ease-out;
}

.animate-up {
    transform: translateY(30px);
}

.animate-fade-right {
    transform: translateX(30px);
    /* RTL: moves from left visually if translate positive? transform origins confusing in RTL sometimes, sticking to X axis shifts */
}

.animate-fade-left {
    transform: translateX(-30px);
}

.show-animate {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

/* Responsive Design System */

/* Large Screens (2K/4K/27-inch+) */
@media (min-width: 1441px) {
    html {
        font-size: 18px;
        /* Scale up base font text */
    }

    .container {
        max-width: 1600px;
        /* Use more width */
        padding: 0 40px;
    }

    .hero h2 {
        font-size: 4.5rem;
    }

    .section {
        padding: 100px 0;
        /* More breathing room */
    }
}

/* Laptops & Standard Desktops (1025px - 1440px) */
@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
}

/* Tablets & Small Laptops (968px - 1024px) */
@media (max-width: 1024px) {
    .navbar {
        justify-content: space-between;
    }

    .logo img {
        height: 85px;
        /* 15% smaller */
    }

    .nav-links {
        gap: 15px;
        /* Tighter links */
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

/* Mobile & Small Tablets (Max 968px) */
@media (max-width: 968px) {
    .header .container { position: relative; }
    .hero h2 {
        font-size: 2.5rem;
    }

    .about-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block !important;
        margin-left: 12px;
        margin-right: 12px;
        padding: 10px;
        border-radius: 12px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .contact-btn-wrapper {
        display: none;
    }

    /* Mobile Menu */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background: rgba(9, 26, 69, 0.98);
        /* Solid Dark Blue */
        padding: 20px 30px 40px;
        /* Adjusted padding */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        text-align: center;
        gap: 20px;
        /* Slightly tighter gap */
        border-bottom: 2px solid var(--secondary-color);
        z-index: 999;
    }

    /* Date/Time inside Mobile Menu */
    .nav-links.active::before {
        content: '';
        /* Placeholder for logic if needed, but easier to just show the actual element */
    }

    .nav-links.active a {
        font-size: 1.1rem;
        /* Slightly smaller for mobile */
        display: block;
        padding: 8px;
    }

    .header .container {
        padding: 0 20px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) max-content max-content;
        align-items: center;
        column-gap: 14px;
    }
    html[dir="rtl"] .header .container { padding-left: 8px; }
    html[dir="ltr"] .header .container { padding-left: 8px; }
    html[dir="rtl"] .header .container { padding-right: 6px; }
    html[dir="ltr"] .header .container { padding-left: 6px; }

    .hamburger {
        margin-left: auto;
        /* Push hamburger to the far right */
        display: block;
        order: 3;
    }

    .navbar {
        margin: 0;
        order: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        min-width: 0;
        white-space: normal;
        margin-left: 6px;
        margin-right: 6px;
    }
    .logo { gap: 8px; max-width: 34%; flex: 0 1 34%; min-width: 0; }
    .logo img { height: 102px; }
    .logo-text h1 { font-size: 1.30rem; line-height: 1.1; }
    .hamburger i { color: #fff; font-size: 24px; }

    /* Keep Language visible in header on mobile */
    .lang-dropdown {
        display: flex !important;
        position: static;
        transform: none;
        margin: 0 12px;
        order: 2;
        flex-shrink: 0;
        z-index: 2000;
    }
    .lang-drop-btn {
        font-size: 0.64rem; /* extra shrink for tight LTR labels */
        padding: 3px 9px;  /* tighter padding to avoid overlap */
    }
    .hamburger { margin-left: auto; justify-self: end; }
    html[dir="ltr"] .lang-dropdown { display: flex !important; }
    html[dir="ltr"] .hamburger { display: block !important; }
    .nav-group-side { display: none !important; }
    .navbar.mobile-active .nav-group-side { display: none !important; }
    .nav-links.active { padding-top: 20px; }

    html[dir="ltr"] .logo { max-width: 30%; flex: 0 1 30%; }
    html[dir="ltr"] .logo img { height: 90px; }
    html[dir="ltr"] .logo-text h1 { font-size: 1.10rem; line-height: 1.1; }
    html[dir="ltr"] .lang-drop-btn { font-size: 0.58rem; padding: 3px 8px; }
    /* Center contact texts on mobile */
    .contact-info, .contact .info-box { text-align: center; }
    .contact .custom-contact-icon { display: block; margin: 0 auto 10px; }
}

/* Ensure Date/Time visible on iPad, laptops & desktops */
@media (min-width: 768px) {
    .header .container { position: relative; padding-left: 0; }
    .nav-group-main { gap: 12px; }
    .nav-group-main .nav-group-side { order: 1; }
    .nav-group-main .lang-dropdown { order: 2; }
    .nav-group-main .nav-links { order: 3; margin-inline-start: auto; }
    .nav-group-side {
        position: static !important;
        display: flex !important;
        align-items: center;
        margin-inline-end: 8px;
    }
    .date-time-box {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    .lang-dropdown {
        position: static !important;
        margin: 0 10px !important;
        z-index: auto !important;
    }
    .navbar.mobile-active .nav-group-side {
        display: flex !important;
        position: absolute !important;
    }
    .nav-links {
        display: flex !important;
        position: static !important;
        padding: 0 !important;
    }
}

/* Small Phones (< 480px) */
@media (max-width: 480px) {
    .header .container {
        grid-template-columns: minmax(0, 1fr) max-content max-content;
        column-gap: 16px;
    }
    .lang-dropdown {
        position: static;
        transform: none;
        margin: 0;
    }
    .logo { max-width: 28%; flex: 0 1 28%; }
    .lang-drop-btn {
        font-size: 0.60rem;
        padding: 3px 8px;
    }
    .hero h2 {
        font-size: 2rem;
    }

    .logo img { height: 71px; }
    .logo-text h1 { font-size: 0.90rem; line-height: 1.1; }
    html[dir="rtl"] .header .container { padding-right: 6px; }
    html[dir="ltr"] .header .container { padding-left: 6px; }
    .nav-group-side { display: none !important; }
    .hamburger { padding: 12px; margin-left: auto; margin-right: 8px; justify-self: end; }

    .section-title h2 {
        font-size: 2rem;
    }

    html[dir="ltr"] .logo { max-width: 26%; flex: 0 1 26%; }
    html[dir="ltr"] .logo img { height: 64px; }
    html[dir="ltr"] .logo-text h1 { font-size: 0.85rem; line-height: 1.1; }
    html[dir="ltr"] .lang-drop-btn { font-size: 0.56rem; padding: 3px 7px; }
}

@media (max-width: 360px) {
    .header .container { gap: 12px; }
    .logo { max-width: 32%; }
    .logo img { height: 64px; }
    .logo-text h1 { font-size: 0.95rem; line-height: 1.1; }
    .navbar { margin-left: 6px; margin-right: 6px; }
    .lang-dropdown { flex-shrink: 1; margin: 0 10px; }
    .lang-drop-btn { font-size: 0.62rem; padding: 3px 8px; }
    .hamburger { margin-left: auto; }
}

/* User Requested Zoom Out Animation & Enhancements */
.about-image {
    max-height: 400px;
    /* Restrict height */
    overflow: hidden;
    /* Ensure zoom doesn't overflow */
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    /* Enhanced shadow */
}

.zoom-out-img {
    width: 100%;
    height: 100%;
    /* Fill the container */
    object-fit: cover;
    /* Maintain aspect ratio */
    display: block;
    animation: zoomOut 3s ease-out forwards;
    filter: contrast(1.1) brightness(1.1);
    /* Adjusted for night photo */
}

@keyframes zoomOut {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}
@media (max-width: 968px) {
    .animate-fade-right,
    .animate-fade-left {
        transform: none !important;
    }
}
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
