html,
body {
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
}

@keyframes navbar-brand-gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding-left: 14px;
    min-width: 0;
    height: 55px;
    text-decoration: none;
    cursor: pointer;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
}

.logo img {
    width: auto;
    height: 64px; /* Increased logo height */
    max-width: none;
    display: block;
    border-radius: 12px; /* Added rounded edges */
}

.brand-name {
    font-family: "Poppins", sans-serif;
    font-size: clamp(12px, 1.15vw, 18px);
    font-weight: 700;
    color: #4A7C59;
    background: linear-gradient(120deg, #D4AF37 0%, #C3A24D 24%, #4A7C59 50%, #6D9A7A 76%, #D4AF37 100%);
    background-size: 220% 220%;
    animation: navbar-brand-gradient-shift 8s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    max-width: none;
}

header {
    width: 100%;
    max-width: 100vw;
    /* Adjusted height to auto to accommodate two rows */
    height: auto;
    background-color: #F5F2EF;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow-x: hidden;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Ensure main content is pushed below the fixed header.
   JS sets `--header-offset` to the current header height on load/resize. */
main {
    padding-top: var(--header-offset, 88px);
    transition: padding-top 180ms ease;
}

.navbar {
    display: flex;
    /* Changed to flex-direction column for the two-row layout */
    flex-direction: column;
    align-items: center;
    background: #F5F2EF;
    max-width: 100vw;
    overflow-x: hidden;
}

header,
header.scrolled-nav,
header.beige-nav {
    background-color: #F5F2EF;
    max-width: 100vw;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.navbar,
.navbar.background,
.navbar.scrolled-nav,
.navbar.beige-nav,
.navbar.beige-nav.scrolled-nav {
    background: #F5F2EF;
    max-width: 100vw;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Hide non-slide nav uls by default (keep `.navlist` visible when active) */
.navbar > ul:not(.navlist) {
    display: none;
}

.navbar ul li {
    list-style: none;
    margin-right: 30px;
}

.navbar ul li a {
    color: #333333;
    font-size: large;
    text-decoration: none;
}

.navbar ul li a:hover {
    color: #D4AF37;
    transition: color 0.2s ease-in;
}

.navbar ul li a.get-in-touch:hover {
    color: #ffffff;
}

.dropdown-content li a {
    color: #333333;
}

.get-in-touch {
    display: inline-block;
    background-color: #4A7C59 !important;
    color: #ffffff !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap; /* Prevent button from wrapping */
}

.get-in-touch:hover {
    background-color: #3a6048 !important;
    box-shadow: 0 4px 8px rgba(74, 124, 89, 0.3) !important;
    color: #ffffff !important;
}

.hamburger {
    display: flex; /* Always display hamburger */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-right: 0; /* Remove margin */
    padding: 10px; /* Add some padding to make it easier to click */
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}
/* Support existing markup that uses plain spans */
.hamburger span {
    display: none; /* hide old spans when using animated icon */
}

/* Lottie hamburger sizing */
.hamburger lottie-player {
    display: block;
    width: 36px;
    height: 36px;
}

/* Top row containing hamburger, centered logo, right actions */

.nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 6px 20px;
    height: 80px;
}

/* Layout: hamburger + logo on the left, actions + search on the right */
.nav-top .left,
.nav-top .center,
.nav-top .right {
    display: flex;
    align-items: center;
}

.nav-top .left { justify-content: flex-start; gap:10px; flex: 0 0 auto; }
/* Keep the logo immediately to the right of the hamburger by preventing
    the center area from expanding; align its contents to the start. */
.nav-top .center { justify-content: flex-start; margin-left: 8px; flex: 0 0 auto; }
.nav-top .right { justify-content: flex-end; margin-left: auto; gap:12px; flex: 0 0 auto; }

/* Make logo bigger */
.logo { height: 80px; }

/* Search row below the top */
.nav-bottom { display: none; }
.nav-search { width: auto; max-width: 45vw; }
/* ensure positioned parent for absolute results */
.nav-search { position: relative; }
.nav-search input[type="search"] {
    width: 260px;
    max-width: 48vw;
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 25px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Navlist (hidden by default, shown on hamburger click) */
.navlist {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: #F5F2EF;
    padding-top: 60px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    transition: transform 0.36s cubic-bezier(.2,.9,.2,1);
    transform: translateX(-100%); /* start hidden off-screen to the left */
    z-index: 9000; /* above nav-top, overlay, and header */
}

.navlist.active {
    transform: translateX(0); /* slide into view */
}

.navlist li {
    list-style: none;
    margin: 0;
    width: 100%;
}

.navlist li a {
    display: block;
    padding: 15px 25px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    border-bottom: 1px solid #e0dcd7;
}

.navlist li a:hover {
    background-color: #e9e5e1;
    color: #4A7C59;
}

/* Close button for the slide-in menu */
.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 36px;
    color: #333;
    cursor: pointer;
}

/* Overlay for when the menu is active */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 900; /* below header/navlist stacking context so menu links stay clickable */
}

.overlay.active {
    display: block;
}

/* Remove old list display conflicts while keeping navlist functional */
@media screen and (max-width: 1110px) {
    .navbar > ul:not(.navlist) {
        display: none;
    }
}

/* Strong overrides to prevent legacy hamburger visuals from showing
   (some pages/styles were re-enabling the 3-span icon). Keep Lottie only. */
.hamburger span,
.hamburger .line {
    display: none !important;
}

.hamburger::before,
.hamburger::after {
    content: none !important;
    display: none !important;
}

.hamburger lottie-player {
    display: block !important;
    width: 24px !important;
    height: 24px !important;
}

/* Mobile-only Get In Touch inside hamburger dropdown */
.mobile-menu-cta {
    display: none;
    margin-top: 8px;
}

.mobile-menu-cta a.get-in-touch {
    display: block;
    margin: 10px 16px 16px;
    text-align: center;
    border-radius: 14px !important;
}

@media screen and (max-width: 1110px) {
    .mobile-menu-cta {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .nav-top {
        padding: 6px 12px;
    }
    .logo img {
        height: 50px;
    }
    .get-in-touch {
        padding: 6px 12px !important;
        font-size: 14px;
    }
    .nav-search {
        width: 90%;
    }
}

/* Compact search toggle for very small screens */
@media screen and (max-width: 541px) {
    .nav-top .right .nav-search {
        display: flex;
        align-items: center;
        position: relative;
        width: auto;
    }

    /* hide the full input by default, show a small toggle button */
    .nav-search .search-input,
    .nav-search .nav-search-close {
        display: none;
    }

    .nav-search .nav-search-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: #ffffff;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        border: none;
        cursor: pointer;
        font-size: 18px;
    }

    /* When expanded, show a narrower, centered input (not full-width) */
    .nav-search.expanded {
        position: absolute;
        left: 50%;
        right: auto;
        top: 8px;
        z-index: 1400;
        display: flex;
        gap: 8px;
        align-items: center;
        transform: translateX(-50%);
        width: auto;
        padding: 0 8px;
    }

    .nav-search.expanded .search-input {
        display: block;
        width: min(360px, 86vw); /* limit to a comfortable width on phones */
        padding: 10px 16px;
        border-radius: 24px;
        border: 1px solid #ccc;
        background: #fff;
        box-sizing: border-box;
        font-size: 16px;
    }

    .nav-search.expanded .nav-search-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: #ffffff;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        border: none;
        cursor: pointer;
        font-size: 20px;
    }

    /* keep other right-side controls visually clear while search expanded
       (but never disable the search trigger itself) */
    .nav-top .right > *:not(.search-trigger) {
        opacity: 0.6;
        pointer-events: none;
    }
}

/* Search results dropdown (used for client-side site search) */
.nav-search-results {
    /* take the results out of header flow to avoid causing header scrollbars */
    position: fixed;
    top: 72px; /* distance from viewport top - tweak if needed */
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, 94vw);
    max-height: 60vh;
    overflow: auto;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 8px;
    z-index: 1500;
    padding: 8px;
}

.nav-search-results-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block; /* force vertical stacking */
}

.nav-search-results-list li {
    padding: 8px 10px;
    border-bottom: 1px solid #f0efed;
    display: block;
    white-space: normal;
}

/* Stronger selector to override legacy `.navbar ul { display:flex }` which
   can accidentally make the results render horizontally when the results
   are appended inside the header `.navbar`. Use a more specific rule so
   the results always render as a vertical list. */
.navbar .nav-search-results-list,
.nav-search-results .nav-search-results-list {
    display: block !important;
    flex-direction: column !important;
}

.nav-search-results-list li:last-child { border-bottom: none; }

.nav-search-result-link {
    display: block;
    font-weight: 600;
    color: #2b2b2b;
    text-decoration: none;
    margin-bottom: 4px;
}

.nav-search-result-link:hover { color: #4A7C59; }

.nav-search-result-snippet {
    margin: 0;
    color: #666;
    font-size: 13px;
    line-height: 1.3;
}

@media screen and (max-width: 1110px) {
    .nav-search-results {
        left: 50%;
        transform: translateX(-50%);
        width: min(560px, 94vw);
        top: 88px;
    }
}

@media screen and (max-width: 541px) {
    .nav-search-results {
        left: 50%;
        transform: translateX(-50%);
        width: min(360px, 92vw);
        top: 96px;
        max-height: 50vh;
    }
}

/* Specific mobile/tablet behavior under 1110px: hide CTA from top, show only search; make hamburger a round icon and menu drops down */
@media screen and (max-width: 1110px) {
    .navbar {
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
    }

    .nav-top {
        position: relative;
        z-index: 1300;
        width: 100%;
    }

    /* top CTA hidden, moved into menu */
    .nav-top .right .get-in-touch {
        display: none;
    }

    /* make search take remaining space on the right */
    .nav-top .right {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
        flex: 0 0 auto;
    }

    .nav-search {
        width: auto;
        max-width: min(46vw, 280px);
    }

    .nav-search input[type="search"] {
        width: min(46vw, 260px);
        max-width: min(46vw, 260px);
    }

    /* Slim rounded hamburger icon */
    .hamburger {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 50%;
        background: #ffffff;
        align-items: center;
        justify-content: center;
        padding: 0;
        box-shadow: 0 1px 4px rgba(0,0,0,0.06);
        transition: box-shadow 0.25s ease, background 0.25s ease;
    }

    .hamburger:hover {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        background: #faf9f7;
    }

    /* hide the 3-span hamburger lines on mobile and use an icon */
    .hamburger span { display: none; }
    .hamburger::before {
        content: '\2630';
        font-size: 20px;
        color: #333;
        line-height: 1;
    }

    /* Slide-in menu from left on narrow screens */
    .navlist {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        box-sizing: border-box;
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateX(-100%);
        opacity: 1;
        visibility: visible;
        transition: transform 360ms cubic-bezier(.2,.9,.2,1), box-shadow 260ms ease;
        z-index: 9000; /* above nav-top, overlay, and header */
        box-shadow: 2px 0 20px rgba(0,0,0,0.12);
        background-color: #F5F2EF;
        pointer-events: none;
        padding-top: 60px;
        padding-bottom: 24px;
        border-right: 1px solid rgba(0,0,0,0.04);
    }

    .navlist.active {
        transform: translateX(0);
        pointer-events: auto;
    }

    /* larger tap targets inside menu */
    .navlist li a {
        padding: 18px 24px;
        font-size: 18px;
        display: block;
    }

    /* Smooth staggered reveal for list items */
    .navlist li {
        opacity: 0;
        transform: translateY(-6px);
        transition: transform 300ms cubic-bezier(.2,.9,.2,1), opacity 260ms ease;
    }

    /* When menu active, reveal items with a small stagger */
    .navlist.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* apply incremental delays for a subtle cascading effect */
    .navlist.active li:nth-child(1) { transition-delay: 0ms; }
    .navlist.active li:nth-child(2) { transition-delay: 30ms; }
    .navlist.active li:nth-child(3) { transition-delay: 60ms; }
    .navlist.active li:nth-child(4) { transition-delay: 90ms; }
    .navlist.active li:nth-child(5) { transition-delay: 120ms; }
    .navlist.active li:nth-child(6) { transition-delay: 150ms; }
    .navlist.active li:nth-child(7) { transition-delay: 180ms; }
}

/* Home-style footer visuals shared across all pages */
.footer-info {
    background-color: #e0e0e0;
    padding: 60px 6vw;
    color: #333333;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #D4AF37;
    font-weight: 600;
}

.footer-contact-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.footer-contact-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A7C59 0%, #3a6048 100%);
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
}

.footer-contact-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.footer-contact-body a,
.footer-column ul li a {
    color: #333333;
    text-decoration: none;
}

.footer-contact-body a:hover,
.footer-column ul li a:hover {
    color: #4A7C59;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-map {
    flex: 1.2;
    max-width: 400px;
}

.map-container {
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
}

footer {
    display: flex;
    flex-direction: column;
    background-color: #e0e0e0;
    min-height: 8vh;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
    text-align: center;
    padding: 20px 10px;
    color: #333333;
    font-size: 14px;
    line-height: 1.4;
}

footer a {
    text-decoration: none;
    color: #4A7C59;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #D4AF37;
}

@media only screen and (max-width: 768px) {
    .footer-info {
        padding: 40px 5vw;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {
        min-width: 100%;
    }

    .footer-map {
        flex: 1;
    }
}

/* ================================================================
   REDESIGNED SEARCH: ICON TRIGGER + FULL-SCREEN OVERLAY
   ================================================================ */

/* Hide original inline search form — replaced by trigger icon + overlay */
.nav-top .right .nav-search,
.nav-search {
    display: none !important;
}

/* Search trigger icon */
.search-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(51, 51, 51, 0.12);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    color: #333;
    flex-shrink: 0;
    /* Mobile touch improvements */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    z-index: 10;
}

.search-trigger:hover {
    background: rgba(74, 124, 89, 0.08);
    border-color: #4A7C59;
    color: #4A7C59;
    transform: scale(1.06);
}

.search-trigger:active {
    transform: scale(0.95);
    background: rgba(74, 124, 89, 0.12);
}

.search-trigger svg {
    width: 17px;
    height: 17px;
    transition: transform 0.3s ease;
    pointer-events: none;
}

/* --- Overlay backdrop --- */
.search-overlay-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.search-overlay-backdrop.open {
    opacity: 1;
    visibility: visible;
}

/* --- Overlay panel --- */
.search-overlay-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2501;
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.search-overlay-backdrop.open .search-overlay-panel {
    transform: translateY(0);
    opacity: 1;
}

/* --- Inner layout --- */
.search-overlay-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 720px;
    margin: 0 auto;
    padding: 22px 24px 18px;
}

/* Animated magnifying-glass icon inside the overlay */
.search-overlay-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: #4A7C59;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.35s ease 0.15s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.search-overlay-backdrop.open .search-overlay-icon {
    opacity: 1;
    transform: scale(1);
}

.search-overlay-icon svg {
    width: 22px;
    height: 22px;
}

/* Input inside the overlay */
.search-overlay-input {
    flex: 1;
    padding: 12px 0;
    border: none;
    font-size: 18px;
    font-family: inherit;
    outline: none;
    background: transparent;
    color: #333;
    letter-spacing: 0.2px;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.3s ease 0.2s, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.search-overlay-backdrop.open .search-overlay-input {
    opacity: 1;
    transform: translateX(0);
}

.search-overlay-input::placeholder {
    color: #b0ada8;
}

/* Close button inside the overlay */
.search-overlay-close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f5f2ef;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    padding: 0;
    opacity: 0;
    transform: rotate(-90deg);
    transition: opacity 0.3s ease 0.25s,
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.25s,
                background 0.2s ease,
                color 0.2s ease;
}

.search-overlay-backdrop.open .search-overlay-close {
    opacity: 1;
    transform: rotate(0deg);
}

.search-overlay-close:hover {
    background: #e9e5e1;
    color: #333;
}

/* Separator */
.search-overlay-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0dcd7 20%, #e0dcd7 80%, transparent);
    margin: 0;
}

/* Results inside overlay */
.search-overlay-results {
    max-height: 55vh;
    overflow-y: auto;
    padding: 0;
    max-width: 720px;
    margin: 0 auto;
}

.search-overlay-results:empty {
    display: none;
    padding: 0;
}

.search-overlay-results ul {
    list-style: none;
    margin: 0;
    padding: 8px 16px 16px;
    display: block !important;
}

.search-overlay-results li {
    padding: 12px 14px;
    border-bottom: 1px solid #f5f2ef;
    border-radius: 8px;
    transition: background 0.2s ease;
    display: block;
    white-space: normal;
}

.search-overlay-results li:hover {
    background: #f9f8f6;
}

.search-overlay-results li:last-child {
    border-bottom: none;
}

.search-overlay-results a {
    display: block;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    margin-bottom: 4px;
    font-size: 15px;
}

.search-overlay-results a:hover {
    color: #4A7C59;
}

.search-overlay-results p {
    margin: 0;
    color: #888;
    font-size: 13px;
    line-height: 1.4;
}

/* Responsive fine-tuning */
@media screen and (max-width: 541px) {
    .search-overlay-inner {
        padding: 16px 16px 14px;
        gap: 10px;
    }
    .search-overlay-input {
        font-size: 16px;
    }
    /* Keep 44px minimum touch target on mobile */
    .search-trigger {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    .search-trigger svg {
        width: 16px;
        height: 16px;
    }
}
