/* =============================================
   Naunton & Co v2 - Enfold-inspired theme
   ============================================= */

/* Google Fonts - Open Sans + Raleway (as used by Enfold) */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Raleway:wght@400;500;600;700;800&display=swap');

/* Entypo-Fontello icon font (used for home page section icons) */
@font-face {
    font-family: 'entypo-fontello';
    src: url('../fonts/entypo-fontello.woff') format('woff'),
         url('../fonts/entypo-fontello.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    color: #444;
    background: #fff;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', 'Open Sans', Arial, sans-serif;
}

/* =============================================
   TOP BAR (thin bar above header - Enfold trademark)
   ============================================= */
#top-bar {
    background: #333;
    height: 36px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #2a2a2a;
}

.top-bar-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.top-bar-inner span,
.top-bar-inner a {
    font-size: 0.78rem;
    color: #aaa;
    letter-spacing: 0.3px;
}

.top-bar-inner a:hover { color: #fff; }

/* =============================================
   HEADER
   ============================================= */
#header {
    background: #3d3d3d;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    overflow: visible;
}

.header-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.site-logo a {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-logo .logo-main {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.site-logo .logo-sub {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* Nav */
.main-nav ul {
    display: flex;
    gap: 4px;
}

.main-nav ul li a {
    display: block;
    padding: 10px 16px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #c8c8c8;
    position: relative;
    transition: color 0.2s;
}

/* Enfold-style: green line under active/hover item */
.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 16px;
    right: 16px;
    height: 3px;
    background: #4f8a2e;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #fff;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    transform: scaleX(1);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: #ccc;
    border-radius: 2px;
    transition: all 0.3s;
}

/* =============================================
   HERO / SLIDER
   ============================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 530px;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

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

.slider-caption {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.55));
    text-align: center;
    padding: 20px;
}

.slider-caption h1 {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 14px rgba(0,0,0,0.65);
    margin-bottom: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slider-caption p {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    border: 2px solid rgba(255,255,255,0.6);
    transition: background 0.2s;
}

.slider-dot.active { background: #fff; }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0,0,0,0.35);
    color: #fff;
    border: none;
    padding: 14px 18px;
    font-size: 1.3rem;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s;
}

.slider-arrow:hover { background: rgba(0,0,0,0.6); }
.slider-arrow.prev { left: 0; }
.slider-arrow.next { right: 0; }

/* =============================================
   PAGE TITLE BAR (inner pages)
   ============================================= */
.page-title-bar {
    background: #f4f4f4;
    padding: 30px 20px;
    color: #3d3d3d;
    border-bottom: 3px solid #4f8a2e;
}

.page-title-bar .inner {
    max-width: 1160px;
    margin: 0 auto;
}

.page-title-bar h1 {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4f8a2e;
}

.breadcrumb {
    font-size: 0.82rem;
    color: #888;
}

.breadcrumb a { color: #555; }
.breadcrumb a:hover { color: #4f8a2e; }

/* =============================================
   LAYOUT
   ============================================= */
.site-content {
    flex: 1;
}

.content-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 55px 20px;
}

/* Two-column layout for inner pages */
.content-wrap.has-sidebar {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 55px;
    align-items: start;
}

/* =============================================
   HOME PAGE SECTIONS — 3-column layout
   ============================================= */
.home-sections {
    background: #f9f9f9;
}

.three-col-wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

/* Divider lines between columns */
.home-col {
    padding: 0 40px;
    border-right: 1px solid #e0e0e0;
}

.home-col:first-child { padding-left: 0; }
.home-col:last-child  { padding-right: 0; border-right: none; }

/* Section heading — short green underline */
.home-col h2 {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #3d3d3d;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 13px;
}

.home-col h2 .section-icon {
    font-family: 'entypo-fontello';
    color: #4f8a2e;
    font-size: 1.5rem;
    margin-right: 10px;
    font-weight: normal;
    text-transform: none;
    letter-spacing: 0;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.home-col h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 3px;
    background: #4f8a2e;
}

.home-col > p,
.home-col-sub > p {
    color: #666;
    font-size: 0.93rem;
    line-height: 1.85;
    margin-bottom: 14px;
}

.home-col > ul {
    display: block;
    margin-top: 6px;
}

.home-col > ul li {
    padding: 6px 0 6px 18px;
    position: relative;
    color: #555;
    font-size: 0.92rem;
    border-bottom: 1px solid #ebebeb;
    line-height: 1.6;
}

.home-col > ul li:last-child { border-bottom: none; }

.home-col > ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4f8a2e;
}

/* Stacked sub-sections in column 3 */
.home-col-sub {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
}

.home-col-sub:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* =============================================
   MAIN ARTICLE CONTENT
   ============================================= */
.entry-content h2 {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #3d3d3d;
    margin: 32px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ebebeb;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.entry-content h3 {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 1.2rem;
    color: #4f8a2e;
    margin: 22px 0 10px;
    font-weight: 700;
}

.entry-content h4 {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 0.95rem;
    color: #3d3d3d;
    font-weight: 700;
    margin: 24px 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 8px;
    border-bottom: 2px solid #4f8a2e;
    display: inline-block;
}

.entry-content p {
    margin-bottom: 14px;
    color: #555;
    line-height: 1.75;
}

.entry-content ul {
    margin: 10px 0 18px 0;
    display: block;
}

.entry-content ul li {
    padding: 5px 0 5px 22px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.75;
}

.entry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4f8a2e;
}

/* =============================================
   BLOG
   ============================================= */
.blog-post {
    background: #fff;
    border: 1px solid #e5e5e5;
    margin-bottom: 32px;
    padding: 30px 32px;
    transition: box-shadow 0.2s;
}

.blog-post:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.09); }

.blog-post h2 {
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #3d3d3d;
    margin-bottom: 10px;
}

.blog-post h2 a { color: #3d3d3d; }
.blog-post h2 a:hover { color: #4f8a2e; }

.post-meta {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ebebeb;
}

.post-meta .category {
    color: #4f8a2e;
    font-weight: 600;
}

.blog-post p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.blog-post ul {
    display: block;
    margin: 8px 0 14px;
}

.blog-post ul li {
    padding: 4px 0 4px 20px;
    position: relative;
    color: #555;
    font-size: 0.9rem;
}

.blog-post ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4f8a2e;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-details {
    background: #f6f6f6;
    border-left: 4px solid #4f8a2e;
    padding: 24px 28px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 32px;
}

.contact-details p {
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

.contact-details strong { color: #3d3d3d; }
.contact-details a { color: #4f8a2e; }
.contact-details a:hover { text-decoration: underline; }

.contact-form-wrap h3 {
    font-size: 1.2rem;
    color: #3d3d3d;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required { color: #e05252; }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #444;
    transition: border-color 0.2s;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4f8a2e;
}

.form-group textarea { resize: vertical; min-height: 130px; }

.submit-btn {
    background: #4f8a2e;
    color: #fff;
    border: none;
    padding: 12px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover { background: #3d6e22; }

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar {
    position: sticky;
    top: 90px;
}

.widget {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    margin-bottom: 28px;
    overflow: hidden;
}

.widget-title {
    background: #3d3d3d;
    color: #fff;
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 13px 20px;
}

.widget-content {
    padding: 18px;
}

.widget-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.widget-content a {
    color: #4f8a2e;
    font-size: 0.9rem;
    display: block;
}

.widget-content a:hover { text-decoration: underline; }

.widget-content ul li {
    border-bottom: 1px solid #f0f0f0;
    padding: 7px 0;
}

.widget-content ul li:last-child { border-bottom: none; }

.widget-content ul li a {
    color: #555;
    font-size: 0.88rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-content ul li a:hover { color: #4f8a2e; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }

.tag-cloud a {
    display: inline-block;
    background: #f0f0f0;
    color: #555 !important;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.8rem !important;
    transition: background 0.2s;
}

.tag-cloud a:hover {
    background: #4f8a2e;
    color: #fff !important;
    text-decoration: none !important;
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
    background: #2b2b2b;
    color: #aaa;
    padding: 48px 20px 0;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #3d3d3d;
}

.footer-col h4 {
    font-family: 'Raleway', Arial, sans-serif;
    color: #fff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 2px solid #3d3d3d;
}

.footer-col p,
.footer-col li {
    font-size: 0.88rem;
    color: #888;
    line-height: 1.7;
    margin-bottom: 6px;
}

.footer-col a { color: #888; }
.footer-col a:hover { color: #4f8a2e; }

.footer-col ul li {
    padding: 3px 0;
    border-bottom: 1px solid #383838;
}

.footer-col ul li:last-child { border-bottom: none; }

.footer-bottom {
    max-width: 1140px;
    margin: 0 auto;
    padding: 16px 0;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: #4f8a2e; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro {
    background: #f6f6f6;
    border-radius: 4px;
    padding: 28px;
    margin-bottom: 28px;
    border-left: 4px solid #4f8a2e;
}

.about-intro p {
    color: #555;
    font-size: 1rem;
    line-height: 1.75;
}

/* =============================================
   RESPONSIVE
   ============================================= */
/* =============================================
   MEGA-MENU DROPDOWN
   ============================================= */

/*
 * The mega-menu is positioned relative to #header (position:sticky),
 * NOT relative to the li. This gives a full-width Enfold-style panel.
 */
.main-nav ul li.has-dropdown {
    position: static;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 80px;          /* height of #header */
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid #4f8a2e;
    border-bottom: 3px solid #4f8a2e;
    padding: 18px 24px 22px;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    grid-template-columns: repeat(5, 1fr);
    gap: 0 12px;
}

.has-dropdown:hover .mega-menu,
.has-dropdown.dropdown-open .mega-menu {
    display: grid;
}

.mega-col {
    padding: 0 10px 0 0;
    border-right: 1px solid #e0e0e0;
}
.mega-col:last-child { border-right: none; }

.mega-col-title {
    display: block;
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #4f8a2e;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e0e0e0;
}

.mega-menu ul {
    flex-direction: column;
    gap: 0;
    display: flex;
}

.mega-menu ul li a {
    display: block;
    padding: 4px 0;
    font-size: 0.79rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.2px;
    color: #3d3d3d;
    transition: color 0.15s;
}

.mega-menu ul li a:hover { color: #4f8a2e; }
.mega-menu ul li a::after { display: none !important; }

.has-dropdown > a::after { display: none !important; }

/* Mobile toggle button — hidden on desktop */
.submenu-toggle-btn {
    display: none;
}

@media (max-width: 1000px) {
    .three-col-wrap {
        grid-template-columns: 1fr 1fr;
    }
    .home-col:nth-child(3) {
        grid-column: 1 / -1;
        border-right: none;
        border-top: 1px solid #e0e0e0;
        padding: 40px 0 0;
        margin-top: 10px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    .home-col-sub { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
}

@media (max-width: 960px) {
    .content-wrap.has-sidebar { grid-template-columns: 1fr; }
    .sidebar { position: static; top: auto; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .three-col-wrap { grid-template-columns: 1fr; padding: 50px 20px; }
    .home-col {
        padding: 0 0 32px 0;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 32px;
    }
    .home-col:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .home-col:nth-child(3) {
        grid-column: auto;
        border-top: none;
        padding-top: 0;
        margin-top: 0;
        display: block;
    }
    .home-col-sub { border-bottom: 1px solid #e5e5e5; margin-bottom: 24px; padding-bottom: 20px; }
    .home-col-sub:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

    .main-nav { display: none; }
    .main-nav.open {
        display: block;
        width: 100%;
        order: 3;
        background: #333;
        border-top: 1px solid #4a4a4a;
    }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav ul li a { padding: 13px 20px; border-bottom: 1px solid #444; }
    .main-nav ul li a::after { display: none; }
    .hamburger { display: flex; }
    #header .header-inner { flex-wrap: wrap; height: auto; padding: 14px 20px; }
    .hero-slider { height: 340px; }
    .slider-caption h1 { font-size: 2rem; }
    .slider-caption p { font-size: 0.95rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 26px; }
    #top-bar { display: none; }
    /* Mobile: accordion for Our Services */
    .mega-menu { display: none !important; }
    /* li needs relative positioning to anchor the toggle button */
    .main-nav ul li.has-dropdown { position: relative; }
    /* Expanded state */
    .has-dropdown.mobile-open .mega-menu {
        display: block !important;
        position: static;
        width: 100%;
        background: #2a2a2a;
        border-top: none;
        border-bottom: 1px solid #3a3a3a;
        box-shadow: none;
        padding: 0;
    }
    .has-dropdown.mobile-open .mega-menu .mega-col {
        padding: 6px 0 0;
        border-right: none;
    }
    .has-dropdown.mobile-open .mega-menu .mega-col-title {
        display: block;
        padding: 7px 30px 4px;
        font-size: 0.68rem;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-bottom: none;
        margin-bottom: 0;
    }
    .has-dropdown.mobile-open .mega-menu ul { display: block; }
    .has-dropdown.mobile-open .mega-menu ul li a {
        padding: 10px 36px;
        font-size: 0.88rem;
        font-weight: 400;
        color: #ccc;
        border-bottom: 1px solid #3a3a3a;
        text-transform: none;
        letter-spacing: normal;
    }
    .has-dropdown.mobile-open .mega-menu ul li a:hover,
    .has-dropdown.mobile-open .mega-menu ul li a:active { color: #81c155; }
    /* Toggle arrow button */
    .submenu-toggle-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        min-width: 50px;
        background: none;
        border: none;
        border-left: 1px solid #444;
        color: #aaa;
        cursor: pointer;
        font-size: 0.85rem;
        transition: transform 0.2s;
        padding: 0;
    }
    .has-dropdown.mobile-open .submenu-toggle-btn {
        transform: scaleY(-1);
    }
}

@media (max-width: 480px) {
    .slider-caption h1 { font-size: 1.5rem; }
    .slider-caption p { font-size: 0.88rem; }
    .hero-slider { height: 270px; }
    .page-title-bar h1 { font-size: 1.5rem; }
    .content-wrap { padding: 36px 16px; }
}
