/* Variables & Reset - Dark Adventure Theme */
:root {
    --accent: #D4AF37; /* Gold / Sand */
    --accent-hover: #E8C14A;
    --bg-dark: #3a2a22; /* Darker, less reddish brown */
    --bg-card: #4a382e; /* Slightly lighter for cards */
    --bg-card-hover: #7b4a37;
    --text-main: #FDFCF8;
    --text-muted: #ffeae1; /* Light peach for muted text */
    
    --font-heading: 'Roboto Slab', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-dark);
    /* Subtle noise texture */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Textures & Backgrounds */
.texture-bg {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Typography */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: var(--accent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-dark);
}

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

.btn-outline {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 19, 16, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.navbar.scrolled .nav-links a {
    color: var(--text-main);
}
.navbar.scrolled .btn-outline {
    border-color: var(--accent);
    color: var(--accent);
}
.navbar.scrolled .mobile-menu-btn {
    color: var(--text-main);
}

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

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent);
}

.navbar .btn-outline {
    border-color: var(--text-main);
    color: var(--text-main);
}

.navbar .btn-outline:hover {
    background: var(--text-main);
    color: var(--bg-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('DJI_20260118144428_0147_D - copia.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.85);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 19, 16, 0.2), rgba(26, 19, 16, 0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-logo {
    height: 120px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 300;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

/* Trust Bar Section */
.trust-bar {
    padding: 3rem 0;
    /* texture-bg takes care of background and borders */
    background-color: var(--bg-card); 
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    background: #ffeae1; /* New light peach */
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.trust-item:hover {
    background: #fff3ed;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.trust-item svg {
    color: var(--bg-dark);
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    stroke-width: 1.5;
}

.trust-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--bg-dark);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    font-weight: 700;
}

.trust-item p {
    font-size: 0.85rem;
    color: #4A3525;
    line-height: 1.5;
    font-family: var(--font-body);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    object-fit: cover;
    height: 100%;
    min-height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-content {
    text-align: left;
}

.badge-gold {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 20px;
}

.about-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
}

/* Expeditions Section */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.expedition-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.expedition-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
}

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid var(--accent);
}

/* Updated Image for Cruce de los Andes */
.bg-img-1 { background-image: url('imagen cruce cordillera.jpg'); }
.bg-img-2 { background-image: url('imagen portillo argentino.jpg'); }

.card-content {
    padding: 2.5rem 2rem;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.card-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-desc {
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Dates Grid */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.date-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.date-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    background: var(--bg-card-hover);
}

.date-month {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.date-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.date-tag {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.date-tag.special {
    background: rgba(212, 175, 55, 0.1); /* transparent accent */
    color: var(--accent);
    border-color: rgba(212, 175, 55, 0.3);
    font-weight: 500;
}

.date-tag.special i {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 2px;
    margin-top: -2px;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 80px;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.social-links a {
    color: var(--accent);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    margin-top: 4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-card);
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    border: 1px solid var(--accent);
    border-radius: 8px;
    /* texture inside modal */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    transform: scale(1.1);
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.modal-list {
    margin-bottom: 2rem;
}

.modal-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    font-size: 0.95rem;
}

.modal-list i {
    color: var(--accent);
    width: 18px;
    height: 18px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Extended Modal Styles (Timeline & Tech Sheet) */
.modal-lg {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0; /* Remove padding to use header/body/footer sections */
}

.modal-lg .close-modal {
    top: 1.5rem;
    right: 1.5rem;
    background: var(--bg-card);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.modal-header {
    background-image: url('DSC01716.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 3rem 2rem;
    position: relative;
    border-radius: 8px 8px 0 0;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(26,19,16,0.3), rgba(26,19,16,0.95));
    border-radius: 8px 8px 0 0;
}

.modal-header > * {
    position: relative;
    z-index: 2;
}

.modal-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.modal-header h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.modal-subtitle {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 300;
}

.modal-body {
    padding: 3rem;
}

.tech-sheet {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 3rem;
}

.tech-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.tech-item i {
    color: var(--accent);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-section {
    margin-bottom: 3rem;
}

.modal-section h4 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.8rem;
    font-family: var(--font-heading);
}

.modal-section p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 0.4rem;
    width: 14px;
    height: 14px;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 50%;
    transform: translateX(-50%);
}

.timeline-content h5 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
}

.timeline-meta {
    font-size: 0.9rem !important;
    color: var(--accent) !important;
    margin-bottom: 1rem !important;
    font-weight: 500;
}

.timeline-content ul {
    list-style: disc;
    padding-left: 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.timeline-content ul li {
    margin-bottom: 0.5rem;
}

/* Includes List */
.includes-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
}

.includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.includes-list i {
    color: var(--accent);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-footer-actions {
    display: flex;
    gap: 1rem;
    padding: 2rem 3rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    justify-content: flex-end;
    align-items: center;
}

@media (max-width: 768px) {
    .modal-body, .modal-header, .modal-footer-actions {
        padding: 2rem 1.5rem;
    }
    .modal-header h3 {
        font-size: 1.8rem;
    }
    .modal-footer-actions {
        flex-direction: column;
    }
    .modal-footer-actions .btn {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .about-image img {
        min-height: 300px;
        max-height: 400px;
    }
    .about-content h2.section-title, .about-content p.about-description {
        text-align: center !important;
    }
}

/* Accordion */
.accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}
.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.accordion-header:hover {
    background: rgba(255,255,255,0.02);
}
.accordion-header i {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--accent);
}
.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.accordion-item.active .accordion-content {
    padding-bottom: 1.5rem;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}
.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.fab:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    color: white;
}
.fab-whatsapp {
    background: #25D366;
}
.fab-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

@media (max-width: 768px) {
    /* Accordion & FAB Mobile */
    .floating-actions {
        bottom: 1.5rem;
        right: 1.5rem;
        gap: 0.8rem;
    }
    .fab {
        width: 50px;
        height: 50px;
    }
    .fab svg {
        width: 24px;
        height: 24px;
    }
    .accordion-header {
        font-size: 1rem;
        padding: 1.2rem;
    }
    .accordion-content {
        font-size: 0.9rem;
        padding: 0 1.2rem;
    }
    .accordion-item.active .accordion-content {
        padding-bottom: 1.2rem;
    }

    .section {
        padding: 2.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .hero {
        padding: 5rem 1rem 2.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .trust-bar {
        padding: 1.5rem 1rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .trust-item {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
        align-items: center;
    }
    
    .trust-item svg {
        width: 24px;
        height: 24px;
    }
    
    .trust-item h4 {
        font-size: 0.95rem;
        margin-bottom: 0.1rem;
    }
    
    .trust-item p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .about-content .badge-gold {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        margin-bottom: 0.8rem;
    }

    .about-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-meta {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .card-desc {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .dates-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .date-card {
        padding: 1rem;
    }
    
    .date-month {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .date-tag {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }

    .footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-content h2 {
        font-size: 1.5rem;
    }
    
    .footer-content p {
        font-size: 0.85rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links a {
        color: var(--text-main);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .cta-nav { display: none; }
}
