:root {
    --primary-gradient: linear-gradient(135deg, #ec3233 0%, #6d1824 100%);
    --primary-color: #ec3233;
    --secondary-color: #6d1824;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 10px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.logo img {
    height: 45px;
    width: auto;
}

.site-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    position: relative;
    padding-left: 15px;
}

.site-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 25px;
    background: var(--primary-gradient);
    opacity: 0.3;
}

.desktop-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-smooth);
}

.menu-item > a:hover {
    color: var(--primary-color);
}

.menu-item > a i {
    font-size: 0.8em;
    transition: transform 0.3s;
}

.menu-item:hover > a i {
    transform: rotate(180deg);
}

/* Dropdowns */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    padding: 10px 0;
    list-style: none;
}

.menu-item:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.menu-item:hover .dropdown-item {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item:nth-child(1) { transition-delay: 0.1s; }
.dropdown-item:nth-child(2) { transition-delay: 0.15s; }
.dropdown-item:nth-child(3) { transition-delay: 0.2s; }
.dropdown-item:nth-child(4) { transition-delay: 0.25s; }

.dropdown-item:hover {
    background: var(--bg-light);
}

.dropdown-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.82rem;
    font-weight: 500;
    transition: var(--transition-fast);
    width: 100%;
}

.dropdown-item a:hover {
    color: var(--primary-color);
}

.dropdown-item a i {
    font-size: 0.7rem;
    opacity: 0.5;
}

.sub-dropdown {
    position: absolute;
    top: -10px;
    left: 100%;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    padding: 10px 0;
    list-style: none;
    border-left: 2px solid var(--primary-color);
}

.dropdown-item:hover > .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sub-dropdown li a {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* --- Mobile Menu & Sidebar --- */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

.sidebar-close {
    background: var(--bg-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.sidebar-close:hover {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-menu {
    list-style: none;
}

.mobile-menu-item {
    border-bottom: 1px solid #eee;
}

.mobile-menu-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    list-style: none;
    padding-left: 20px;
    background: var(--bg-light);
}

.mobile-dropdown li a {
    padding: 10px 0;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-light);
}

.mobile-menu-item.active > .mobile-dropdown {
    max-height: 1000px;
}

.mobile-menu-item.active > a i {
    transform: rotate(180deg);
}

/* --- Hero Slider --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    width: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s linear;
}

.slide.active .slide-bg {
    transform: scale(1.15);
}

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

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    transform: translateY(60px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.slide-content p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(236, 50, 51, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(236, 50, 51, 0.4);
}

.slider-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.pagination-dot.active {
    background: var(--white);
    width: 40px;
    border-radius: 20px;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

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

/* --- Services Section --- */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
}

.section-header p {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -25px auto 15px;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover .service-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-5px);
}

.service-content {
    padding: 0 25px 25px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 18px;
    line-height: 1.5;
}

.service-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.service-link i {
    font-size: 0.7rem;
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background-image: url('img/parallax image.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: var(--white);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-container p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #f4f4f4; /* Smoke Grey */
    position: relative;
    overflow: hidden;
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    animation: float 15s infinite linear;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-duration: 18s; }
.particle:nth-child(2) { top: 60%; left: 5%; animation-duration: 22s; width: 10px; height: 10px; }
.particle:nth-child(3) { top: 40%; left: 80%; animation-duration: 20s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-duration: 25s; width: 12px; height: 12px; }
.particle:nth-child(5) { top: 10%; left: 90%; animation-duration: 16s; }

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.1; }
    50% { transform: translate(100px, 100px) rotate(180deg); opacity: 0.2; }
    100% { transform: translate(0, 0) rotate(360deg); opacity: 0.1; }
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-content h4 {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.about-features li {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

/* Translation Services Section */
.translation-section {
    padding: 100px 0;
    background: var(--white);
}

.translation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.translation-item {
    display: flex;
    gap: 25px;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.translation-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--primary-gradient);
    transition: var(--transition-smooth);
    border-radius: 0 5px 5px 0;
}

.translation-item:hover {
    background: var(--white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.translation-item:hover::before {
    height: 60%;
}

.translation-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.translation-item:hover .translation-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: rotate(10deg);
}

.translation-info h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.translation-info p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background: #f4f4f4; /* Smoke Grey */
}

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

.why-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    transition: var(--transition-smooth);
    position: relative;
}

.why-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    transition: var(--transition-smooth);
}

.why-item:hover .why-icon {
    background: var(--primary-gradient);
    color: var(--white);
    transform: rotate(360deg);
}

.why-item:hover .why-icon::after {
    transform: rotate(-180deg);
    opacity: 0.5;
}

.why-item h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.why-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.main-footer {
    background: #111;
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-gradient);
}

.footer-col p {
    color: #999;
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #999;
    font-size: 0.85rem;
}

.footer-contact li i {
    color: var(--primary-color);
    margin-top: 5px;
}

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

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-features {
        justify-content: center;
    }
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 10px 20px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slider-nav {
        display: none;
    }
}
