/* ================= GOOGLE FONT ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ================= GLOBAL ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f8ff;
    color:#111;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

section{
    padding:90px 0;
}

/* ================= HEADER ================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    padding:22px 0;

    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
}

/* ================= NAVBAR ================= */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;

    position:relative;

    padding-bottom:18px;

    z-index:2;
}
/* WHITE BAR */

.navbar::after{
    content:'';

    position:absolute;

    left: -20px;
    bottom:10px;

    width:103%;
    height:80px;

    background:rgba(255,255,255,0.95);

    border-radius:10px;

    z-index:-1;
}

/* ================= LOGO ================= */

.logo-box{
    display:flex;
    align-items:center;
}

.logo-img{
    width:240px;
    height:auto;
    object-fit:contain;
}

/* ================= NAVIGATION ================= */

.nav-links{
    display:flex;
    align-items:center;
    gap:40px;
}

.nav-links a{
    color:#000000;
    font-size:15px;
    font-weight:500;
    letter-spacing:0.5px;
    transition:0.3s;
}

.nav-links a:hover{
    color:#1569AE;
}

/* ================= TABLET ================= */

@media(max-width:991px){

    header{
        padding:18px 0;
    }

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .logo-img{
        width:210px;
    }

    .nav-links{
        gap:25px;
        flex-wrap:wrap;
        justify-content:center;
    }
}

/* ================= MOBILE MENU ================= */

.menu-toggle{
    display:none;
    font-size:32px;
    cursor:pointer;
    color:#000;
    font-weight:700;
}

@media(max-width:576px){

    header{
        padding:15px 0;
    }

    .navbar{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        padding-bottom:14px;
    }

    .navbar::after{
        height:1px;
    }

    .logo-img{
        width:170px;
    }

.menu-toggle{
    display:block;
    position:absolute;
    top:10px;
    right:15px;
    font-size:32px;
    z-index:10000;
}
    .nav-links{
        display:none;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#ffffff;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:25px 0;
        border-radius:0 0 15px 15px;
        box-shadow:0 8px 20px rgba(0,0,0,0.10);
        z-index:9999;
    }

    .nav-links.active{
        display:flex;
    }
}
/* ================= HERO ================= */

.hero{
    min-height:100vh;

    background:
    linear-gradient(rgba(0,0,0,0.50), rgba(0,0,0,0.50)),
    url('images/hero.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;

    padding:120px 0;
}

.hero-text{
    max-width:700px;
}

.hero-text h3{
    color:#1569AE;
    font-size:28px;
    margin-bottom:15px;
    font-weight:600;
}

.hero-text h1{
    color:#000000;
    font-size:82px;
    line-height:1.05;
    margin-bottom:25px;
    font-weight:700;
}

.hero-text p{
    color:#000000;
    font-size:20px;
    line-height:1.8;
    margin-bottom:35px;
}

/* ================= BUTTON ================= */

.btn{
    display:inline-block;
    background:#1569AE;
    color:#fff;
    padding:16px 40px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:#0056d6;
}

/* ================= SECTION TITLE ================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:46px;
    margin-bottom:12px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

/* ================= PRODUCTS ================= */

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.product-content{
    padding:25px;
    text-align:center;
}

.product-content h4{
    margin-bottom:20px;
    font-size:22px;
}

/* ================= ABOUT ================= */

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-wrapper img{
    border-radius:20px;
}

.about-content h2{
    font-size:48px;
    margin-bottom:20px;
}

.about-content p{
    color:#666;
    line-height:1.9;
    font-size:18px;
}

/* ================= GALLERY ================= */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:25px;
}

.gallery-grid img{
    width:100%;
    height:350px;
    border-radius:20px;
    object-fit:cover;
    transition:0.3s;
}

.gallery-grid img:hover{
    transform:scale(1.03);
}

/* ================= TABLET ================= */

@media(max-width:991px){

    .hero{
        text-align:center;
        padding:160px 0 100px;
    }

    .hero-text{
        margin:auto;
    }

    .hero-text h1{
        font-size:54px;
    }

    .hero-text p{
        font-size:18px;
    }

    .types-grid,
    .products-grid{
        grid-template-columns:1fr 1fr;
    }

    .gallery-grid{
        grid-template-columns:1fr 1fr;
    }

    .about-wrapper,
    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

    .logo-img{
        width:220px;
    }
}

/* ================= MOBILE ================= */

@media(max-width:576px){

    section{
        padding:70px 0;
    }

    .hero{
        padding:150px 0 80px;
    }

    .hero-text h1{
        font-size:38px;
    }

    .hero-text h3{
        font-size:22px;
    }

    .hero-text p{
        font-size:16px;
    }

    .btn{
        padding:14px 28px;
        font-size:15px;
    }

    .types-grid,
    .products-grid,
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:34px;
    }

    .logo-img{
        width:180px;
    }

    .gallery-grid img{
        height:260px;
    }
}
.view-all-btn{
    text-align:center;
    margin-top:80px;
}
/* ================= PRODUCTS SECTION ================= */

#boxes{
    padding:120px 0;

    background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('images/products\ bg.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* ================= SECTION TITLE ================= */

#boxes .section-title{
    text-align:center;
    margin-bottom:70px;
}

#boxes .section-title h2{
    font-size:52px;
    color:#ffffff;
    margin-bottom:15px;
    font-weight:700;
}

#boxes .section-title p{
    color:#d6d6d6;
    font-size:18px;
    letter-spacing:0.5px;
}

/* ================= PRODUCTS GRID ================= */

#boxes .products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* ================= PRODUCT CARD ================= */

#boxes .product-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.15);
    transition:0.4s ease;
}

#boxes .product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.20);
}

/* ================= PRODUCT IMAGE ================= */

#boxes .product-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

/* ================= PRODUCT CONTENT ================= */

#boxes .product-content{
    padding:28px;
    text-align:center;
}

#boxes .product-content h4{
    font-size:24px;
    color:#111;
    margin-bottom:22px;
    font-weight:600;
}

/* ================= BUTTON ================= */

#boxes .btn{
    display:inline-block;
    background:#1569AE;
    color:#fff;
    padding:14px 34px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:0.3s;
}

#boxes .btn:hover{
    background:#0f5a95;
}
/* ================= TABLET ================= */

@media(max-width:991px){

    #boxes .products-grid{
        grid-template-columns:1fr 1fr;
    }

    #boxes .section-title h2{
        font-size:42px;
    }

    #boxes .product-card img{
        height:240px;
    }
}

/* ================= MOBILE ================= */

@media(max-width:576px){

    #boxes{
        padding:80px 0;
    }

    #boxes .products-grid{
        grid-template-columns:1fr;
    }

    #boxes .section-title{
        margin-bottom:50px;
    }

    #boxes .section-title h2{
        font-size:34px;
    }

    #boxes .section-title p{
        font-size:15px;
    }

    #boxes .product-card img{
        height:220px;
    }

    #boxes .product-content{
        padding:22px;
    }

    #boxes .product-content h4{
        font-size:20px;
    }

    #boxes .btn{
        padding:13px 28px;
        font-size:14px;
    }
}
/* ================= ABOUT US ================= */

#about{
    padding:120px 0;

    background:#f8f9fc;
}

/* WRAPPER */

.about-wrapper{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;

    gap:80px;

    align-items:start;
}

/* ================= LEFT IMAGES ================= */

.about-image{
    display:flex;
    flex-direction:column;

    gap:28px;

    position:sticky;

    top:120px;
}

/* IMAGE STYLE */

.about-image img{
    width:100%;

    height:250px;

    object-fit:cover;

    border-radius:30px;

    box-shadow:0 12px 35px rgba(0,0,0,0.10);

    transition:0.4s ease;

    overflow:hidden;
}

/* DIFFERENT HEIGHTS */

.about-image img:nth-child(2){
    height:340px;
}

.about-image img:nth-child(4){
    height:300px;
}

/* HOVER */

.about-image img:hover{
    transform:translateY(-8px) scale(1.01);

    box-shadow:0 18px 40px rgba(0,0,0,0.14);
}

/* ================= RIGHT CONTENT ================= */

.about-content{
    width:100%;
}

/* TAG */

.about-tag{
    display:inline-block;

    background:#1569AE15;

    color:#1569AE;

    padding:10px 24px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    letter-spacing:1px;

    margin-bottom:28px;
}

/* HEADING */

.about-content h2{
    font-size:58px;

    line-height:1.12;

    color:#111;

    margin-bottom:30px;

    font-weight:700;
}

/* PARAGRAPH */

.about-content p{
    color:#666;

    font-size:18px;

    line-height:1.95;

    margin-bottom:26px;
}

/* ================= FEATURES ================= */

.about-features{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:25px;

    margin-top:50px;

    margin-bottom:50px;
}

/* FEATURE BOX */

.feature-box{
    background:#fff;

    padding:30px;

    border-radius:25px;

    box-shadow:0 8px 25px rgba(0,0,0,0.06);

    transition:0.3s ease;
}

/* HOVER */

.feature-box:hover{
    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,0.10);
}

/* FEATURE TITLE */

.feature-box h4{
    color:#111;

    font-size:22px;

    margin-bottom:16px;
}

/* FEATURE TEXT */

.feature-box p{
    font-size:16px;

    line-height:1.8;

    margin-bottom:0;
}

/* BUTTON */

#about .btn{
    display:inline-block;

    background:#1569AE;

    color:#fff;

    padding:16px 40px;

    border-radius:50px;

    font-size:16px;
    font-weight:600;

    transition:0.3s;
}

#about .btn:hover{
    background:#0f5a95;

    transform:translateY(-3px);
}

/* ================= TABLET ================= */

@media(max-width:991px){

    .about-wrapper{
        grid-template-columns:1fr;
    }

    .about-image{
        position:relative;

        top:0;
    }

    .about-content{
        text-align:center;
    }

    .about-content h2{
        font-size:46px;
    }

    .about-features{
        grid-template-columns:1fr 1fr;
    }
}

/* ================= MOBILE ================= */

@media(max-width:576px){

    #about{
        padding:80px 0;
    }

    .about-wrapper{
        gap:50px;
    }

    .about-image{
        gap:22px;
    }

    .about-image img,
    .about-image img:nth-child(2),
    .about-image img:nth-child(4){
        height:240px;
    }

    .about-content h2{
        font-size:34px;
    }

    .about-content p{
        font-size:16px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .feature-box{
        padding:24px;
    }

    .feature-box h4{
        font-size:20px;
    }

    #about .btn{
        padding:14px 30px;

        font-size:15px;
    }
}/* ================= FOOTER ================= */

#footer{
    background:#0f1115;

    padding:90px 0 30px;

    color:#fff;

    position:relative;

    overflow:hidden;
}

/* TOP BLUE LINE */

#footer::before{
    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:#1569AE;
}

/* FOOTER WRAPPER */

.footer-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

/* FOOTER BOX */

.footer-box h3{
    font-size:24px;
    margin-bottom:28px;
    color:#fff;
}

/* LOGO */

.footer-logo{
    width:220px;
    margin-bottom:25px;
}

/* TEXT */

.footer-box p{
    color:#cfcfcf;
    line-height:1.9;
    font-size:16px;
    margin-bottom:14px;
}

/* LIST */

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:15px;

    color:#cfcfcf;

    transition:0.3s;
}

/* LINKS */

.footer-box ul li a{
    color:#cfcfcf;
    transition:0.3s;
}

.footer-box ul li:hover,
.footer-box ul li a:hover{
    color:#1569AE;
    padding-left:6px;
}

/* FOOTER BOTTOM */

.footer-bottom{
    margin-top:70px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,0.10);

    text-align:center;
}

.footer-bottom p{
    color:#bdbdbd;
    font-size:15px;
}

/* ================= TABLET ================= */

@media(max-width:991px){

    .footer-wrapper{
        grid-template-columns:1fr 1fr;
    }

    .footer-logo{
        width:200px;
    }
}

/* ================= MOBILE ================= */

@media(max-width:576px){

    #footer{
        padding:70px 0 25px;
    }

    .footer-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-box{
        text-align:center;
    }

    .footer-logo{
        margin:auto;
        margin-bottom:20px;
        width:180px;
    }

    .footer-box h3{
        font-size:22px;
    }

    .footer-bottom{
        margin-top:50px;
    }

}
/* ================= CONTACT PAGE ================= */

#contact-page{
    padding:120px 0;

    background:#f5f8ff;
}

/* WRAPPER */

.contact-page-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

/* LEFT */

.contact-page-info span{
    display:inline-block;

    background:#1569AE15;

    color:#1569AE;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:25px;
}

.contact-page-info h2{
    font-size:56px;

    line-height:1.1;

    margin-bottom:25px;
}

.contact-page-info p{
    color:#666;

    font-size:18px;

    line-height:1.9;

    margin-bottom:25px;
}

/* DETAILS */

.contact-detail{
    background:#fff;

    padding:24px;

    border-radius:22px;

    margin-bottom:20px;

    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.contact-detail h4{
    font-size:22px;

    margin-bottom:10px;
}

/* FORM */

.contact-page-form{
    background:#fff;

    padding:50px;

    border-radius:35px;

    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

/* GRID */

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:20px;
}

/* INPUTS */

.contact-page-form input,
.contact-page-form textarea{
    width:100%;

    padding:18px;

    border:1px solid #ddd;

    border-radius:18px;

    margin-bottom:20px;

    outline:none;

    font-size:15px;

    transition:0.3s;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus{
    border-color:#1569AE;
}

.contact-page-form textarea{
    height:180px;

    resize:none;
}

/* BUTTON */

.contact-page-form button{
    width:100%;

    border:none;

    background:#1569AE;

    color:#fff;

    padding:18px;

    border-radius:50px;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:0.3s;
}

.contact-page-form button:hover{
    background:#0f5a95;
}

/* TABLET */

@media(max-width:991px){

    .contact-page-wrapper{
        grid-template-columns:1fr;
    }
}

/* MOBILE */

@media(max-width:576px){

    #contact-page{
        padding:80px 0;
    }

    .contact-page-info h2{
        font-size:36px;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-page-form{
        padding:30px 24px;
    }
}
/* ================= HOME CONTACT ================= */

#home-contact{
    padding:110px 0;

    background:#f5f8ff;
}

/* WRAPPER */

.home-contact-wrapper{
    position:relative;

    background:
    linear-gradient(135deg,#1569AE,#0f5a95);

    border-radius:35px;

    padding:75px 70px;

    display:grid;
    grid-template-columns:1.1fr 0.9fr;

    gap:70px;

    align-items:center;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

/* GLOW EFFECT */

.home-contact-wrapper::before{
    content:'';

    position:absolute;

    width:420px;
    height:420px;

    background:rgba(255,255,255,0.08);

    border-radius:50%;

    top:-180px;
    right:-120px;
}

/* SMALL GLOW */

.home-contact-wrapper::after{
    content:'';

    position:absolute;

    width:220px;
    height:220px;

    background:rgba(255,255,255,0.05);

    border-radius:50%;

    bottom:-100px;
    left:-80px;
}

/* LEFT CONTENT */

.home-contact-content{
    position:relative;
    z-index:2;
}

.home-contact-content span{
    display:inline-block;

    background:rgba(255,255,255,0.12);

    color:#fff;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    letter-spacing:1px;

    margin-bottom:25px;
}

.home-contact-content h2{
    font-size:58px;

    line-height:1.08;

    color:#fff;

    margin-bottom:28px;

    font-weight:700;
}

.home-contact-content p{
    color:#e6e6e6;

    font-size:18px;

    line-height:1.9;

    max-width:600px;
}

/* FORM */

.home-contact-form{
    position:relative;
    z-index:2;

    background:rgba(255,255,255,0.10);

    backdrop-filter:blur(10px);

    padding:35px;

    border-radius:28px;

    border:1px solid rgba(255,255,255,0.12);

    display:flex;
    flex-direction:column;

    gap:20px;
}

/* INPUT */

.home-contact-form input{
    width:100%;

    padding:18px 22px;

    border:none;

    border-radius:50px;

    outline:none;

    font-size:15px;

    background:#fff;

    color:#000;
}

.home-contact-form input::placeholder{
    color:#666;
}

/* BUTTON */

.home-contact-form button{
    border:none;

    background:#fff;

    color:#1569AE;

    padding:18px;

    border-radius:50px;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:0.3s;
}

.home-contact-form button:hover{
    transform:translateY(-4px);

    background:#f3f3f3;
}

/* ================= TABLET ================= */

@media(max-width:991px){

    .home-contact-wrapper{
        grid-template-columns:1fr;

        padding:60px 45px;
    }

    .home-contact-content{
        text-align:center;
    }

    .home-contact-content h2{
        font-size:44px;
    }

    .home-contact-content p{
        margin:auto;
    }
}

/* ================= MOBILE ================= */

@media(max-width:576px){

    #home-contact{
        padding:80px 0;
    }

    .home-contact-wrapper{
        padding:40px 25px;

        border-radius:25px;

        gap:40px;
    }

    .home-contact-content h2{
        font-size:34px;
    }

    .home-contact-content p{
        font-size:16px;
    }

    .home-contact-form{
        padding:25px;
    }

    .home-contact-form input{
        padding:16px 20px;
    }

    .home-contact-form button{
        padding:16px;
    }
}
/* ================= TESTIMONIAL ================= */

#testimonial{
    padding:120px 0;

    background:#f5f8ff;
}

/* GRID */

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:35px;
}

/* CARD */

.testimonial-card{
    background:#fff;

    padding:35px;

    border-radius:30px;

    box-shadow:0 10px 30px rgba(0,0,0,0.06);

    transition:0.3s;

    position:relative;

    overflow:hidden;
}

/* TOP BLUE LINE */

.testimonial-card::before{
    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:#1569AE;
}

/* HOVER */

.testimonial-card:hover{
    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(0,0,0,0.10);
}

/* STARS */

.testimonial-stars{
    color:#1569AE;

    font-size:24px;

    margin-bottom:20px;

    letter-spacing:3px;
}

/* TEXT */

.testimonial-card p{
    color:#666;

    font-size:17px;

    line-height:1.9;

    margin-bottom:30px;
}

/* USER */

.testimonial-user{
    display:flex;
    align-items:center;

    gap:18px;
}

/* IMAGE */

.testimonial-user img{
    width:65px;
    height:65px;

    border-radius:50%;

    object-fit:cover;
}

/* NAME */

.testimonial-user h4{
    font-size:20px;

    color:#111;

    margin-bottom:5px;
}

/* ROLE */

.testimonial-user span{
    color:#777;

    font-size:15px;
}

/* ================= TABLET ================= */

@media(max-width:991px){

    .testimonial-grid{
        grid-template-columns:1fr 1fr;
    }
}

/* ================= MOBILE ================= */

@media(max-width:576px){

    #testimonial{
        padding:80px 0;
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .testimonial-card{
        padding:28px;
    }

    .testimonial-card p{
        font-size:16px;
    }

    .testimonial-user h4{
        font-size:18px;
    }
}
/* SUBCATEGORY ENQUIRY SECTION */

.subcategory-enquiry{
    text-align:center;
    padding:60px 20px;
}

.subcategory-enquiry h3{
    font-size:32px;
    margin-bottom:15px;
    color:#ffffff;
}

.subcategory-enquiry p{
    color:#ffffff;
    margin-bottom:25px;
}

.subcategory-btn{
    display:inline-block;
    padding:15px 40px;
    background:#1569AE;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
}

.subcategory-btn:hover{
    background:#1569AE;
}
.product-card h4{
    text-align:center;
    padding:15px;
    font-size:16px;
    font-weight:600;
    color:#333;
    background:#fff;
}
/* PRODUCTS PAGE - WHITE MENU ICON */
@media(max-width:576px){
    .products-page .menu-toggle{
        color:white;
    }
}