
/*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');*/
/* font family start*/
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --lime: #E1FF71; --black: #000; --white: #fff; --dark-bg: #1A1A1A;
  --card-dark: #2A2A2A; --beige: #F0EBDF; --muted: #999; --peach: #FDDCB5;
  --green-badge: #4ADE80; --pink-badge: #F472B6; --teal-badge: #2DD4BF; --orange-badge: #FB923C;
}
a:hover {color: #000; text-decoration: none; outline: none;}
body { font-family: "Overused-medium"; background: var(--black); color: #fff; overflow-x: hidden; position: relative;}

/* HERO */
.hero { position: relative; top: -90px; height: 700px; overflow: hidden; border-radius: 15px; margin: 0 15px;}
.hero-bg { position: absolute; inset: 0; background: url('assets/homepage-images/Banner-Image.png'); background-size: cover; background-position: center; background-repeat: no-repeat;}
.hero-overlay {position: absolute; inset: 0;
    background: 
        linear-gradient(to right, rgba(0,0,0,0.7) 0%, transparent 60%),
        linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 15%, transparent 40%); 
}
.hero-content { position: relative; z-index: 10; max-width: 800px; padding: 170px 70px 80px; }
.hero-content h1 { font-size: 60px; font-weight: 600; line-height: 0.92; margin-bottom: 30px; margin-top: 25px; }
.hero-content p {font-family: 'Overused-regular'; font-weight: 400; font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 30px; max-width: 420px; }
.btn-trial { display: inline-block; background: var(--lime); color: var(--black); padding: 15px 30px; border-radius: 50px; font-size: 16px; font-weight: 500; text-decoration: none; cursor: pointer; transition: transform 0.2s; }
.btn-trial:hover { transform: translateY(-1px); }

/* CLIENTS */
.marquee-container {
    position: relative;
    top: -50px;
    width: 80%;
    overflow: hidden; 
    padding: 0px;
    background: #000;
    display: flex;
    margin: 0 auto;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100% );
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100% );
}
.marquee-content {
    display: flex;
    width: max-content; 
    animation: marquee-scroll 30s linear infinite;
}
.logo-item {
    flex-shrink: 0;
    width: 180px; 
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-item img {
    max-width: 120px;
    height: auto;
}
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* BUSINESS NEEDS */
.business-needs { background: var(--black); padding: 50px 70px 80px; }
.business-needs .section-title {font-family: 'Overused-medium'; font-weight: 500;}
.section-title { text-align: center; font-family: "Radwave"; font-size: 52px; font-weight: 600; line-height: 1; letter-spacing: -0.02em; margin-bottom: 60px; }
.needs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;}
.need-card { display: flex; flex-direction: column; }
.need-card-img-wrapper {position: relative; width: 100%; height: 420px; border-radius: 24px; overflow: hidden; margin-bottom: 9px; }
.need-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.need-card-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0; 
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none; 
}
.need-card-body { padding: 0 10px; margin-top: -20px;}
.need-card-label { font-size: 13px; text-transform: uppercase; color: #fff; font-weight: 500; letter-spacing: 0.05em; margin-bottom: 8px; opacity: 0.75;}
.need-card-body h3 { font-size: 30px; font-weight: 500; margin-bottom: 12px; }
.need-card-body p { font-family: 'Overused-regular'; font-size: 16px; font-weight: 400; color: #fff; margin-bottom: 20px; max-width: 450px; }
.learn-more { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; text-decoration: underline; text-underline-offset: 4px; font-weight: 500; }
.learn-more:hover {color: #fff; text-decoration: underline;}

/* DIFFICULTIES */
.difficulties { background: #1E1F18; padding: 100px 70px 80px; }
.difficulties .section-title {font-family: 'Overused-medium'; font-weight: 500;}
/*.difficulties .section-title { color: var(--peach); font-style: italic; font-weight: 500; }*/
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.diff-card { background: var(--card-dark); border-radius: 10px; padding: 32px 28px 20px; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between;}
.diff-badge { display: inline-block; padding: 4px 10px; border-radius: 5px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 15px; width: fit-content; }
.diff-badge.green { background: #E0FF70; color: var(--black); }
.diff-badge.teal { background: #9ED6FF; color: var(--black); }
.diff-badge.blue { background: #68D9CF; color: var(--black); }
.diff-badge.yellow  { background: #FFD28F; color: var(--black); }
.diff-badge.purple  { background: #AA92EE; color: var(--black); }
.diff-badge.orange{ background: #FF9B70; color: var(--black); }
.diff-card h3 { font-size: 28px; font-weight: 500; line-height: 1; margin-bottom: 16px; }
.diff-card p { font-family: 'Overused-regular'; font-weight: 4000; font-size: 14px; color: #CECECE; line-height: 1.1; margin-bottom: 24px; }
.diff-card-img { height: 220px; object-fit: cover; object-position: top; border-radius: 12px; display: block; }
.diff-card:nth-child(1) {background: linear-gradient(to bottom, #453A2A 0%, #1E1F18 100%);}
.diff-card:nth-child(2) {background: linear-gradient(to bottom, #383E48 0%, #1E1F18 100%);}
.diff-card:nth-child(3) {background: linear-gradient(to bottom, #533944 0%, #1E1F18 100%);}
.diff-card:nth-child(4) {background: linear-gradient(to bottom, #053144 0%, #1E1F18 100%);}
.diff-card:nth-child(5) {background: linear-gradient(to bottom, #384949 0%, #1E1F18 100%);}
.diff-card:nth-child(6) {background: linear-gradient(to bottom, #3C3C3C 0%, #1E1F18 100%);}

/*CHALLENGES*/
.challenges-section {
    background-color: #000; 
    padding: 0px 0px;      
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.challenges-section img {    
    width: 100%;           
    height: auto;          
    display: block;
    padding: 30px 70px;
}

/*FEATURES*/
.features-section {
    background-color: var(--bg-black);
    color: white;
    padding: 100px 50px;
    font-family: sans-serif;
    text-align: center;
}
.features-header h2 {
    margin-bottom: 15px;
}
.features-header p {
    color: #fff;
    font-size: 18px;
    max-width: 400px;
    margin: 0 auto 80px;
}
.features-grid {
    display: flex;
    flex-wrap: wrap;      
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.features-card {
    /* (100% / 4 columns) - (gap / adjustment) */
    flex: 0 1 calc(25% - 30px); 
    min-width: 250px;
    background: #000;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    height: 300px;
    display: flex ;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.features-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 20px;
    background: linear-gradient(180deg, #C6BAA6, #000000);
    -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
.features-card:nth-child(1),
.features-card:nth-child(4) {
    margin-top: 100px;
}
.features-card:nth-child(6) {
    margin-top: -100px;
}
.features-card .icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.features-card .icon-box img {
    width: 50%;
    height: auto;
}
.features-card p {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ccc;
    margin-top: 25px;
}
.cyan { background:radial-gradient(circle at 35% 35%, #60A7B7 0%, #000000 90%); box-shadow: 0 0 20px rgba(92, 47, 47, 0.4);}
.gold { background:radial-gradient(circle at 35% 35%, #5C2F2F 0%, #000000 90%); box-shadow: 0 0 20px rgba(92, 47, 47, 0.4);}
.blue { background:radial-gradient(circle at 35% 35%, #60A7B7 0%, #000000 90%); box-shadow: 0 0 20px rgba(92, 47, 47, 0.4);}
.green { background:radial-gradient(circle at 35% 35%, #88A390 0%, #000000 90%); box-shadow: 0 0 20px rgba(92, 47, 47, 0.4);}
.red { background:radial-gradient(circle at 35% 35%, #5C2F2F 0%, #000000 90%); box-shadow: 0 0 20px rgba(92, 47, 47, 0.4);}
.purple { background:radial-gradient(circle at 35% 35%, #33304D 0%, #000000 90%); box-shadow: 0 0 20px rgba(92, 47, 47, 0.4);}
.silver { background:radial-gradient(circle at 35% 35%, #7B7777 0%, #000000 90%); box-shadow: 0 0 20px rgba(92, 47, 47, 0.4);}
.brown { background:radial-gradient(circle at 35% 35%, #BB936452 0%, #000000 90%); box-shadow: 0 0 20px rgba(92, 47, 47, 0.4);}

/*SYSTEM OVERVIEW*/
.system-overview {
    background-color: #FFFCF3;
    padding: 100px 5%;
    text-align: center;
}
.system-header h2 {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #000;
}
.system-header p {
    font-size: 18px;
    max-width: 400px;
    margin: 0 auto 60px;
    color: #000;
    font-family: 'Overused-regular';
    font-weight: 400;
}
.system-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.system-card {
    background-color: #F0ECE1;
    border-radius: 10px;
    padding: 15px; 
    text-align: left;
    display: flex;
    flex-direction: column;
}
.card-img-box {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
}
.card-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    font-family: 'Overused-regular';
    font-weight: 400;
    margin-bottom: 5px;
}
@media (max-width: 1024px) {
    .system-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .system-grid {
        grid-template-columns: 1fr;
    }
    .system-header h2 {
        font-size: 32px;
    }
}

/*INDIAN COMMMERCE*/
.indian-commerce {
    background-color: #000;
    color: #fff;
    display: flex;
    padding: 80px 5%;
    gap: 50px;
}
.commerce-left {
    flex: 1;
}
.sticky-content {
    position: sticky;
    top: 100px; /* Keeps the text visible as you scroll the cards */
}
.sticky-content h1 {
    font-size: 56px;
    line-height: 0.9;
    font-weight: 500;
    margin-bottom: 24px;
}
.sticky-content p {
    font-family: 'Overused-regular';
    font-size: 18px;
    font-weight: 400;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 400px;
}
.btn-primary {
    display: inline-block;
    background-color: #d4ff70; /* Lime green from image */
    color: #000;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}
.commerce-right {
    flex: 1.5;
}
.commerce-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.commerce-card {
    background-color: #f1efea; /* Off-white card background */
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.card-image {
    width: 100%;
    height: 250px;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-info {
    padding: 20px;
    color: #000; /* Text inside cards is black */
}
.card-info h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}
.card-info p {
    font-family: 'Overused-regular';
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
    margin-bottom: 0px;
}
@media (max-width: 1024px) {
    .indian-commerce {
        flex-direction: column;
    }

    .sticky-content {
        position: relative;
        top: 0;
        margin-bottom: 50px;
    }

    .commerce-grid {
        grid-template-columns: 1fr; 
    }
}

/*OPERATIONS*/
.operations-section {
    background-color: #FFFCF3;
    padding: 100px 5%;
    text-align: center;
    overflow: hidden;
}
.ops-header h2 {
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 15px;
    color: #000;
}

.ops-header p {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 30px;
    color: #000;
    font-family: 'Overused-regular';
}
.ops-header p span {
    font-weight: 700;
    font-style: italic;
}
.btn-demo {
    display: inline-block;
    background-color: #d4ff70;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #000;
    margin-bottom: 80px;
}
.ops-slider-wrapper {
    width: 100%;
    overflow: hidden;
}
.ops-slider {
    display: flex;
    padding: 0 10vw;
    width: max-content;
}
.ops-item {
    position: relative;
    z-index: 2;
    padding: 0 15px;
    text-align: left;
    max-width: 350px;
}
.ops-item::before {
    content: "";
    position: absolute;
    top: 35px;          
    width: 100%;       
    height: 1px;
    background-image: linear-gradient(to right, #aaa 0%, #aaa 45%, transparent 45%, transparent 100%);
    background-size: 15px 100%;
    background-repeat: repeat-x;
    z-index: -1;       
}
.ops-item:last-child::before {
    width: 0%;
}
/* 3. Hide the line on the very last item (EOD) */
.owl-item:last-child .ops-item::before {
    display: none;
}
.ops-item .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background-color: #fff; /* Fallback */
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.ops-item .icon-box img {
    width: 50% !important;
    height: auto;
}
.ops-item .blue-bg { background: radial-gradient(circle at 50% 0%, #D9EFFF 0%, #FFFCF3 90%); }
.ops-item .cream-bg { background: radial-gradient(circle at 50% 0%, #FFE0D3 0%, #FFFCF3 90%); }
.ops-item .purple-bg { background: radial-gradient(circle at 50% 0%, #E9E1FF 0%, #FFFCF3 90%); }
.ops-item .green-bg { background: radial-gradient(circle at 50% 0%, #CDF0E5 0%, #FFFCF3 90%); }
.ops-item .pink-bg { background: radial-gradient(circle at 50% 0%, #FAC9EB 0%, #FFFCF3 90%); }
.ops-item .beige-bg { background: radial-gradient(circle at 50% 0%, #FFE5C4 0%, #FFFCF3 96%) }
.timestamp {
    display: block;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 15px;
}
.ops-content h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.3;
    color: #000;
}
.ops-content p {
    font-size: 16px;
    color: #000;
    font-family: 'Overused-light';
    font-weight: 400;
}





/* Responsive */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-card:nth-child(even) { margin-top: 0px; }
  .features-card:nth-child(odd) { margin-top: 0; }
}

/* MANAGE PLATFORM */
.manage-platform { background: var(--beige); padding: 100px 70px 80px; color: var(--black); }
.manage-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 50px; }
.manage-header h2 { font-size: 52px; font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; max-width: 500px; }
.manage-right { display: flex; flex-direction: column; align-items: flex-end; gap: 28px; max-width: 500px; }
.manage-right p { font-size: 16px; line-height: 1.5; color: #444; text-align: right; }
.manage-arrows { display: flex; gap: 12px; }
.manage-arrows button { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--black); background: none; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.manage-arrows button:hover { background: var(--black); color: #fff; }
.manage-grid { display: block; }
.manage-card { background: rgba(0,0,0,0.04); border-radius: 20px; overflow: hidden; padding: 20px; }
.manage-card-img { width: 100%; height: 200px; object-fit: cover; border-radius: 14px; margin-bottom: 20px; display: block; }
.manage-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.manage-card p { font-size: 13px; color: #666; line-height: 1.45; }

/* GROWTH */
.growth-section { background: var(--black); padding: 100px 70px; }
.growth-section h2 { font-size: 52px; font-weight: 500; margin-bottom: 16px; }
.growth-section .sub { font-size: 16px; color: var(--muted); max-width: 600px; line-height: 1.6; margin-bottom: 60px; }
.growth-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.growth-card { background: var(--dark-bg); border-radius: 20px; padding: 32px 24px; }
.growth-card:hover { background: #222; }
.growth-num { font-size: 14px; font-weight: 700; color: var(--lime); margin-bottom: 16px; }
.growth-card h4 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.growth-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* CTA */
.cta-section { background: var(--dark-bg); border-radius: 30px; margin: 0 40px 80px; padding: 100px 80px; text-align: center; }
.cta-section h2 { font-size: 52px; font-weight: 600; margin-bottom: 20px; }
.cta-section .sub { font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 auto 40px; line-height: 1.6; }

/* FOOTER */
.footer { background: var(--black); padding: 60px 70px 30px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-top { display: flex; justify-content: space-between; margin-bottom: 40px; }
.footer-col h4 { font-size: 14px; font-weight: 600; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; font-size: 13px; color: var(--muted); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }

/* APPOINTMENT WIDGET */
.appt-widget { position: fixed; bottom: 30px; right: 30px; background: rgba(40,40,40,0.95); backdrop-filter: blur(10px); border-radius: 16px; padding: 20px 24px; max-width: 260px; z-index: 1000; border: 1px solid rgba(255,255,255,0.1); }
.appt-widget .close { position: absolute; top: 10px; right: 12px; background: none; border: none; color: #999; font-size: 18px; cursor: pointer; }
.appt-widget h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.appt-widget p { font-size: 12px; color: var(--muted); margin-bottom: 12px; line-height: 1.4; }
.appt-widget a { font-size: 11px; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; text-decoration: underline; }

@media (max-width: 1024px) {
    .needs-grid, .diff-grid { grid-template-columns: 1fr 1fr; }
    .manage-grid, .growth-grid { grid-template-columns: 1fr 1fr; }
    .hero-content h1, .section-title, .manage-header h2, .growth-section h2, .cta-section h2 { font-size: 38px; }
}
@media (max-width: 768px) {
    .section-title {font-family: "Overused-medium"; font-size: 24px; margin-bottom: 35px;}
    .header { padding: 16px 24px; }
    .nav-center { display: none; }
    .bottom-fixed-btn {display: none !important;}
    .logo {height: 13px; width: 154px; }
    .hero {top: 0px;}
    .hero-bg { background-position: right; background-repeat: no-repeat; padding-left: 580px; }
    .hero-content { padding: 160px 24px 60px; padding-top: 40vh; }
    .hero-content h1 { font-size: 36px; margin-top: 0px; margin-bottom: 0px;}
    .marquee-container {width: 90%; top: 20px; margin-bottom: 20px;}
    .clients {padding: 30px 15px;}
    .logo-wrapper {width: 90px;}
    .need-card-img {object-fit: fill;}
    .need-card-body h3 {font-size: 28px;}
    .business-needs, .difficulties, .manage-platform, .growth-section { padding: 50px 15px; }
    .business-needs {padding-bottom: 75px;}
    .difficulties {background-color: #1E1F18;}
    .diff-card-img {object-fit: fill;}
    .challenges-section {padding: 40px 0px; background-color: #0c0c0c;}
    .challenges-section img {height: 450px; padding: 0px;}
    .needs-grid, .diff-grid, .manage-grid, .growth-grid { grid-template-columns: 1fr; }
    .needs-grid {padding: 0px;}
    .manage-header { flex-direction: column; gap: 20px; }
    .cta-section { margin: 0 16px 60px; padding: 60px 20px; }
    .clients-track { gap: 20px; flex-wrap: wrap; justify-content: center; }
    .features-section, .system-overview, .operations-section {padding: 60px 20px;}
    .operations-section .section-title {font-family: 'Radwave'; font-weight: 400; font-size: 24px;}
    .features-section .section-title {font-family: 'Radwave'; font-weight: 400; font-size: 24px;}
    .system-overview .section-title {font-family: 'Radwave'; font-weight: 400; font-size: 24px;}
    .ops-header p {font-size: 16px;}
    .features-header p {max-width: 300px; margin: 0 auto 50px;}
    .system-header p {max-width: 300px; margin: 0 auto 50px;}
    .features-section h2 {font-size: 26px;}
    .sticky-content {text-align: center; margin-bottom: 30px;}
    .sticky-content h1 {font-size: 26px;}
    .features-grid {display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 0px;}
    .features-card {min-width: unset;}
    .card-content h3 {font-size: 24px; font-weight: 500;}
    .card-info p {margin-bottom: 0px;}
    .footer {overflow-x: hidden;}
}
@media (max-width: 410px) {
    .logo {height: 13px; width: 140px; }
}