/* 
    MDAS Meat Export - Premium Design System
    Theme: Midnight Navy & Gold Leaf
    Typography: Playfair Display (Headings), Inter (Body)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* Colors */
    --midnight: #0A192F;    /* Richer Navy instead of near-black */
    --navy-deep: #112240;   /* Slightly lighter for depth */
    --gold: #D4AF37;
    --gold-light: #F1D592;
    --gold-muted: rgba(212, 175, 55, 0.6);
    --white: #FFFFFF;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-dark: #0A192F;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Layout */
    --container-width: 1300px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--midnight) !important;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.02) 1px, transparent 0);
    background-size: 40px 40px;
    color: var(--text-primary);
    line-height: 1.6;
    /* Tighter line height */
    overflow-x: hidden;
}

/* Force dark background on all site wrappers to eliminate white bands */
#page,
#content,
.site-content,
.content-area,
.main-content,
.wpb-content-wrapper,
.entry-content,
.post-4060 {
    background-color: var(--midnight) !important;
    background: var(--midnight) !important;
}

/* Typography */
h1,
h2,
h3,
h4,
.premium-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--text-primary) !important;
    /* Force visibility against dark background */
}

p,
li,
span,
label {
    color: var(--text-secondary);
}

strong,
b {
    color: var(--gold-light);
    font-weight: 600;
}

.gold-text {
    color: var(--gold) !important;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.navy-glow {
    background: radial-gradient(circle at center, var(--navy-deep) 0%, var(--midnight) 100%) !important;
}

.section-padding {
    padding: 60px 0;
}

/* Premium Card / Glassmorphism */
.premium-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 60px 40px;
    /* More vertical breath */
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.premium-card:hover {
    border-color: var(--gold-muted);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Premium Form Styles */
.custom-enquiry-form input,
.custom-enquiry-form select,
.custom-enquiry-form textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 245, 157, 0.2) !important;
    color: white !important;
    padding: 15px 20px !important;
    border-radius: 4px !important;
    transition: var(--transition) !important;
}

.custom-enquiry-form input:focus,
.custom-enquiry-form select:focus,
.custom-enquiry-form textarea:focus {
    border-color: var(--gold) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    outline: none !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2) !important;
}

.custom-enquiry-form label {
    color: var(--gold-light) !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
    display: block !important;
    letter-spacing: 1px !important;
    font-size: 0.9rem !important;
}

.enquiry-card,
.stat-box,
.content-block {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid var(--glass-border) !important;
    padding: 40px !important;
}

/* Global Fix for Legacy White Sections */
section[style*="background: white"],
section[style*="background: #ffffff"],
section[style*="background: #fdfdfd"],
div[style*="background: white"],
div[style*="background: #ffffff"],
div[style*="background: #fdfdfd"],
div[style*="background: #f9f9f9"] {
    background: var(--midnight) !important;
}

.intelligence-card-light {
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--gold);
    padding: 30px;
    margin-top: 20px;
    transition: var(--transition);
}

.intelligence-card-light:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

/* Navigation Overrides (integrated from index.html block later) */
.nav-system {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding: 20px 0;
    transition: var(--transition);
}

.nav-system.scrolled {
    padding: 12px 0;
    background: rgba(5, 11, 22, 0.45);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

/* Hero Section Refinement */
.hero-premium {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--midnight);
    overflow: hidden;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Content Aesthetics */
.content-wrapper {
    position: relative;
    z-index: 2;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
}

.section-title-wrap {
    margin-bottom: 60px;
}

.section-title-wrap h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.section-title-wrap .sub {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Footer Overhaul */
.footer-premium {
    background: #030811;
    border-top: 1px solid var(--glass-border);
    padding: 100px 0 40px;
}

.footer-logo-wrap h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-link {
    color: var(--text-secondary);
    transition: var(--transition);
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Flag Marquee Integration */
.flag-marquee {
    background: transparent;
    padding: 20px 0;
    /* Reduced gap */
    overflow: hidden;
    width: 100%;
    border: none !important;
}

.flag-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite;
    align-items: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Halfway because we duplicate content */
}

/* Ensure sections are dark by default to avoid white-on-white */
section {
    background-color: var(--midnight);
    color: var(--text-primary);
}

/* Fix for any sections that might still have light backgrounds */
.light-section,
.premium-card.light {
    background: var(--white) !important;
    color: var(--midnight) !important;
}

.light-section h1,
.light-section h2,
.light-section h3,
.light-section p {
    color: var(--midnight) !important;
}

/* Form Styles */
.premium-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 0;
    padding: 18px 24px;
    color: white;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    margin-bottom: 20px;
    width: 100%;
}

.premium-input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.gold-btn {
    background: var(--gold);
    color: var(--midnight);
    padding: 18px 45px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.gold-btn:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

/* Responsive Adjustments & Grids */
.main-layout,
.grid-2-col,
.grid-3-col,
.grid-footer {
    display: grid;
    gap: 40px;
}

.grid-2-col {
    grid-template-columns: 1fr 1fr;
}

.grid-3-col {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.grid-footer {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

@media (min-width: 992px) {
    .main-layout:not(.grid-2-col):not(.grid-footer):not(.grid-3-col) {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .section-title-wrap h2 {
        font-size: 2.8rem;
    }

    .container {
        padding: 0 30px;
    }
}

@media (max-width: 991px) {

    .main-layout,
    .grid-2-col,
    .grid-3-col,
    .grid-footer {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .grid-footer {
        text-align: center;
    }

    .footer-logo-wrap p {
        margin: 0 auto 30px auto;
    }

    .footer-logo-wrap div {
        justify-content: center;
    }

    /* Hide legacy mobile menu overlay completely */
    .mobile-nav {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    /* Ensure slider/content is below the fixed navbar on mobile (matches --mdas-nav-height-mobile: 70px) */
    .site-content {
        padding-top: 70px;
    }
}

@media (max-width: 768px) {
    .section-title-wrap h2 {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 40px 0 !important;
    }

    .premium-card {
        padding: 20px;
    }

    .flag-track {
        gap: 20px;
    }

    .main-layout,
    .grid-2-col,
    .grid-3-col,
    .grid-footer {
        gap: 20px !important;
    }
}

/* Force full width for main containers to avoid white gutters */
#primary,
.main-content,
.content-width,
.wpb-content-wrapper {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: var(--midnight) !important;
}

/* Ensure no hidden text due to legacy white backgrounds */
.vc_row,
.vc_column-inner,
.wpb_column {
    background: transparent !important;
}


/* Ultra Premium Form Elements */
.ultra-premium-form {
    position: relative;
    z-index: 10;
}

.input-group-premium {
    position: relative;
    margin-bottom: 30px;
}

.input-group-premium i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-muted);
    font-size: 1.1rem;
    transition: var(--transition);
}

.input-group-premium label {
    display: block;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-left: 5px;
}

/* Adjust top position for textarea icon */
.input-group-premium textarea~i,
.input-group-premium i.textarea-icon {
    top: 48px;
    transform: none;
}

/* Adjust top position for normal inputs because of label */
.input-group-premium input~i,
.input-group-premium select~i {
    top: calc(50% + 12px);
}

.input-group-premium input,
.input-group-premium select,
.input-group-premium textarea {
    width: 100%;
    background: rgba(10, 25, 47, 0.4) !important;
    border: 1px solid rgba(255, 245, 157, 0.1) !important;
    color: white !important;
    padding: 18px 20px 18px 55px !important;
    border-radius: 8px !important;
    font-family: \'Inter\', sans-serif !important;
    font-size: 1rem !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.input-group-premium select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url(\'data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23D4AF37%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E\') !important;
    background-repeat: no-repeat !important;
    background-position: right 20px center !important;
    background-size: 12px auto !important;
}

.input-group-premium input:focus,
.input-group-premium select:focus,
.input-group-premium textarea:focus {
    border-color: var(--gold) !important;
    background: rgba(10, 25, 47, 0.7) !important;
    outline: none !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15), inset 0 2px 10px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-2px);
}

.input-group-premium input:focus~i,
.input-group-premium select:focus~i,
.input-group-premium textarea:focus~i {
    color: var(--gold);
}

.premium-submit-btn {
    position: relative;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    color: var(--midnight) !important;
    padding: 20px 60px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-family: \'Inter\', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    overflow: hidden;
    z-index: 1;
}

.premium-submit-btn:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    color: var(--midnight);
}

.premium-submit-btn::after {
    content: \'\';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
    z-index: -1;
}

.premium-submit-btn:hover::after {
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

/* Internal Pages Mobile Optimization */
@media (max-width: 768px) {
    .hero-premium {
        height: 35vh !important;
        min-height: 250px !important;
        padding-top: 60px !important;
        /* Tightened account for fixed nav */
        display: flex !important;
        align-items: center !important;
    }

    .hero-premium .premium-heading {
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
        margin-bottom: 8px !important;
        margin-top: 0 !important;
    }

    .hero-premium .content-wrapper div[style*="height: 4px"] {
        margin-bottom: 15px !important;
        height: 3px !important;
        width: 80px !important;
    }

    .hero-premium .lead-text {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }

    .section-padding,
    .enquiry-form-section,
    section[style*="padding: 100px"] {
        padding: 20px 0 !important;
        /* Drastically reduced gaps */
    }

    .premium-card {
        padding: 20px 15px !important;
        margin-top: -10px !important;
        /* Pull up card closer to hero */
    }

    /* Global Section Gaps */
    .site-content {
        padding-bottom: 20px !important;
    }

    /* Pull up content areas */
    .content-area {
        margin-top: 0 !important;
    }
}

/* --- Global Navigation & Logo System --- */
:root {
    --nav-height: 100px;
    --scrolled-height: 75px;
}

.navigation.top-nav {
    background: var(--navy-deep) !important;
    height: var(--nav-height) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-bottom: 1px solid rgba(255, 245, 157, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    overflow: visible !important;
}

.navigation.top-nav .container-fluid {
    height: 100% !important;
}

.navigation.top-nav .row {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    margin: 0 !important;
    width: 100% !important;
}

.navigation.top-nav.scrolled {
    background: rgba(5, 11, 22, 0.45) !important;
    height: 75px !important;
    backdrop-filter: blur(15px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(15px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 245, 157, 0.2) !important;
}

.logo-wrapper {
    background: #ffffff !important;
    padding: 10px 25px !important;
    border-radius: 0 0 12px 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    margin-left: 60px !important;
    margin-top: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 10000 !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-top: none !important;
    white-space: nowrap !important;
    width: auto !important;
    min-width: fit-content !important;
}

.logo-text {
    font-family: 'Playfair Display', serif !important;
    color: var(--navy-deep) !important;
    font-size: clamp(12px, 1.2vw, 18px) !important;
    font-weight: 700 !important;
    margin-left: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    line-height: 1.2 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}


@media (max-width: 1200px) {
    .logo-text {
        font-size: 13px !important;
    }
}

@media (max-width: 991px) {
    .logo-wrapper {
        margin-left: 20px !important;
        padding: 5px 15px !important;
    }
    
    .logo-text {
        font-size: 12px !important;
        margin-left: 10px !important;
    }
}

@media (max-width: 480px) {
    .logo-wrapper {
        padding: 5px 12px !important;
        left: 10px !important;
    }
    
    .logo-text {
        font-size: 12px !important;
        margin-left: 8px !important;
        max-width: 140px !important;
        white-space: normal !important;
        line-height: 1.1 !important;
    }
}




/* Laptop/Desktop Only Absolute Containment */
@media (min-width: 992px) {
    .navigation.top-nav.scrolled .logo-wrapper {
        position: absolute !important;
        top: 0 !important;
        left: 60px !important;
        height: 75px !important;
        max-height: 75px !important;
        min-height: 75px !important;
        padding: 5px 20px !important;
        border-radius: 0 !important;
        margin: 0 !important;
        border: none !important;
        border-right: 1px solid rgba(255, 245, 157, 0.1) !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #ffffff !important;
        box-shadow: none !important;
        z-index: 10001 !important;
    }

    .scrolled .logo-wrapper img {
        height: 50px !important;
        width: auto !important;
        margin: 0 !important;
    }
}

.logo-wrapper img {
    height: 80px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain !important;
    transition: all 0.4s ease !important;
}



.nav-menu {
    flex-grow: 1 !important;
    display: flex !important;
    justify-content: flex-end !important;
    padding-right: 60px !important;
}

.nav-menu ul.menu {
    display: flex !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu ul.menu li {
    margin-left: 30px !important;
}

.nav-menu ul.menu li a {
    color: white !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    font-size: 13px !important;
    text-decoration: none !important;
    padding: 10px 0 !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

.nav-menu ul.menu li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu ul.menu li a:hover:after,
.nav-menu ul.menu li.active a:after {
    width: 100%;
}

.nav-menu ul.menu li a:hover,
.nav-menu ul.menu li.active a {
    color: var(--gold) !important;
}

/* Mobile Toggle Adjustment */
@media (max-width: 991px) {
    /* Specific override for mobile logo area with extreme specificity */
    body .navigation.top-nav .logo-wrapper {
        position: absolute !important;
        left: 10px !important;
        margin-left: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        border-radius: 0 0 8px 8px !important;
        z-index: 10001 !important;
        background: #ffffff !important;
        width: auto !important;
        max-width: 85% !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
        border: 1px solid rgba(255, 245, 157, 0.3) !important;
        border-top: none !important;
    }

    body .navigation.top-nav.scrolled .logo-wrapper {
        height: 50px !important;
    }

    body .logo-wrapper img {
        height: 40px !important;
        width: auto !important;
        flex-shrink: 0 !important;
        margin-right: 12px !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    body .logo-wrapper .logo-text {
        display: block !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        color: #0A192F !important;
        white-space: normal !important;
        line-height: 1.1 !important;
        max-width: 160px !important;
        text-transform: uppercase !important;
        font-family: 'Playfair Display', serif !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    body .navigation.top-nav .logo-wrapper {
        padding: 0 10px !important;
        left: 5px !important;
        height: 55px !important;
    }
    
    body .logo-wrapper img {
        height: 35px !important;
        margin-right: 8px !important;
    }

    body .logo-wrapper .logo-text {
        font-size: 11px !important;
        max-width: 130px !important;
    }
}