/*
Theme Name: Top Notch Migration
Author: Jashan
Description: A custom theme converted from Angular version of Top Notch.
Version: 0.0.1
*/

/* --- 1. RESET & GLOBAL SETTINGS --- */
:root {
    /* --- COLORS --- */
    --color-accent: #dc3545;
    --color-accent-l: #F8D7DA;;
    --color-accent-h: #A71D2A;
    --color-text-secondary: #666666;
    --color-bg: #F4F6F5;

    --color-error-red: #EA6565;
    --color-error-red-d: #a51515;

    --footer-color: #0F172A;

    --color-black: #111111;
    --color-disabled: #999999;
    --color-disabled-l: rgba(255, 255, 255, 0.73);
    --color-disabled-ll: rgba(255, 255, 255, 0.93);
    --color-disabled-d: rgba(0, 0, 0, 0.6);
    --color-white: #FFFFFF;
    --color-off-white: #F5F5F5;

    --nav-color-sub-link-highlight: rgba(238, 238, 238, 0.67);

    /* --- SHADOWS --- */
    --shadow-card: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
    --shadow-btn: 0px 2px 5px -1px rgba(50, 50, 93, 0.25), 0px 1px 3px -1px rgba(0, 0, 0, 0.3);

    --shadow-card-accent: 0px 2px 8px 0px rgba(24, 163, 74, 0.2);
    --shadow-btn-accent: 0px 2px 5px -1px rgba(24, 163, 74, 0.6), 0px 1px 3px -1px rgba(24, 163, 74, 0.9);

    /* --- FOOTER COLORS --- */
    --color-footer-text: #BBBBBB;
    --color-footer-light: #666666;
    --color-footer-bg: #222222;
    --color-footer-bottom: #171717;

    /* --- DIMENSIONS --- */
    --width-xs: 370px;
    --width-sm: 568px;
    --width-md: 768px;
    --width-lg: 1024px;
    --width-xl: 1280px;
    --width-2xl: 1636px;

    --offset-xs: 24px;
    --offset-sm: 32px;
    --offset-md: 32px;
    --offset-lg: 32px;
    --offset-xl: 30px;
    --offset-2xl: 30px;

    /* --- SETTINGS --- */
    --anim-time: 0.3s;
    --section-gap: 24px;
    --nav-gap: 32px;
}

body, html {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: sans-serif; /* Added global font fallback */
  
  /* Hides scrollbar visual but allows scrolling */
  -ms-overflow-style: none;
  scrollbar-width: none; 
}

body::-webkit-scrollbar { 
  display: none;
}

/* --- 2. ANIMATIONS --- */
@keyframes vibratePause {
    0%, 10% { transform: translate(0); }
    15%, 25% { transform: translate(-2px, 1px); }
    20%, 30% { transform: translate(2px, -1px); }
    35%, 100% { transform: translate(0); }
}

@keyframes rotateVibratePause {
    0%, 10% { transform: rotate(0deg); }
    15%, 25% { transform: rotate(1.5deg); }
    20%, 30% { transform: rotate(-1.5deg); }
    35%, 100% { transform: rotate(0deg); }
}

/* --- 3. UTILITIES & CONTAINER --- */
.no-select, .non-selectable {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    transition: all var(--anim-time) ease;
    box-sizing: border-box; 
}

/* Container Media Queries */
@media (min-width: 370px) { .container { max-width: calc(var(--width-xs) - var(--offset-xs)); } }
@media (min-width: 568px) { .container { max-width: calc(var(--width-sm) - var(--offset-sm)); } }
@media (min-width: 768px) { .container { max-width: calc(var(--width-md) - var(--offset-md)); } }
@media (min-width: 1024px) { .container { max-width: calc(var(--width-lg) - var(--offset-lg)); } }
@media (min-width: 1280px) { .container { max-width: calc(var(--width-xl) - var(--offset-xl)); } }
@media (min-width: 1636px) { .container { max-width: calc(var(--width-2xl) - var(--offset-2xl)); } }

@media (max-width: 1024px) {
    .links-container { display: none; } /* Hide Desktop Menu */
    
    .nav-mobile-menu { display: block; } /* Show Hamburger */
    .nav-mobile-menu .material-symbols-outlined { font-size: 32px; }
    
    .quick-btn-container .mixed .btn-context { display: none; } /* Hide "Contact Us" text on mobile */
    .quick-btn-container .mixed { padding-left: 0; background: none; }

    .service-content-body { padding: 0 16px !important; }

    .footer-section-containers {
        flex-direction: column !important;
        gap: 24px !important;
    }

    .bottom-bg-container {
        padding: 12px !important;
    }

    .bottom-container {
        flex-direction: column !important;
        gap: 16px;
    }
}

@media (max-width: 768px) { /* Width MD */
    .footer-sub-pair-section {
        flex-direction: column !important;
    }

    .hidable {
        display: none !important;
    }

    .copyright-text {
        display: none;
    }

    .info-links {
        flex-direction: column !important;
        text-align: center;
    }

    .info-links .col-container {
        justify-content: center;
    }

    .privacy-container h1 {
        font-size: 2rem;
        text-align: center;
    }
    .legal-content h2 {
        font-size: 1.5rem;
    }
}


/* --- 4. COMPONENT: HERO SECTION --- */
.img-container {
    height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    position: relative;
    transition: all var(--anim-time) ease;
}

.hero-image {
    position: absolute;
    width: 98%;
    height: 100%;
	opacity:0.9;
    margin: 1%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    filter: brightness(30%);
    z-index: 1;
}

.text-container {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    z-index: 2;
    transition: all var(--anim-time) ease;
    max-width: 1200px; 
    margin: 0 auto; 
}

.text-container .colored {
    color: var(--color-accent);
}

.text-container h1 {
    color: var(--color-white);
    font-weight: 700;
    user-select: none;
    font-size: 3rem; 
    transition: all var(--anim-time) ease;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-container .normal-title { display: block; }
.text-container .mobile-title { display: none; }

.action-container {
    display: flex;
    flex-direction: row;
    justify-content: start;
    transition: all var(--anim-time) ease;
}

/* Converted button styles */
.action-btn {
    background-color: var(--color-accent);
    font-size: large;
    line-height: 1.5em;
    border: none;
    border-radius: 24px;
    padding: 12px 24px;
    box-shadow: var(--shadow-btn);
    transition: all var(--anim-time) ease;
    cursor: pointer;
    text-decoration: none; 
    display: inline-flex; 
    gap: 5px;
    color: var(--color-white);
}

.action-btn .colored {
    color: var(--color-off-white);
}

.action-btn:hover {
    filter: brightness(1.2);
    animation: rotateVibratePause 2s ease-in-out infinite;
}

.action-btn:hover .colored {
    color: #ffcccc;
}

/* Hero Media Queries */
@media (max-width: 1024px) { 
    .img-container .text-container {
        padding: 2px;
        box-sizing: border-box;
    }
    .img-container .text-container h1,
    .img-container .text-container p {
        text-align: center;
    }
    .action-container {
        justify-content: center !important;
    }
}

@media (max-width: 768px) { 
    .img-container {
        height: 500px;
    }
    .text-container h1 {
        text-align: center;
        font-size: 2rem; 
    }
    .normal-title { display: none !important; }
    .mobile-title { display: block !important; }
}


/* --- 5. COMPONENT: SERVICES SECTION --- */
.process-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 60px; 
    margin-bottom: 60px;
}

.process-section h2 {
    font-weight: 600;
    font-size: 2.5rem; 
    text-align: center;
    /* FIXED: Changed from white to black so it's visible on white bg */
    color: var(--color-black); 
    margin-bottom: 10px;
}

.process-section p {
    margin: 2px;
    text-align: center;
    font-size: 1rem; 
    color: var(--color-disabled-d);
}

.process-section .divider-sm-h {
    width: 200px;
    height: 4px;
    background-color: var(--color-accent);
    border-radius: 8px;
    border: none;
    margin: auto;
}

.process-section .process-item-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px; 
    margin-bottom: 20px;
    gap: 20px;
}

/* Services Media Queries */
@media (max-width: 768px) { 
    .process-section .process-item-container {
        gap: 16px !important;
    }
    .process-section h2 {
        font-size: 2rem;
    }
}


/* --- 6. COMPONENT: SERVICE ITEM CARD --- */
.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    background-color: var(--color-white);
    border-radius: 16px;
    text-decoration: none;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 16px;
    box-sizing: border-box;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-item .icon-wrapper img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 12px;
}

.service-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

/* --- NAVBAR STYLES --- */
.nav-container {
    height: 84px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    position: relative;
    background: var(--color-white); /* Ensure bg exists */
}

.control-container{
    display: flex;
    flex-direction: row;
    height: 100%;
    gap: var(--nav-gap);
    align-items: center;
}

.links-container {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    position: relative;
    z-index: 5;
}

/* LOGO */
.logo-container .logo-s {
    color: var(--color-black);
    font-size: larger;
    font-weight: 300;
}
.logo-container .logo-e {
    color: var(--color-accent);
    font-size: larger;
    font-weight: 600;
}
.logo-container img { margin-right: 16px; }
.logo-container:hover { transform: scale(1.1); }


/* --- DESKTOP MENU (WordPress Adaptation) --- */
.links-container {
    height: 100%;
    align-items: center;
    display: flex;
}

/* The Main List (ul) */
ul.wp-desktop-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: var(--nav-gap);
    height: 100%;
    align-items: center;
}

/* Top Level Items (li) */
ul.wp-desktop-menu > li {
    position: relative; /* For dropdown positioning */
    height: 100%;
    display: flex;
    align-items: center;
}

/* Links (a) */
ul.wp-desktop-menu > li > a {
    text-decoration: none;
    color: var(--color-black); /* Assuming prime-text is black */
    font-size: medium;
    cursor: pointer;
    transition: all var(--anim-time) ease;
}
ul.wp-desktop-menu > li > a:hover { color: var(--color-accent); }

/* --- DROPDOWNS (Sub-menus) --- */
/* WordPress uses .sub-menu class for nested lists */
ul.wp-desktop-menu li ul.sub-menu {
    position: absolute;
    top: 60px; /* Offset from header */
    left: -16px;
    background-color: var(--color-white);
    min-width: 200px;
    box-shadow: var(--shadow-card);
    border-radius: 8px;
    padding: 16px;
    display: none; /* Hidden by default */
    flex-direction: column;
    gap: 8px;
    z-index: 200;
    list-style: none;
}

/* Show Dropdown on Hover */
ul.wp-desktop-menu li:hover ul.sub-menu {
    display: flex;
}

/* Dropdown Links */
ul.wp-desktop-menu li ul.sub-menu a {
    text-decoration: none;
    color: var(--color-black);
    padding: 8px;
    display: block;
    border-radius: 4px;
    transition: all var(--anim-time) ease;
}

ul.wp-desktop-menu li ul.sub-menu a:hover {
    background-color: var(--nav-color-sub-link-highlight);
    color: var(--color-accent);
    transform: scale(1.05);
}

/* --- ACTION BUTTONS --- */
.quick-btn-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
.quick-btn-container .mixed {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 24px;
    padding-left: 16px;
    background-color: var(--color-off-white);
    transition: all var(--anim-time) ease;
    text-decoration: none;
}
.btn-context {
    text-decoration: none;
    color: var(--color-black);
}
.control-btn {
    height: 48px;
    width: 48px;
    border: none;
    border-radius: 24px;
    background-color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.control-btn .icon { color: var(--color-off-white); }

/* --- MOBILE MENU --- */
.nav-mobile-menu {
    display: none; /* Hidden on desktop */
    cursor: pointer;
}

.nav-link-mobile {
    display: none; /* Completely hidden state */
    flex-direction: column;
    width: 100%;
    background: #F5F5F5;
    padding: 20px 0;
}
/* This class is added by JS to show the menu */
.nav-link-mobile.is-open {
    display: flex;
}

.nav-encloser {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.nav-encloser ul {
    list-style: none;
    padding: 0;
    text-align: center;
}
.nav-encloser a {
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--color-black);
    display: block;
    margin-bottom: 12px;
}

/* Hero Section (Basic styles since you didn't provide component CSS) */
.hero-image-section {
    min-width: 100%;
    display: flex;
    height: 520px;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent);
    pointer-events: none;
    z-index: 2;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    color: var(--color-white);
    text-shadow: var(--shadow-card);
    font-size: 3rem;
    margin-bottom: 16px;
}

/* Intro Section (Converted from your SCSS) */
.intro-section {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    padding: 64px 0px;
    background-color: var(--color-off-white); 
}

.intro-section h2 {
    font-family: sans-serif;
    font-weight: 600; /* semibold */
    font-size: 2.5rem; /* xx-large */
    text-align: center;
    margin-bottom: 16px;
    color: var(--color-black);
}

.intro-section .divider-sm-v {
    width: 200px;
    height: 4px;
    background-color: var(--color-accent);
    border-radius: 8px;
    border: none;
    margin: auto;
}

.m-btm-32 {
    margin-bottom: 32px;
}

/* Content Body Styles */
.service-content-body {
    padding: 8px 15%;
}

.service-content-body p {
    margin: 0 0 16px 0; /* Standard paragraph spacing */
    text-align: justify;
    font-family: sans-serif;
    font-size: 1.2rem; /* large */
    color: var(--color-text-secondary); /* or disabled-d */
    line-height: 1.6;
}

.service-content-body a {
    color: var(--color-accent);
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
}

/* --- FOOTER STYLES --- */
.footer-container {
    min-width: 100%;
    background-color: var(--color-footer-bg);
    padding-top: 32px;
}

.footer-section-containers {
    display: flex;
    flex-direction: row;
    gap: 64px;
}

.footer-section-containers h2 {
    color: var(--color-accent);
    margin-top: 32px;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 1.5rem; /* Standard h2 size */
}

.footer-sub-pair-section {
    flex: 2;
    display: flex;
    flex-direction: row;
    gap: 48px;
}

.footer-sub-section {
    flex: 1;
    color: var(--color-footer-text);
}

.footer-sub-section .company-description {
    text-align: justify;
    line-height: 1.75em;
    font-size: 1rem;
}

.footer-sub-section .bullet-gap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-sub-section .quick-info-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
    transition: all var(--anim-time) ease;
    align-items: center;
}

.footer-sub-section .quick-info-links a {
    color: var(--color-footer-text);
    text-decoration: none;
    transition: all var(--anim-time) ease;
}

.footer-sub-section .quick-info-links span {
    font-size: 1rem;
}

.footer-sub-section .quick-info-links:hover {
    transform: scale(1.05); /* Slight scale */
}

.footer-sub-section .quick-info-links:hover a {
    color: var(--color-accent);
}

/* Contact Section */
.sub-divided-section {
    display: flex;
    flex-direction: column;
}

.iconed-info-container {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}

.infos-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--color-footer-text);
}

.infos-list .links-span, 
.infos-list a {
    text-decoration: none;
    color: var(--color-footer-text);
    cursor: pointer;
}

.infos-list a:hover {
    text-decoration: underline;
}

/* Bottom Bar */
.bottom-bg-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--color-footer-bottom);
    margin-top: var(--nav-gap);
    padding: 4px;
    box-sizing: border-box;
}

.bottom-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    /* Redundant bg color, but keeps consistency */
    background-color: var(--color-footer-bottom); 
}

.bottom-container .info-links {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    color: var(--color-footer-light);
    font-size: 0.9rem;
}

.bottom-container .col-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.bottom-container .quick-icons-container {
    display: flex;
    flex-direction: row;
    gap: var(--nav-gap);
}

.bottom-container .quick-icons {
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.bottom-container .divider-v {
    width: 1px;
    height: 20px;
    background-color: var(--color-footer-light);
}

.bottom-container .footer-links {
    text-decoration: none;
    color: var(--color-footer-light);
    font-weight: 600;
}

/* --- FOOTER MENU OVERRIDES --- */

/* 1. Services Column Menu */
ul.footer-service-list {
    list-style: none; /* Remove bullets */
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

ul.footer-service-list li a {
    text-decoration: none;
    color: var(--color-footer-text);
    font-size: 1rem;
    transition: all var(--anim-time) ease;
    display: flex;
    align-items: center;
}

/* Add a default arrow or dash since icons are missing in standard menus */
ul.footer-service-list li a::before {
    content: "›"; 
    color: var(--color-accent);
    margin-right: 8px;
    font-weight: bold;
    font-size: 1.2rem;
}

ul.footer-service-list li a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

/* 2. Bottom Bar Menu (Privacy/Terms) */
ul.footer-bottom-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

ul.footer-bottom-menu li {
    display: flex; /* Fix alignment */
}

/* Add the divider line between items using CSS */
ul.footer-bottom-menu li:not(:last-child)::after {
    content: "";
    display: block;
    width: 1px;
    height: 14px;
    background-color: var(--color-footer-light);
    margin-left: 12px;
}

ul.footer-bottom-menu li a {
    text-decoration: none;
    color: var(--color-footer-light);
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- LEGAL / PRIVACY PAGE STYLES --- */
.privacy-container {
    padding-top: 60px;
    padding-bottom: 60px;
    max-width: 900px; /* Limits width for better readability on large screens */
}

/* Page Title */
.privacy-container h1 {
    font-size: 2.5rem;
    color: var(--color-black);
    margin-bottom: 32px;
    font-weight: 700;
}

/* Headings inside the content (H2, H3) */
.legal-content h2 {
    font-size: 1.8rem;
    color: var(--color-accent); /* Green accent for section headers */
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

/* Paragraphs */
.legal-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-secondary); /* #666666 */
    margin-bottom: 24px;
    text-align: justify; /* Matches your design */
}

/* Lists (ul) */
.legal-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.legal-content li {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
    list-style-type: disc; /* Ensures bullets are visible */
}

/* Links inside the text */
.legal-content a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
}

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

/* --- CONTACT PAGE STYLES --- */
.contact-page-container {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Columns */
.contact-info-column {
    flex: 1;
    min-width: 300px;
}

.contact-form-column {
    flex: 1.5; /* Form is slightly wider */
    min-width: 300px;
}

/* Info Cards */
.info-card {
    background: var(--color-off-white);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-card);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

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

.info-item img {
    width: 32px;
    height: 32px;
}

.info-item h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.info-item a, .info-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-black);
    text-decoration: none;
}

.info-item a:hover {
    color: var(--color-accent);
}

/* Map */
.map-container iframe {
    border-radius: 16px;
    box-shadow: var(--shadow-card);
}

/* Form Styles */
.form-wrapper {
    background: var(--color-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-off-white);
}

.contact-form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1 1 45%; /* Two per row */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.form-group label {
    font-weight: 600;
    color: var(--color-black);
    font-size: 0.9rem;
}

/* Input Fields */
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-control:focus {
    border-color: var(--color-accent);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px var(--color-accent-l);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-page-container {
        flex-direction: column;
    }
    .form-group {
        flex: 1 1 100%;
    }
    .form-wrapper {
        padding: 24px;
    }
}